Home
last modified time | relevance | path

Searched refs:canonical (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/external/valgrind/coregrind/m_syswrap/
Dsyswrap-main.c459 void getSyscallArgsFromGuestState ( /*OUT*/SyscallArgs* canonical, in getSyscallArgsFromGuestState() argument
465 canonical->sysno = gst->guest_EAX; in getSyscallArgsFromGuestState()
466 canonical->arg1 = gst->guest_EBX; in getSyscallArgsFromGuestState()
467 canonical->arg2 = gst->guest_ECX; in getSyscallArgsFromGuestState()
468 canonical->arg3 = gst->guest_EDX; in getSyscallArgsFromGuestState()
469 canonical->arg4 = gst->guest_ESI; in getSyscallArgsFromGuestState()
470 canonical->arg5 = gst->guest_EDI; in getSyscallArgsFromGuestState()
471 canonical->arg6 = gst->guest_EBP; in getSyscallArgsFromGuestState()
472 canonical->arg7 = 0; in getSyscallArgsFromGuestState()
473 canonical->arg8 = 0; in getSyscallArgsFromGuestState()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DInternersTest.java35 String canonical = "a"; in testStrong_simplistic() local
39 assertSame(canonical, pool.intern(canonical)); in testStrong_simplistic()
40 assertSame(canonical, pool.intern(not)); in testStrong_simplistic()
52 String canonical = "a"; in testWeak_simplistic() local
56 assertSame(canonical, pool.intern(canonical)); in testWeak_simplistic()
57 assertSame(canonical, pool.intern(not)); in testWeak_simplistic()
69 Integer canonical = new Integer(5); in testWeak_afterGC() local
73 assertSame(canonical, pool.intern(canonical)); in testWeak_afterGC()
75 WeakReference<Integer> signal = new WeakReference<Integer>(canonical); in testWeak_afterGC()
76 canonical = null; // Hint to the JIT that canonical is unreachable in testWeak_afterGC()
[all …]
DRangeTest.java556 Range.closed(1, 4).canonical(integers())); in testCanonical()
558 Range.open(0, 5).canonical(integers())); in testCanonical()
560 Range.closedOpen(1, 5).canonical(integers())); in testCanonical()
562 Range.openClosed(0, 4).canonical(integers())); in testCanonical()
565 Range.closedOpen(Integer.MIN_VALUE, 0).canonical(integers())); in testCanonical()
568 Range.lessThan(0).canonical(integers())); in testCanonical()
570 Range.atMost(0).canonical(integers())); in testCanonical()
571 assertEquals(Range.atLeast(0), Range.atLeast(0).canonical(integers())); in testCanonical()
572 assertEquals(Range.atLeast(1), Range.greaterThan(0).canonical(integers())); in testCanonical()
574 assertEquals(Range.atLeast(Integer.MIN_VALUE), Range.<Integer>all().canonical(integers())); in testCanonical()
[all …]
/external/bison/tests/
Dreduce.at467 AT_TEST_TABLES_AND_PARSE([[%define lr.type canonical-lr: ]$1],
468 [[canonical LR]], [[]],
469 [[%define lr.type canonical-lr
476 // Conflict resolution renders state 12 unreachable for canonical LR(1). We
581 ]AT_COND_CASE([[canonical LR]], [['a']],
607 'a' shift, and go to state ]AT_COND_CASE([[canonical LR]], [[17]],
611 ]AT_COND_CASE([[canonical LR]], [[$end]],
617 7 c: A .]AT_COND_CASE([[canonical LR]], [[ [$end]]])[
619 ]AT_COND_CASE([[canonical LR]], [[$end]],
625 3 S: 'c' c .]AT_COND_CASE([[canonical LR]], [[ [$end]]])[
[all …]
/external/guava/guava/src/com/google/common/collect/
DInterners.java48 E canonical = map.putIfAbsent(checkNotNull(sample), sample); in newStrongInterner()
49 return (canonical == null) ? sample : canonical; in newStrongInterner()
78 E canonical = entry.getKey();
79 if (canonical != null) { // only matters if weak/soft keys are used
80 return canonical;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCalendarUtil.java58 ULocale canonical = ULocale.createCanonical(loc.toString()); in getCalendarType() local
59 calType = canonical.getKeywordValue("calendar"); in getCalendarType()
64 String region = canonical.getCountry(); in getCalendarType()
66 ULocale fullLoc = ULocale.addLikelySubtags(canonical); in getCalendarType()
DZoneMeta.java360 String canonical = CANONICAL_ID_CACHE.get(tzid); in getCanonicalCLDRID() local
361 if (canonical == null) { in getCanonicalCLDRID()
362 canonical = findCLDRCanonicalID(tzid); in getCanonicalCLDRID()
363 if (canonical == null) { in getCanonicalCLDRID()
375 canonical = findCLDRCanonicalID(tzid); in getCanonicalCLDRID()
377 if (canonical == null) { in getCanonicalCLDRID()
378 canonical = tzid; in getCanonicalCLDRID()
385 if (canonical != null) { in getCanonicalCLDRID()
386 CANONICAL_ID_CACHE.put(tzid, canonical); in getCanonicalCLDRID()
389 return canonical; in getCanonicalCLDRID()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCalendarUtil.java56 ULocale canonical = ULocale.createCanonical(loc.toString()); in getCalendarType() local
57 calType = canonical.getKeywordValue("calendar"); in getCalendarType()
62 String region = canonical.getCountry(); in getCalendarType()
64 ULocale fullLoc = ULocale.addLikelySubtags(canonical); in getCalendarType()
DZoneMeta.java359 String canonical = CANONICAL_ID_CACHE.get(tzid); in getCanonicalCLDRID() local
360 if (canonical == null) { in getCanonicalCLDRID()
361 canonical = findCLDRCanonicalID(tzid); in getCanonicalCLDRID()
362 if (canonical == null) { in getCanonicalCLDRID()
374 canonical = findCLDRCanonicalID(tzid); in getCanonicalCLDRID()
376 if (canonical == null) { in getCanonicalCLDRID()
377 canonical = tzid; in getCanonicalCLDRID()
384 if (canonical != null) { in getCanonicalCLDRID()
385 CANONICAL_ID_CACHE.put(tzid, canonical); in getCanonicalCLDRID()
388 return canonical; in getCanonicalCLDRID()
[all …]
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
Dipv6.py138 canonical = []
145 canonical.append('0000')
152 canonical.append(c)
155 text = ''.join(canonical)
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DDumperOptions.java162 private boolean canonical = false; field in DumperOptions
257 public void setCanonical(boolean canonical) { in setCanonical() argument
258 this.canonical = canonical; in setCanonical()
262 return this.canonical; in isCanonical()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
DNormalizerData.java62 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) { in getRecursiveDecomposition() argument
64 if (decomp != null && !(canonical && isCompatibility.get(ch))) { in getRecursiveDecomposition()
67 getRecursiveDecomposition(canonical, ch, buffer); in getRecursiveDecomposition()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizerData.java61 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) { in getRecursiveDecomposition() argument
63 if (decomp != null && !(canonical && isCompatibility.get(ch))) { in getRecursiveDecomposition()
66 getRecursiveDecomposition(canonical, ch, buffer); in getRecursiveDecomposition()
/external/clang/include/clang/AST/
DTypeNodes.def17 // and might be dependent, canonical, or non-canonical. All clients
24 // anywhere in the AST but will never be a part of a canonical
25 // type. Clients that only need to deal with canonical types
35 // is non-canonical unless it is dependent. Defaults to TYPE because
36 // it is neither reliably dependent nor reliably non-canonical.
/external/llvm/test/YAMLParser/
Dspec-02-19.test1 # RUN: yaml-bench -canonical %s
3 canonical: 12345
Dspec-02-22.test1 # RUN: yaml-bench -canonical %s
3 canonical: 2001-12-15T02:59:43.1Z
Dconstruct-int.test1 # RUN: yaml-bench -canonical %s
3 canonical: 685230
Dspec-02-20.test1 # RUN: yaml-bench -canonical %s
3 canonical: 1.23015e+3
Dconstruct-timestamp.test1 # RUN: yaml-bench -canonical %s
3 canonical: 2001-12-15T02:59:43.1Z
Dconstruct-float.test1 # RUN: yaml-bench -canonical %s
3 canonical: 6.8523015e+5
Dconstruct-bool.test1 # RUN: yaml-bench -canonical %s
3 canonical: yes
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
DEmitter.java132 private Boolean canonical; field in Emitter
187 this.canonical = opts.isCanonical(); in Emitter()
332 boolean implicit = first && !ev.getExplicit() && !canonical in expect()
339 if (canonical) { in expect()
395 if (flowLevel != 0 || canonical || ((SequenceStartEvent) event).getFlowStyle() in expectNode()
402 if (flowLevel != 0 || canonical || ((MappingStartEvent) event).getFlowStyle() in expectNode()
449 if (canonical || (column > bestWidth && splitLines) || prettyFlow) { in expect()
463 if (canonical) { in expect()
474 if (canonical || (column > bestWidth && splitLines) || prettyFlow) { in expect()
503 if (canonical || (column > bestWidth && splitLines) || prettyFlow) { in expect()
[all …]
/external/skia/src/core/
DSkImageInfo.cpp50 SkAlphaType* canonical) { in SkColorTypeValidateAlphaType() argument
76 if (canonical) { in SkColorTypeValidateAlphaType()
77 *canonical = alphaType; in SkColorTypeValidateAlphaType()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DSessionDescription.java45 public static Type fromCanonicalForm(String canonical) { in fromCanonicalForm() argument
46 return Type.valueOf(Type.class, canonical.toUpperCase()); in fromCanonicalForm()
/external/clang/test/Driver/
Drewrite-legacy-objc.m1 // RUN: %clang -no-canonical-prefixes -target x86_64-apple-macosx10.7.0 -rewrite-legacy-objc %s -o …
8 // RUN: %clang -no-canonical-prefixes -target i386-apple-macosx10.9.0 -rewrite-legacy-objc %s -o - …
10 // RUN: %clang -no-canonical-prefixes -target i386-apple-macosx10.6.0 -rewrite-legacy-objc %s -o - …

12345678910>>...17