Home
last modified time | relevance | path

Searched refs:doSomething (Results 1 – 25 of 48) sorted by relevance

12

/external/clang/test/SemaCXX/
Dwarn-consumed-analysis.cpp725 Status doSomething();
737doSomething(); // 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 …]
Dwarn-thread-safety-analysis.cpp1529 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/
Drecursive-block.c17 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/clang/test/Analysis/inlining/
Dfalse-positive-suppression.cpp45 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/clang/test/Analysis/
Ddtor.cpp42 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/
Dtransparent-union.m16 - (void) doSomething : (xx_object_t) xxObject;
21 - (void) doSomething : (xx_object_t) xxObject {}
22 - (void)testMeth { struct xx_queue_s *sq; [self doSomething:sq ]; }
Dwarn-retain-block-property.m7 extern void doSomething(); function
29 t.aBlock = ^{ doSomething(); };
30 t.aBlockW = ^{ doSomething(); };
31 t.aBlockS = ^{ doSomething(); };
47 // CHECK-ARC: t.aBlockW = ^{ doSomething(); };
Dprotocol-qualified-class-unsupported.m27 static void doSomething(Class <Func> unsupportedObjectType) { function
36 doSomething([Derived self]);
37 doSomething([Derived2 self]);
Dno-warn-unimpl-method.m17 -(void) doSomething; method
21 -(void) doSomething; method
25 -(void) doSomething
Dsynthesize-setter-contclass.m9 -(void) doSomething; method
19 -(void) doSomething
Dmethod-typecheck-2.m11 - (void) doSomething: (float) x; // expected-note {{previous definition is here}}
19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}}
/external/llvm/test/DebugInfo/X86/
Dsubregisters.ll17 ; void doSomething() __attribute__ ((noinline));
19 ; void doSomething(struct bar *b)
28 ; doSomething(&myBar);
41 define void @doSomething(%struct.bar* nocapture readonly %b) #0 !dbg !4 {
64 call void @doSomething(%struct.bar* %tmpcast), !dbg !35
85 !4 = distinct !DISubprogram(name: "doSomething", line: 10, isLocal: false, isDefinition: true, virt…
/external/clang/test/CodeGenCXX/
Ddebug-info-method-spec.cpp6 void doSomething(int i) { ++i; } in doSomething() function in A
10 a->doSomething(2); in foo()
/external/clang/test/Index/
Dcomplete-with-annotations.cpp2 void doSomething();
11 void X::doSomething() { in doSomething() function in X
Dcomplete-access-checks.cpp13 void doSomething();
28 void Y::doSomething() { in doSomething() function in Y
/external/clang/test/CoverageMapping/
Dblock-storage-starts-region.m6 // CHECK-LABEL: doSomething:
7 void doSomething() { // CHECK: File 0, [[@LINE]]:20 -> {{[0-9:]+}} = #0 function
Dsystem_macro.c15 void doSomething(int x) { // CHECK: File 0, [[@LINE]]:25 -> {{[0-9:]+}} = #0 in doSomething() function
/external/clang/test/Rewriter/
Drewrite-interface-locals.mm11 - (void)doSomething:(NSData *)data callback:(Callback)callback;
16 - (void)doSomething:(NSData *)data callback:(Callback)callback {
/external/llvm/test/CodeGen/MIR/X86/
Dframe-info-save-restore-points.mir15 %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/llvm/test/CodeGen/ARM/
Dpeephole-bitcast.ll21 tail call void @doSomething(float %x) nounwind
28 declare void @doSomething(float)
/external/guice/jdk8-tests/test/com/google/inject/jdk8/
DDefaultMethodInterceptionTest.java175 default String doSomething() { in doSomething() method
201 assertEquals("Baz", baz.doSomething()); in testInterception_ofAllMethodsOnType()
218 assertEquals("Baz", baz.doSomething()); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()
/external/llvm/test/CodeGen/X86/
Dx86-shrink-wrap-unwind.ll51 %tmp4 = call i32 @doSomething(i32 0, i32* %tmp)
59 declare i32 @doSomething(i32, i32*)
99 %tmp4 = call i32 @doSomething(i32 0, i32* %tmp)
145 %tmp4 = call i32 @doSomething(i32 0, i32* %tmp)
/external/skia/bench/
DScalarBench.cpp113 this->doSomething(fArray, sum); in performTest()
116 virtual void doSomething(SkScalar array[], int sum) {} in doSomething() function in IsFiniteScalarBench
/external/testng/src/test/java/test/guice/
DISingleton.java5 void doSomething(); in doSomething() method
DExampleSingleton.java6 public void doSomething() { in doSomething() method in ExampleSingleton

12