| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | warn-consumed-analysis.cpp | 752 Status doSomething(); 768 doSomething().ignore(); 776 Status s = doSomething(); 784 return doSomething(); 788 Status s = doSomething(); 793 Status s = doSomething(); 798 Status s = doSomething(); 818 s = doSomething(); 824 Status s = doSomething(); 832 Status s = doSomething(); [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/ |
| H A D | recursive-block.c | 16 int doSomething(int i) { in doSomething() function 23 int j = doSomething(i); in dirtyStack() 24 int k = doSomething(j); in dirtyStack() 25 doSomething(i + j + k); in dirtyStack() 32 __block voidVoid inner = ^{ doSomething(i); }; in testFunction()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value-same-basename/ |
| H A D | main.cpp | 7 virtual void doSomething() { in doSomething() function in namesp::Virtual 15 virtual void doSomething() { in doSomething() function in Virtual 27 my_outer.doSomething(); in main() 28 my_virtual.doSomething(); in main()
|
| /llvm-project-15.0.7/clang/test/Analysis/inlining/ |
| H A 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()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | use-uncaught-exceptions.cpp | 21 bool doSomething(T t) { in doSomething() function 38 doSomething(uncaught_exception); in no_warn() 64 doSomething(std::uncaught_exception); in warn() 68 doSomething(uncaught_exception); in warn()
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | complete-arrow-dot.cpp | 2 void doSomething(); 7 void X::doSomething() { in doSomething() function in X 13 void doSomething() { in doSomething() function
|
| H A D | complete-with-annotations.cpp | 2 void doSomething(); 11 void X::doSomething() { in doSomething() function in X
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | redundant-branch-condition.cpp | 1074 void doSomething(); 1078 if (({ doSomething(); onFire; })) { in positive_gnu_expression_statement() 1092 if (doSomething(), onFire) { in positive_comma_after_condition() 1093 if (doSomething(), onFire) { in positive_comma_after_condition() 1345 if (doSomething(), onFire) { in negative_comma_after_condition() 1347 if (doSomething(), onFire) { in negative_comma_after_condition() 1362 doSomething(); in negated_in_else() 1370 doSomething(); in equality() 1378 doSomething(); in relational_operator() 1386 doSomething(); in relational_operator_reversed() [all …]
|
| H A D | too-small-loop-variable.cpp | 58 void doSomething() { in doSomething() function 66 void doSomething() { in doSomething() function 74 doSomething<long>(); in voidForLoopInstantiation() 76 doSomething<short>(); in voidForLoopInstantiation()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objcxx/objcxx-ivar-vector/ |
| H A D | main.mm | 13 -(void)doSomething; method 19 -(void)doSomething 31 [c doSomething];
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-ivar-protocols/ |
| H A D | main.m | 12 -(void)doSomething; method 18 -(void)doSomething 31 [c doSomething];
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A 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 ]; }
|
| H A D | warn-retain-block-property.m | 7 extern void doSomething(void); function 29 t.aBlock = ^{ doSomething(); }; 30 t.aBlockW = ^{ doSomething(); }; 31 t.aBlockS = ^{ doSomething(); }; 47 // CHECK-ARC: t.aBlockW = ^{ doSomething(); };
|
| H A D | protocol-qualified-class-unsupported.m | 27 static void doSomething(Class <Func> unsupportedObjectType) { function 36 doSomething([Derived self]); 37 doSomething([Derived2 self]);
|
| H A D | no-warn-unimpl-method.m | 17 -(void) doSomething; method 21 -(void) doSomething; method 25 -(void) doSomething
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A 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()
|
| H A D | return-value-guaranteed.cpp | 7 void doSomething(); 43 doSomething(); in parseFile()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/ |
| H A D | pass-to-base.cpp | 23 doSomething (A &anotherA) in doSomething() function in A 63 myB.doSomething(otherB); // Break here and get real addresses of myB and otherB. in main() 66 myB.doSomething (reallyA); // Break here and get real address of reallyA. in main()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/misc/ |
| H A D | static-assert.cpp | 38 template <class T> void doSomething(T t) { in doSomething() function 67 doSomething<A>(a); in main() 68 doSomething<B>(b); in main()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | peephole-bitcast.ll | 17 ; CHECK-NEXT: b doSomething 24 tail call void @doSomething(float %x) nounwind 31 declare void @doSomething(float)
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A 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…
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | debug-info-method-spec.cpp | 6 void doSomething(int i) { ++i; } in doSomething() function in A 10 a->doSomething(2); in foo()
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/utilities/meta/meta.detect/ |
| H A D | nonesuch.fail.cpp | 25 void doSomething (const ex::nonesuch &) {} in doSomething() function 29 doSomething({}); // expected-error{{no matching function for call to 'doSomething'}} in main()
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/weak_symbols/ |
| H A D | main.c | 5 doSomething() in doSomething() function 22 return doSomething(); in main()
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/ |
| H A D | union-fwd-decl.test | 17 extern void doSomething(ContainerPtr); 21 doSomething(c); 39 void doSomething(ContainerPtr c) {}
|