HomeSort by relevance Sort by last modified time
    Searched refs:prefixes (Results 1 - 25 of 326) 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/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/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])
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
hexprefix.s 1 # Test for correct generation of hex prefixes.
hexprefix.d 3 #name: verify hex prefixes present and not duplicated (hexprefix)
  /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/utils/
update_llc_test_checks.py 111 # FIXME: We should use multiple check prefixes to common check lines. For
116 for prefixes, _ in checks:
117 for prefix in prefixes:
119 for prefixes, llc_args in checks:
122 print >>sys.stderr, 'Extracted FileCheck prefixes: ' + str(prefixes)
137 for prefix in prefixes:
139 if prefix == prefixes[-1]:
150 prefix_set = set([prefix for prefixes, _ in checks for prefix in prefixes])
    [all...]
  /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/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
__init__.py 88 if token["namespace"] in constants.prefixes:
89 ns = constants.prefixes[token["namespace"]]
101 if namespace in constants.prefixes:
102 ns = constants.prefixes[namespace]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
mpx-inval-1.l 5 .*:8: Warning: skipping prefixes on this instruction
7 .*:9: Warning: skipping prefixes on this instruction
30 .* Warning: skipping prefixes on this instruction
34 .* Warning: skipping prefixes on this instruction
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 158 private static final String NAMESPACE_PREFIXES = FEATURES + "namespace-prefixes";
166 * namespace-prefixes.</p>
182 if (!namespaces && !prefixes) {
183 prefixes = true;
187 prefixes = value;
188 if (!prefixes && !namespaces) {
204 * namespace-prefixes.</p>
220 return prefixes;
555 if (prefixes) {
624 Enumeration prefixes = nsSupport.getDeclaredPrefixes()
622 Enumeration prefixes = nsSupport.getDeclaredPrefixes(); local
825 private boolean prefixes = false; field in class:ParserAdapter
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
MessageUtils.java 45 * accessible static integer fields whose names begin with one of the specified {@prefixes}.
48 * @prefixes only consider fields names starting with one of these prefixes.
51 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) {
72 for (String prefix : prefixes) {
116 * Default prefixes for constants.
125 * @prefixes only consider fields names starting with one of these prefixes.
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 185 private static boolean prefixes(CharSequence sequence, String prefix) { method in class:ProcessBindable
186 boolean prefixes = false;
189 prefixes = true;
192 prefixes = false;
197 return prefixes;
202 return prefixes(name, "get") &&
210 return prefixes(name, "set") &&
218 return prefixes(name, "is") &&
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ConfigResults.java 169 * Returns a list of build results which names starts with one of the given prefixes.
171 * @param prefixes List of expected prefixes
174 public List getBuildsMatchingPrefixes(List prefixes) {
177 int length = prefixes.size();
182 if (buildName.startsWith((String)prefixes.get(j))) {
392 * prefixes.
394 * @param prefixes List of prefixes to filter builds. If <code>null</code>
404 public double[] getStatistics(List prefixes) {
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 482 private static final String makeUrl(@NonNull String url, @NonNull String[] prefixes,
490 for (int i = 0; i < prefixes.length; i++) {
491 if (url.regionMatches(true, 0, prefixes[i], 0, prefixes[i].length())) {
495 if (!url.regionMatches(false, 0, prefixes[i], 0, prefixes[i].length())) {
496 url = prefixes[i] + url.substring(prefixes[i].length());
503 if (!hasPrefix && prefixes.length > 0) {
504 url = prefixes[0] + url
    [all...]
  /external/icu/icu4c/source/i18n/
collationsets.cpp 216 // Parallel iteration over prefixes of both tables.
217 UCharsTrie::Iterator prefixes(p, 0, errorCode);
222 // U+FFFF is untailorable and will not occur in prefixes.
226 if(prefixes.next(errorCode)) {
227 tp = &prefixes.getString();
243 addPrefix(data, *tp, c, (uint32_t)prefixes.getValue());
251 compare(c, (uint32_t)prefixes.getValue(), (uint32_t)basePrefixes.getValue());
308 UCharsTrie::Iterator prefixes(p, 0, errorCode);
309 while(prefixes.next(errorCode)) {
310 addPrefix(d, prefixes.getString(), c, (uint32_t)prefixes.getValue())
    [all...]

Completed in 621 milliseconds

1 2 3 4 5 6 7 8 91011>>