HomeSort by relevance Sort by last modified time
    Searched refs:prefixes (Results 1 - 25 of 556) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
PrefixFileFilter.java 49 /** The filename prefixes to search for */
50 private final String[] prefixes; field in class:PrefixFileFilter
78 this.prefixes = new String[] {prefix};
83 * Constructs a new Prefix file filter for any of an array of prefixes.
88 * @param prefixes the prefixes to allow, must not be null
91 public PrefixFileFilter(String[] prefixes) {
92 this(prefixes, IOCase.SENSITIVE);
96 * Constructs a new Prefix file filter for any of an array of prefixes
102 * @param prefixes the prefixes to allow, must not be nul
    [all...]
  /external/valgrind/none/tests/amd64/
cet_nops.stdout.exp 1 start doing absolutely nothing without fs and gs prefixes ..
  /external/valgrind/none/tests/x86/
cet_nops.stdout.exp 1 start doing absolutely nothing without fs and gs prefixes ..
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.h 9 unsigned int raw_flags, unsigned int prefixes,
ia32_insn.c 216 static void ia32_handle_prefix( x86_insn_t *insn, unsigned int prefixes ) {
218 insn->prefix = (enum x86_insn_prefix) prefixes & PREFIX_MASK; // >> 20;
220 /* no printable prefixes */
263 unsigned int prefixes ) {
273 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2;
274 insn->addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 4 : 2;
276 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4;
277 insn->addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 2 : 4;
288 ia32_handle_prefix( insn, prefixes );
307 raw_insn->dest_flag, prefixes, modrm )
543 unsigned int prefixes = 0; local
576 unsigned int prefixes = 0; local
    [all...]
ia32_invariant.c 13 unsigned int *prefixes );
142 unsigned int prefixes, x86_invariant_t *inv) {
150 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2;
151 addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 4 : 2;
152 mode_16 = ( prefixes & PREFIX_ADDR_SIZE ) ? 0 : 1;
154 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4;
155 addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 2 : 4;
156 mode_16 = ( prefixes & PREFIX_ADDR_SIZE ) ? 1 : 0;
282 unsigned int prefixes; local
287 size = ia32_table_lookup( buf, buf_len, 0, &raw_insn, &prefixes );
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/resource/
XmlResourcesTransformerTest.kt 39 prefixes = setOf("android/support/v7/"),
53 prefixes = setOf("android/support/v14/"),
65 prefixes = setOf("android/support/v7/"),
77 prefixes = setOf("android/support/"),
91 prefixes = setOf("android/support/"),
106 prefixes = setOf("android/support/"),
121 prefixes = setOf("android/support/"),
134 prefixes = setOf("android/support/"),
145 prefixes = setOf("android/support/"),
158 prefixes = setOf("android/support/")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
NamespaceSupportTest.java 56 Enumeration<String> prefixes = ns.getDeclaredPrefixes(); local
58 while (prefixes.hasMoreElements()) {
59 prefix = prefixes.nextElement();
126 // Part 1: Check that xml and xmlns are not accepted as prefixes.
134 // prefixes.
161 ArrayList<String> prefixes; local
163 prefixes = Collections.list(ns.getPrefixes(marketUri));
164 assertTrue("Test 1: Incorrect set of prefixes returned.",
165 expected.containsAll(prefixes) && prefixes.containsAll(expected))
182 ArrayList<String> prefixes; local
193 ArrayList<String> prefixes; local
315 ArrayList<String> prefixes = Collections.list(ns.getPrefixes()); local
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet_receiver.cc 43 std::vector<std::string> prefixes; local
47 prefixes.push_back("Throughput_kbps#1");
48 prefixes.push_back("Sending_Estimate_kbps#1");
49 prefixes.push_back("Delay_ms_#1");
50 prefixes.push_back("Packet_Loss_#1");
51 prefixes.push_back("Objective_function_#1");
54 prefixes.push_back("Throughput_kbps#1"); // Total Available.
55 prefixes.push_back("Throughput_kbps#1"); // Available per flow.
58 metric_recorder_->SetPlotInformation(prefixes, plot_delay, plot_loss);
  /frameworks/base/services/net/java/android/net/util/
PrefixUtils.java 46 final HashSet<IpPrefix> prefixes = new HashSet<>(); local
47 addNonForwardablePrefixes(prefixes);
48 return prefixes;
51 public static void addNonForwardablePrefixes(Set<IpPrefix> prefixes) {
52 Collections.addAll(prefixes, MIN_NON_FORWARDABLE_PREFIXES);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
BrNameUtil.java 63 return prefixes(callable.name, "get") &&
70 return prefixes(callable.name, "set") &&
77 return prefixes(callable.name, "is") &&
83 private static boolean prefixes(CharSequence sequence, String prefix) { method in class:BrNameUtil
84 boolean prefixes = false;
87 prefixes = true;
90 prefixes = false;
95 return prefixes;
  /external/tensorflow/tensorflow/core/kernels/
merge_v2_checkpoints_op_test.cc 66 const std::vector<string> prefixes = { local
71 const string& kMergedPrefix = prefixes[2];
73 WriteCheckpoint(prefixes[0], {"tensor0"},
75 WriteCheckpoint(prefixes[1], {"tensor1", "tensor2"},
83 [&prefixes](int i) -> string { return prefixes[i]; });
118 ->IsDirectory(io::Dirname(prefixes[i]).ToString())
  /external/elfutils/libcpu/
i386_data.h 41 /* The rep/repe prefixes. */
91 if (*d->prefixes & has_cs)
94 *d->prefixes &= ~has_cs;
96 else if (*d->prefixes & has_ds)
99 *d->prefixes &= ~has_ds;
101 else if (*d->prefixes & has_es)
104 *d->prefixes &= ~has_es;
106 else if (*d->prefixes & has_fs)
109 *d->prefixes &= ~has_fs;
111 else if (*d->prefixes & has_gs
163 int prefixes = *d->prefixes; local
939 int prefixes = *d->prefixes; local
1019 int prefixes = *d->prefixes; local
    [all...]
i386_disasm.c 260 int *prefixes; member in struct:output_data
324 int prefixes; local
332 .prefixes = &prefixes,
343 prefixes = 0;
348 /* Recognize all prefixes. */
359 prefixes |= last_prefix_bit = 1 << i;
366 prefixes |= ((*data++) & 0xf) | has_rex;
378 if (prefixes != 0)
449 || (prefixes & correct_prefix) != 0)
    [all...]
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
humanize_number.c 50 const char *prefixes, *sep; local
63 prefixes = "B\0k\0M\0G\0T\0P\0E";
65 prefixes = "\0\0k\0M\0G\0T\0P\0E";
73 prefixes = "B\0K\0M\0G\0T\0P\0E";
75 prefixes = "\0\0K\0M\0G\0T\0P\0E";
78 #define SCALE2PREFIX(scale) (&prefixes[(scale) << 1])
  /frameworks/base/tests/net/java/android/net/ip/
IpClientTest.java 212 String[] prefixes = { "fe80::/64", "fd2c:4e57:8e3c::/64" }; local
217 .withInitialConfiguration(conf(links(addresses), prefixes(prefixes), ips()))
242 LinkProperties want = linkproperties(links(addresses), routes(prefixes));
253 InitialConfiguration empty = conf(links(), prefixes());
280 prefixes( "fe80::/64", "fd2c:4e57:8e3c::/64"), ips()))
335 links("192.0.2.12/24"), prefixes("192.0.2.0/24"), dns("192.0.2.2")),
337 links("192.0.2.12/24"), prefixes("192.0.2.0/24"), dns()),
340 prefixes("2001:db8:dead:beef::/64", "fe80::/64"),
343 links("fe80::1/64"), prefixes("fe80::/64"), dns())
441 static Set<IpPrefix> prefixes(String... prefixes) { method in class:IpClientTest
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68hc11/
hexprefix.s 1 # Test for correct generation of hex prefixes.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
prefix3.s 1 % Check that changing prefixes between the GREG definition, its use and
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
NamespaceSupport.java 156 // ignore "xml" and "xmlns" prefixes
252 String[] prefixes = new String[fNamespaceSize]; local
253 fPrefixes = prefixes;
270 return new Prefixes(fPrefixes, count);
273 protected final class Prefixes implements Enumeration {
274 private String[] prefixes; field in class:NamespaceSupport.Prefixes
279 * Constructor for Prefixes.
281 public Prefixes(String [] prefixes, int size) {
282 this.prefixes = prefixes;
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Element.java 39 protected Vector prefixes; field in class:Element
155 return (prefixes == null ? 0 : prefixes.size());
159 return ((String[]) prefixes.elementAt(i))[0];
163 return ((String[]) prefixes.elementAt(i))[1];
260 if (prefixes == null)
261 prefixes = new Vector();
262 prefixes.addElement(new String[] {
302 if (prefixes != null) {
303 for (int i = 0; i < prefixes.size(); i++)
    [all...]
  /external/llvm/test/MC/Mips/
cpsetup.s 2 # RUN: llvm-objdump -d -r - | FileCheck -check-prefixes=ALL,O32 %s
5 # RUN: FileCheck -check-prefixes=ALL,ASM %s
9 # RUN: FileCheck -check-prefixes=ALL,NXX,N32 %s
12 # RUN: FileCheck -check-prefixes=ALL,ASM %s
16 # RUN: FileCheck -check-prefixes=ALL,NXX,N64 %s
19 # RUN: FileCheck -check-prefixes=ALL,ASM %s
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 56 * processed. At any given moment of processing the currently visible prefixes
67 * This member is continually incremented when new prefixes need to be
91 * All prefixes pushed at the current depth can be
168 Enumeration prefixes = m_namespaces.keys(); local
169 while (prefixes.hasMoreElements())
171 String prefix = (String) prefixes.nextElement();
185 Enumeration prefixes = m_namespaces.keys(); local
186 while (prefixes.hasMoreElements())
188 String prefix = (String) prefixes.nextElement();
204 // Prefixes "xml" and "xmlns" cannot be redefine
486 Enumeration prefixes = m_namespaces.keys(); local
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/bytecode/
CoreRemapperImplTest.kt 49 val prefixes = if (restrictToPackagePrefix == null) {
56 restrictToPackagePrefixes = prefixes,
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/map/
MapGenerationTest.kt 144 fun withAllowedPrefixes(vararg prefixes: String) = Step2(rules, prefixes.toSet())
146 class Step2(private val rules: List<RewriteRule>, private val prefixes: Set<String>) {
158 restrictToPackagePrefixes = prefixes,
  /system/core/property_service/libpropertyinfoserializer/
trie_builder_test.cpp 48 EXPECT_EQ(0U, builder_root.prefixes().size());
62 EXPECT_EQ(1U, test_node->prefixes().size());
64 auto& property_entry = test_node->prefixes()[0];
95 EXPECT_EQ(0U, node->prefixes().size());
114 EXPECT_EQ(0U, long_string_node->prefixes().size());

Completed in 976 milliseconds

1 2 3 4 5 6 7 8 91011>>