HomeSort by relevance Sort by last modified time
    Searched refs:prefixes (Results 1 - 25 of 495) 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...]
  /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/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/
IpManagerTest.java 159 String[] prefixes = { "fe80::/64", "fd2c:4e57:8e3c::/64" }; local
164 .withInitialConfiguration(conf(links(addresses), prefixes(prefixes), ips()))
188 LinkProperties want = linkproperties(links(addresses), routes(prefixes));
199 InitialConfiguration empty = conf(links(), prefixes());
226 prefixes( "fe80::/64", "fd2c:4e57:8e3c::/64"), ips()))
281 links("192.0.2.12/24"), prefixes("192.0.2.0/24"), dns("192.0.2.2")),
283 links("192.0.2.12/24"), prefixes("192.0.2.0/24"), dns()),
286 prefixes("2001:db8:dead:beef::/64", "fe80::/64"),
289 links("fe80::1/64"), prefixes("fe80::/64"), dns())
387 static Set<IpPrefix> prefixes(String... prefixes) { method in class:IpManagerTest
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
hexprefix.s 1 # Test for correct generation of hex prefixes.
  /toolchain/binutils/binutils-2.25/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
oddspreg.s 6 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-O32
13 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-N32
22 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-N64
26 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-O32
30 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-N32
34 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ-ALL,CHECK-OBJ-N64
  /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...]
  /external/llvm/utils/
update_llc_test_checks.py 75 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose):
88 for prefix in prefixes:
90 if prefix == prefixes[-1]:
108 # Add some space between different check prefixes.
117 # Add space between different check prefixes and the first line of code.
184 # FIXME: We should use multiple check prefixes to common check lines. For
189 for prefixes, _ in prefix_list:
190 for prefix in prefixes:
192 for prefixes, llc_args in prefix_list:
195 print >>sys.stderr, 'Extracted FileCheck prefixes: ' + str(prefixes
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/shaking/
ReasonPrinter.java 138 private Deque<String> prefixes = new ArrayDeque<>(); field in class:ReasonPrinter.ReasonFormatter
143 prefixes.push("is live because ");
147 prefixes.push("is reachable because ");
151 prefixes.push(prefix);
155 prefixes.push("");
159 prefixes.pop();
177 String prefix = prefixes.peek();
  /external/v8/tools/
verify_source_deps.py 95 def path_no_prefix(path, prefixes):
96 for prefix in prefixes:
98 return path_no_prefix(path[len(prefix) + 1:], prefixes)
102 def isources(prefixes):
107 yield path_no_prefix(os.path.join(*pathsplit(f)), prefixes)
126 Iterates over all string values recursively. Removes '../' path prefixes.
145 def icheck_values(values, prefixes):
146 for source_file in isources(prefixes):
  /external/mesa3d/src/mesa/drivers/dri/
gen-symbol-redefs.py 41 argparser.add_argument('prefixes',
44 help='driver-specific prefixes')
57 for prefix in args.prefixes:

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>