/external/clang/test/SemaCXX/ |
D | warn-consumed-analysis.cpp | 725 Status doSomething(); 737 …doSomething(); // expected-warning {{invalid invocation of method '~Status' on a temporary object … 741 doSomething().ignore(); 745 handleStatus(doSomething()); 749 Status s = doSomething(); 753 …bool b = false || doSomething(); // expected-warning {{invalid invocation of method '~Status' on a… 757 return doSomething(); 761 Status s = doSomething(); 766 Status s = doSomething(); 771 Status s = doSomething(); [all …]
|
D | warn-thread-safety-analysis.cpp | 1529 void doSomething() __attribute__((exclusive_locks_required(mu))) { } in doSomething() function in substitution_test::MyData 2165 void doSomething() { in doSomething() function in SelfLockingTest::MyLock 2650 void doSomething(); 2670 doSomething(); in test4() 2686 doSomething(); in test6() 3243 void doSomething() EXCLUSIVE_LOCKS_REQUIRED(lock_); 3253 i->doSomething(); in foo() 4228 void doSomething(); 4247 if (a == 0) doSomething(); // OK, we don't dereference. in test1() 4250 if (sa[0] == 42) doSomething(); in test1() [all …]
|
/external/compiler-rt/test/BlocksRuntime/ |
D | recursive-block.c | 17 int doSomething(int i) { in doSomething() function 24 int j = doSomething(i); in dirtyStack() 25 int k = doSomething(j); in dirtyStack() 26 doSomething(i + j + k); in dirtyStack() 33 __block voidVoid inner = ^{ doSomething(i); }; in testFunction()
|
/external/mockito/src/test/java/org/mockitousage/basicapi/ |
D | UsingVarargsTest.java | 138 String doSomething(String one, String... varargs); in doSomething() method 139 String doSomething(String one, String two, String... varargs); in doSomething() method 147 when(mixedVarargs.doSomething("hello", (String[])null)).thenReturn("hello"); in shouldStubCorrectlyWhenMixedVarargsUsed() 148 when(mixedVarargs.doSomething("goodbye", (String[])null)).thenReturn("goodbye"); in shouldStubCorrectlyWhenMixedVarargsUsed() 150 String result = mixedVarargs.doSomething("hello",(String[]) null); in shouldStubCorrectlyWhenMixedVarargsUsed() 153 verify(mixedVarargs).doSomething("hello", (String[])null); in shouldStubCorrectlyWhenMixedVarargsUsed() 160 when(mixedVarargs.doSomething("one", "two", (String[])null)).thenReturn("hello"); in shouldStubCorrectlyWhenDoubleStringAndMixedVarargsUsed() 161 when(mixedVarargs.doSomething("1", "2", (String[])null)).thenReturn("goodbye"); in shouldStubCorrectlyWhenDoubleStringAndMixedVarargsUsed() 163 String result = mixedVarargs.doSomething("one", "two", (String[])null); in shouldStubCorrectlyWhenDoubleStringAndMixedVarargsUsed()
|
/external/clang/test/Analysis/inlining/ |
D | false-positive-suppression.cpp | 45 void doSomething(); 103 getSomeClass()->doSomething(); in testClass() 110 object->doSomething(); in testClass() 188 NonTrivial().getNull()->doSomething(); in testImmediate() 196 ptr->doSomething(); in testAssignment() 203 arg->doSomething(); in testArgumentHelper()
|
/external/mockito/src/test/java/org/mockitousage/debugging/ |
D | VerboseLoggingOfInvocationsOnMockTest.java | 74 foo.doSomething("Klipsch"); in shouldPrintUnstubbedInvocationOnMockToStdOut() 106 doThrow(new ThirdPartyException()).when(foo).doSomething("Klipsch"); in shouldPrintThrowingInvocationOnMockToStdOut() 110 foo.doSomething("Klipsch"); in shouldPrintThrowingInvocationOnMockToStdOut() 128 doCallRealMethod().when(fooSpy).doSomething("Klipsch"); in shouldPrintRealInvocationOnSpyToStdOut() 131 fooSpy.doSomething("Klipsch"); in shouldPrintRealInvocationOnSpyToStdOut() 151 foo.doSomething("Klipsch"); in usage() 180 public void doSomething(String param) { in doSomething() method in VerboseLoggingOfInvocationsOnMockTest.FooImpl
|
D | VerificationListenerCallBackTest.java | 46 verify(foo, never).doSomething(""); in should_call_single_listener_on_verify() 64 verify(foo, never).doSomething(""); in should_call_all_listeners_on_verify() 79 verify(foo).doSomething(""); in should_not_call_listener_when_verify_was_called_incorrectly() 97 verify(foo).doSomething(""); in should_notify_when_verification_throws_type_error() 115 verify(foo, new RuntimeExceptionVerificationMode()).doSomething(""); in should_notify_when_verification_throws_runtime_exception() 143 foo.doSomething(""); in verificationTest() 144 verify(foo).doSomething(""); in verificationTest()
|
/external/mockito/src/test/java/org/mockitousage/bugs/injection/ |
D | ChildWithSameParentFieldInjectionTest.java | 38 someService.doSomething(); in doSomethingElse() 45 public void doSomething() { in doSomething() method in ChildWithSameParentFieldInjectionTest.AbstractSystem 46 someService.doSomething(); in doSomething() 51 public void doSomething() { in doSomething() method in ChildWithSameParentFieldInjectionTest.SomeService
|
/external/clang/test/Analysis/ |
D | dtor.cpp | 42 void doSomething(); 48 doSomething(); in testSmartPointer2() 65 doSomething(); in testSubclassSmartPointer() 82 doSomething(); in testMultipleInheritance1() 93 doSomething(); in testMultipleInheritance2() 104 doSomething(); in testMultipleInheritance3() 122 doSomething(); in testSmartPointerMember()
|
/external/clang/test/SemaObjC/ |
D | warn-retain-block-property.m | 7 extern void doSomething(); function 29 t.aBlock = ^{ doSomething(); }; 30 t.aBlockW = ^{ doSomething(); }; 31 t.aBlockS = ^{ doSomething(); }; 47 // CHECK-ARC: t.aBlockW = ^{ doSomething(); };
|
D | transparent-union.m | 16 - (void) doSomething : (xx_object_t) xxObject; 21 - (void) doSomething : (xx_object_t) xxObject {} 22 - (void)testMeth { struct xx_queue_s *sq; [self doSomething:sq ]; }
|
D | protocol-qualified-class-unsupported.m | 27 static void doSomething(Class <Func> unsupportedObjectType) { function 36 doSomething([Derived self]); 37 doSomething([Derived2 self]);
|
D | no-warn-unimpl-method.m | 17 -(void) doSomething; method 21 -(void) doSomething; method 25 -(void) doSomething
|
D | synthesize-setter-contclass.m | 9 -(void) doSomething; method 19 -(void) doSomething
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/ |
D | subregisters.ll | 20 ; void doSomething() __attribute__ ((noinline)); 22 ; void doSomething(struct bar *b) 31 ; doSomething(&myBar); 44 define void @doSomething(%struct.bar* nocapture readonly %b) #0 !dbg !4 { 67 call void @doSomething(%struct.bar* %tmpcast), !dbg !35 87 !4 = distinct !DISubprogram(name: "doSomething", line: 10, isLocal: false, isDefinition: true, virt…
|
D | rematerialize.ll | 9 ; extern __m128 doSomething(__m128, __m128); 17 ; __m128 Result = doSomething(Add, Sub); // line 11 45 %call = tail call <4 x float> @doSomething(<4 x float> %add, <4 x float> %sub) #3, !dbg !28 51 declare <4 x float> @doSomething(<4 x float>, <4 x float>) local_unnamed_addr #1
|
/external/llvm/test/DebugInfo/X86/ |
D | subregisters.ll | 22 ; void doSomething() __attribute__ ((noinline)); 24 ; void doSomething(struct bar *b) 33 ; doSomething(&myBar); 46 define void @doSomething(%struct.bar* nocapture readonly %b) #0 !dbg !4 { 69 call void @doSomething(%struct.bar* %tmpcast), !dbg !35 89 !4 = distinct !DISubprogram(name: "doSomething", line: 10, isLocal: false, isDefinition: true, virt…
|
/external/clang/test/CodeGenCXX/ |
D | debug-info-method-spec.cpp | 6 void doSomething(int i) { ++i; } in doSomething() function in A 10 a->doSomething(2); in foo()
|
/external/clang/test/Index/ |
D | complete-with-annotations.cpp | 2 void doSomething(); 11 void X::doSomething() { in doSomething() function in X
|
D | complete-access-checks.cpp | 13 void doSomething(); 28 void Y::doSomething() { in doSomething() function in Y
|
/external/clang/test/CoverageMapping/ |
D | block-storage-starts-region.m | 6 // CHECK-LABEL: doSomething: 7 void doSomething() { // CHECK: File 0, [[@LINE]]:20 -> {{[0-9:]+}} = #0 function
|
/external/llvm/test/CodeGen/MIR/X86/ |
D | frame-info-save-restore-points.mir | 15 %tmp4 = call i32 @doSomething(i32 0, i32* %tmp) 23 declare i32 @doSomething(i32, i32*) 66 …CALL64pcrel32 @doSomething, csr_64, implicit %rsp, implicit %edi, implicit %rsi, implicit-def %rsp…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/X86/ |
D | frame-info-save-restore-points.mir | 15 %tmp4 = call i32 @doSomething(i32 0, i32* %tmp) 23 declare i32 @doSomething(i32, i32*) 66 …CALL64pcrel32 @doSomething, csr_64, implicit $rsp, implicit $ssp, implicit $edi, implicit $rsi, im…
|
/external/clang/test/Rewriter/ |
D | rewrite-interface-locals.mm | 11 - (void)doSomething:(NSData *)data callback:(Callback)callback; 16 - (void)doSomething:(NSData *)data callback:(Callback)callback {
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | peephole-bitcast.ll | 21 tail call void @doSomething(float %x) nounwind 28 declare void @doSomething(float)
|