Home
last modified time | relevance | path

Searched refs:EXPLICIT (Results 1 – 15 of 15) sorted by relevance

/external/clang/test/Modules/
Ddependency-gen.modulemap7 …it.pcm -fmodules-cache-path=%t -fmodule-map-file-home-is-cwd | FileCheck %s --check-prefix=EXPLICIT
9 …explicit.pcm -MT main.o -fsyntax-only -dependency-file - | FileCheck %s --check-prefix=EXPLICIT-USE
31 // EXPLICIT: {{^}}explicit.pcm:
32 // EXPLICIT-NOT: dependency-gen-
33 // EXPLICIT: {{.*[/\\]}}dependency-gen.modulemap
34 // EXPLICIT-NOT: dependency-gen-
35 // EXPLICIT: base.pcm
36 // EXPLICIT-NOT: dependency-gen-
37 // EXPLICIT: {{ |\.[/\\]}}Inputs{{[/\\]}}dependency-gen.h
38 // EXPLICIT-NOT: dependency-gen-
[all …]
/external/guava/guava-tests/test/com/google/common/cache/
DRemovalNotificationTest.java33 new RemovalNotification<String, Integer>("one", 1, RemovalCause.EXPLICIT), in testEquals()
36 new RemovalNotification<String, Integer>("1", 1, RemovalCause.EXPLICIT)) in testEquals()
38 new RemovalNotification<String, Integer>("one", 2, RemovalCause.EXPLICIT)) in testEquals()
DCacheBuilderGwtTest.java264 case EXPLICIT: in testRemovalListener()
DLocalCacheTest.java781 assertNotified(listener, one, two, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
785 assertNotified(listener, two, three, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
791 assertNotified(listener, three, four, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
797 assertNotified(listener, four, five, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
803 assertNotified(listener, five, six, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
1728 assertNotified(listener, key, value, RemovalCause.EXPLICIT); in testClear_notification()
/external/llvm/test/Bitcode/
Dinvalid.test16 RUN: FileCheck --check-prefix=MISMATCHED-EXPLICIT-GEP %s
18 RUN: FileCheck --check-prefix=MISMATCHED-EXPLICIT-LOAD %s
20 RUN: FileCheck --check-prefix=MISMATCHED-EXPLICIT-GEP-OPERATOR %s
22 RUN: FileCheck --check-prefix=MISMATCHED-EXPLICIT-CALL %s
24 RUN: FileCheck --check-prefix=NON-FUNCTION-EXPLICIT-CALL %s
26 RUN: FileCheck --check-prefix=MISMATCHED-EXPLICIT-INVOKE %s
28 RUN: FileCheck --check-prefix=NON-FUNCTION-EXPLICIT-INVOKE %s
37 MISMATCHED-EXPLICIT-GEP: Explicit gep type does not match pointee type of pointer operand
38 MISMATCHED-EXPLICIT-LOAD: Explicit load/store type does not match pointee type of pointer operand
39 MISMATCHED-EXPLICIT-GEP-OPERATOR: Explicit gep operator type does not match pointee type of pointer…
[all …]
/external/guava/guava/src/com/google/common/cache/
DRemovalCause.java40 EXPLICIT { enumConstant
DLocalCache.java3086 cause = RemovalCause.EXPLICIT; in remove()
3191 cause = RemovalCause.EXPLICIT; in remove()
3205 return (cause == RemovalCause.EXPLICIT); in remove()
3225 enqueueNotification(e, RemovalCause.EXPLICIT); in clear()
/external/v8/src/compiler/
Dinstruction.h36 enum Kind { INVALID, UNALLOCATED, CONSTANT, IMMEDIATE, EXPLICIT, ALLOCATED }; enumerator
61 INSTRUCTION_OPERAND_PREDICATE(Explicit, EXPLICIT)
457 DCHECK(ALLOCATED == op->kind() || EXPLICIT == op->kind()); in cast()
462 DCHECK(ALLOCATED == op->kind() || EXPLICIT == op->kind()); in cast()
467 DCHECK(ALLOCATED == op.kind() || EXPLICIT == op.kind()); in cast()
487 INSTRUCTION_OPERAND_CASTS(ExplicitOperand, EXPLICIT);
549 LocationOperand::EXPLICIT); in GetCanonicalizedValue()
Dinstruction.cc125 case InstructionOperand::EXPLICIT: in operator <<()
244 : LocationOperand(EXPLICIT, kind, rep, index) { in ExplicitOperand()
Dregister-allocator.cc189 case InstructionOperand::EXPLICIT: in HintTypeForOperand()
/external/libxml2/test/valid/dtds/
Dxhtml1.dcl165 EXPLICIT NO
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java134 alertListenerIfPresent(key, value, RemovalCause.EXPLICIT); in remove()
154 alertListenerIfPresent(entry.getKey(), entry.getValue().getValue(), RemovalCause.EXPLICIT); in clear()
172 alertListenerIfPresent(key, value, RemovalCause.EXPLICIT); in remove()
/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java294 assertNotified(listener, one, two, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
298 assertNotified(listener, two, three, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
304 assertNotified(listener, three, four, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
310 assertNotified(listener, four, five, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
316 assertNotified(listener, five, six, RemovalCause.EXPLICIT); in testRemovalListener_explicit()
/external/guava/guava/src/com/google/common/collect/
DMapMaker.java690 EXPLICIT { enumConstant
DMapMakerInternalMap.java2751 cause = RemovalCause.EXPLICIT; in remove()
2794 cause = RemovalCause.EXPLICIT; in remove()
2807 return (cause == RemovalCause.EXPLICIT); in remove()
2828 enqueueNotification(e, RemovalCause.EXPLICIT); in clear()