HomeSort by relevance Sort by last modified time
    Searched refs:prefixes (Results 26 - 50 of 495) sorted by null

12 3 4 5 6 7 8 91011>>

  /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
rex.s 19 # Test prefixes family.
  /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 46 * {@code prefixes}.
49 * @param prefixes only consider fields names starting with one of these prefixes.
52 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) {
73 for (String prefix : prefixes) {
117 * Default prefixes for constants.
  /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") &&
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
hexprefix.d 3 #name: verify hex prefixes present and not duplicated (hexprefix)
  /external/llvm/utils/
update_test_checks.py 113 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose, tool_basename):
130 for prefix in prefixes:
132 if prefix == prefixes[-1]:
202 # Add some space between different check prefixes, but not after the last
248 # Add space between different check prefixes and also before the first
322 # FIXME: We should use multiple check prefixes to common check lines. For
327 for prefixes, _ in prefix_list:
328 for prefix in prefixes:
330 for prefixes, tool_args in prefix_list:
333 print >>sys.stderr, 'Extracted FileCheck prefixes: ' + str(prefixes
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 488 private static final String makeUrl(@NonNull String url, @NonNull String[] prefixes,
496 for (int i = 0; i < prefixes.length; i++) {
497 if (url.regionMatches(true, 0, prefixes[i], 0, prefixes[i].length())) {
501 if (!url.regionMatches(false, 0, prefixes[i], 0, prefixes[i].length())) {
502 url = prefixes[i] + url.substring(prefixes[i].length());
509 if (!hasPrefix && prefixes.length > 0) {
510 url = prefixes[0] + url
    [all...]
  /frameworks/support/compat/java/android/support/v4/text/util/
LinkifyCompat.java 383 private static String makeUrl(@NonNull String url, @NonNull String[] prefixes,
391 for (int i = 0; i < prefixes.length; i++) {
392 if (url.regionMatches(true, 0, prefixes[i], 0, prefixes[i].length())) {
396 if (!url.regionMatches(false, 0, prefixes[i], 0, prefixes[i].length())) {
397 url = prefixes[i] + url.substring(prefixes[i].length());
404 if (!hasPrefix && prefixes.length > 0) {
405 url = prefixes[0] + url
    [all...]
  /frameworks/base/services/net/java/android/net/ip/
RouterAdvertisementDaemon.java 125 public HashSet<IpPrefix> prefixes; field in class:RouterAdvertisementDaemon.RaParams
131 prefixes = new HashSet<IpPrefix>();
138 prefixes = (HashSet) other.prefixes.clone();
145 // Currently only tracks differences in |prefixes| and |dnses|.
150 for (IpPrefix ipp : oldRa.prefixes) {
151 if (newRa == null || !newRa.prefixes.contains(ipp)) {
152 newlyDeprecated.prefixes.add(ipp);
173 void putPrefixes(Set<IpPrefix> prefixes) {
174 for (IpPrefix ipp : prefixes) {
    [all...]
  /external/icu/icu4c/source/i18n/
collationsets.cpp 218 // Parallel iteration over prefixes of both tables.
219 UCharsTrie::Iterator prefixes(p, 0, errorCode);
224 // U+FFFF is untailorable and will not occur in prefixes.
228 if(prefixes.next(errorCode)) {
229 tp = &prefixes.getString();
245 addPrefix(data, *tp, c, (uint32_t)prefixes.getValue());
253 compare(c, (uint32_t)prefixes.getValue(), (uint32_t)basePrefixes.getValue());
310 UCharsTrie::Iterator prefixes(p, 0, errorCode);
311 while(prefixes.next(errorCode)) {
312 addPrefix(d, prefixes.getString(), c, (uint32_t)prefixes.getValue())
    [all...]
collationsets.h 70 /** Prefixes are reversed in the data structure. */
96 ContractionsAndExpansions(UnicodeSet *con, UnicodeSet *exp, CESink *s, UBool prefixes)
100 addPrefixes(prefixes),
118 /** Prefixes are reversed in the data structure. */
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/xml/
HasXPathTest.java 51 HashSet<String> prefixes = new HashSet<String>();
54 prefixes.add(prefix);
56 return prefixes.iterator();
  /external/mesa3d/scons/
crossmingw.py 44 # These are the mingw toolchain prefixes we search for:
55 prefixes = prefixes64
57 prefixes = prefixes32
58 for prefix in prefixes:
  /hardware/interfaces/tetheroffload/control/1.0/vts/functional/
VtsHalTetheroffloadControlV1_0TargetTest.cpp 279 const vector<hidl_string> prefixes{hidl_string("2001:db8::/64")};
280 const Return<void> ret = control->setLocalPrefixes(prefixes, ASSERT_FALSE_CALLBACK);
369 const vector<hidl_string> prefixes{hidl_string("192.0.2.1")};
370 const Return<void> ret = control->setLocalPrefixes(prefixes, ASSERT_TRUE_CALLBACK);
376 const vector<hidl_string> prefixes{hidl_string("fe80::1")};
377 const Return<void> ret = control->setLocalPrefixes(prefixes, ASSERT_TRUE_CALLBACK);
381 // Test setLocalPrefixes() accepts both IPv4 and IPv6 prefixes.
383 const vector<hidl_string> prefixes{hidl_string("192.0.2.0/24"), hidl_string("fe80::/64")};
384 const Return<void> ret = control->setLocalPrefixes(prefixes, ASSERT_TRUE_CALLBACK);
389 // a non-empty set of local prefixes; when all networking interfaces are dow
    [all...]
  /external/llvm/test/MC/Mips/
expansion-jal-sym-pic.s 2 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,O32
5 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,N32
8 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,N64
11 # RUN: FileCheck %s -check-prefixes=ALL,MICROMIPS,O32-MICROMIPS
14 # RUN: FileCheck %s -check-prefixes=ALL,MICROMIPS,N32-MICROMIPS
17 # RUN: FileCheck %s -check-prefixes=ALL,MICROMIPS,N64-MICROMIPS
directive-ent.s 8 # RUN: FileCheck -check-prefixes=OBJ,OBJ-32 %s
15 # RUN: FileCheck -check-prefixes=OBJ,OBJ-MM %s
mips_abi_flags_xx.s 6 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ,CHECK-OBJ-32R1,CHECK-OBJ-MIPS
10 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ,CHECK-OBJ-32R1,CHECK-OBJ-MIPS
14 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ,CHECK-OBJ-32R6,CHECK-OBJ-MIPS
18 # RUN: FileCheck %s -check-prefixes=CHECK-OBJ,CHECK-OBJ-64R2,CHECK-OBJ-OCTEON
  /hardware/interfaces/tetheroffload/control/1.0/
IOffloadControl.hal 66 * Instruct management process not to forward traffic destined to or from the specified prefixes.
70 * @param prefixes List containing fully specified prefixes. For e.g. 192.168.1.12/24
78 setLocalPrefixes(vec<string> prefixes) generates (bool success, string errMsg);
180 * If no upstream is currently configured, then these downstream interface and prefixes must be
196 * happen because the hardware cannot support the current number of prefixes, the
  /external/gptfdisk/
support.cc 231 string units, prefixes = " KMGTPEZ"; local
235 while ((sizeInIeee > 1024) && (index < (prefixes.length() - 1))) {
240 if (prefixes[index] == ' ') {
244 units[1] = prefixes[index];
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceInflater.java 211 private Preference createItem(@NonNull String name, @Nullable String[] prefixes,
222 if (prefixes == null || prefixes.length == 0) {
226 for (final String prefix : prefixes) {
  /external/doclava/src/com/google/doclava/
AndroidAuxSource.java 206 ArrayList<AnnotationValueInfo> prefixes = null; local
212 case "prefix": prefixes = (ArrayList<AnnotationValueInfo>) val.value(); break;
219 if (prefixes == null || prefixes.isEmpty()) continue;
225 for (AnnotationValueInfo prefix : prefixes) {
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 16 static void apply_seg( x86_op_t *op, unsigned int prefixes ) {
17 if (! prefixes ) return;
20 switch ( prefixes & PREFIX_REG_MASK ) {
381 unsigned int raw_flags, unsigned int prefixes,
419 /* if operand is an address, apply any segment override prefixes */
421 apply_seg(op, prefixes);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
ContractionsAndExpansions.java 46 public ContractionsAndExpansions(UnicodeSet con, UnicodeSet exp, CESink s, boolean prefixes) {
50 addPrefixes = prefixes;
238 CharsTrie.Iterator prefixes = new CharsTrie(data.contexts, index + 2).iterator(); local
239 while (prefixes.hasNext()) {
240 Entry e = prefixes.next();
301 // Prefixes are reversed in the data structure.
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
ContractionsAndExpansions.java 42 public ContractionsAndExpansions(UnicodeSet con, UnicodeSet exp, CESink s, boolean prefixes) {
46 addPrefixes = prefixes;
234 CharsTrie.Iterator prefixes = new CharsTrie(data.contexts, index + 2).iterator(); local
235 while (prefixes.hasNext()) {
236 Entry e = prefixes.next();
297 // Prefixes are reversed in the data structure.

Completed in 1817 milliseconds

12 3 4 5 6 7 8 91011>>