Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-consumed-analysis.cpp752 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 Drecursive-block.c16 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 Dmain.cpp7 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 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()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-uncaught-exceptions.cpp21 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 Dcomplete-arrow-dot.cpp2 void doSomething();
7 void X::doSomething() { in doSomething() function in X
13 void doSomething() { in doSomething() function
H A Dcomplete-with-annotations.cpp2 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 Dredundant-branch-condition.cpp1074 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 Dtoo-small-loop-variable.cpp58 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 Dmain.mm13 -(void)doSomething; method
19 -(void)doSomething
31 [c doSomething];
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-ivar-protocols/
H A Dmain.m12 -(void)doSomething; method
18 -(void)doSomething
31 [c doSomething];
/llvm-project-15.0.7/clang/test/SemaObjC/
H A 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 ]; }
H A Dwarn-retain-block-property.m7 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 Dprotocol-qualified-class-unsupported.m27 static void doSomething(Class <Func> unsupportedObjectType) { function
36 doSomething([Derived self]);
37 doSomething([Derived2 self]);
H A Dno-warn-unimpl-method.m17 -(void) doSomething; method
21 -(void) doSomething; method
25 -(void) doSomething
/llvm-project-15.0.7/clang/test/Analysis/
H A 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()
H A Dreturn-value-guaranteed.cpp7 void doSomething();
43 doSomething(); in parseFile()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/
H A Dpass-to-base.cpp23 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 Dstatic-assert.cpp38 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 Dpeephole-bitcast.ll17 ; 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 Dsubregisters.ll20 ; 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 Ddebug-info-method-spec.cpp6 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 Dnonesuch.fail.cpp25 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 Dmain.c5 doSomething() in doSomething() function
22 return doSomething(); in main()
/llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/
H A Dunion-fwd-decl.test17 extern void doSomething(ContainerPtr);
21 doSomething(c);
39 void doSomething(ContainerPtr c) {}

123