| /llvm-project-15.0.7/llvm/test/MC/X86/ |
| H A D | macho-reloc-errors-x86_64.s | 3 mov %rax, thing 4 mov %rax, thing@GOT-thing2@GOT 5 mov %rax, (thing-thing2)(%rip) 6 mov %rax, thing-thing 7 mov %rax, thing-thing2 8 mov %rax, thing@PLT 9 jmp thing@PLT 10 mov %rax, thing@TLVP
|
| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | alias-templates.cpp | 26 typedef T thing; typedef 27 typedef decltype(val(make<thing>())) inner_ptr; 41 template<typename T> struct thing { struct 44 typedef traits<thing<inner>> traits_type; 46 template<typename U> using rebind = thing<U>; 49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); } in ~thing() 54 friend inner_ptr val(const thing &t) { return t.val; } in val() 61 template<> void traits<thing<bool>>::free(bool&) {} in free() 64 typedef X::traits<X::thing<int>> itt; argument 66 itt::thing::traits_type itr; [all …]
|
| H A D | current-instantiation.cpp | 242 static const int thing = 0; member 243 N<thing> data(); 244 N<thing> foo(); 246 template<typename T> N<X<T>::thing> X<T>::data() {} in data()
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/llgdb-tests/ |
| H A D | foreach.m | 10 // DEBUGGER: po thing 19 for (NSString *thing in things) { 20 NSLog (@"%@", thing); 24 for (NSString *thing in things) { 25 NSLog (@"%@", thing);
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | check-do-forall.cpp | 587 GatherSymbolsFromExpression(mask.thing.thing.value())}; in CheckMaskIsPure() 612 CheckNoCollisions(GatherSymbolsFromExpression(expr.thing.thing.value()), in HasNoReferences() 615 expr.thing.thing.value().source); in HasNoReferences() 625 mask.thing.thing.value().source); in CheckMaskDoesNotReferenceLocal() 636 expr.thing.thing.value().source); in CheckExprDoesNotReferenceLocal() 683 const parser::Expr &expr{intExpr->thing.thing.value()}; in CheckConcurrentHeader() 997 context_.CheckIndexVarRedefine(newunit->v.thing.thing); in Leave() 1039 context_.CheckIndexVarRedefine(scalar.thing.thing); in Leave() 1046 context_.CheckIndexVarRedefine(size->v.thing.thing); in Leave() 1052 const parser::Name &name{control.name.thing.thing}; in Leave() [all …]
|
| H A D | check-data.cpp | 28 auto name{std::get<parser::DataImpliedDo::Bounds>(x.t).name.thing.thing}; in Enter() 39 auto name{std::get<parser::DataImpliedDo::Bounds>(x.t).name.thing.thing}; in Leave() 187 auto source{designator->thing.value().source}; in Leave()
|
| H A D | data-to-inits.cpp | 168 auto name{bounds.name.thing.thing}; in Scan() 170 GetExpr(exprAnalyzer_.context(), bounds.lower.thing.thing)}; in Scan() 172 GetExpr(exprAnalyzer_.context(), bounds.upper.thing.thing)}; in Scan() 174 ? GetExpr(exprAnalyzer_.context(), bounds.step->thing.thing) in Scan() 229 &var) { return Scan(var.thing.value()); }, in Scan()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | region-store.c | 10 int thing = (int []){0, 1}[index]; in compoundLiteralTest() 11 printf("thing: %i\n", thing); in compoundLiteralTest() 19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]; in compoundLiteralTest2() 20 printf("thing: %i\n", thing); in compoundLiteralTest2()
|
| /llvm-project-15.0.7/clang/test/CXX/class/class.friend/ |
| H A D | p1.cpp | 75 friend int Unknown::thing(); // expected-error {{use of undeclared identifier}} 76 friend int friendfunc(), Unknown::thing(); // expected-error {{use of undeclared identifier}} 77 friend int friendfunc(), Unknown::thing() : 4; // expected-error {{use of undeclared identifier}}
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | no-warn-composite-pointer-type.cpp | 5 void Foo(int **thing, const int **thingMax) in Foo() argument 7 if ((thing + 3) > thingMax) in Foo()
|
| H A D | warn-missing-noreturn.cpp | 115 template <typename T> void thingy(T thing) { in thingy() argument 116 thing.wibble(); in thingy()
|
| H A D | member-init.cpp | 87 struct thing {}; struct 89 another() : r(thing()) {} // expected-error {{binds to a temporary object}} in another()
|
| H A D | warn-static-function-inheader.h | 1 static void thing(void) { // expected-warning {{'static' function 'thing' declared in header file s… in thing() function
|
| H A D | warn-static-function-inheader.cpp | 10 thing(); in foo()
|
| /llvm-project-15.0.7/flang/test/Lower/forall/ |
| H A D | forall-allocatable-2.f90 | 11 type(t) :: thing local 13 thing%arr(i) = a1(i)
|
| H A D | forall-2.f90 | 17 type(t) :: thing(:) local 33 type(t) :: thing(:) local
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter-tests/memvars/ |
| H A D | const-branch.c | 20 void thing(int x) { in thing() function 42 thing(param); in fun()
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | MicrosoftExtensions.cpp | 155 struct thing { struct 159 struct inher : public thing<empty, uuid2> {}; 163 const struct _GUID *x = &__uuidof(thing<uuid, inher>); 164 const struct _GUID *y = &__uuidof(thing<uuid2, uuid>); // expected-error{{cannot call operator __uu… 165 thing<uuid2, uuid> thing_obj = thing<uuid2, uuid>();
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-cov/gcov/Inputs/ |
| H A D | test.cpp | 68 A thing; in main() local 70 thing.B(); in main()
|
| H A D | test_no_gcda.cpp.gcov | 73 #####: 68: A thing; 75 #####: 70: thing.B();
|
| H A D | test_no_options.cpp.gcov | 73 1: 68: A thing; 75 4294967296: 70: thing.B();
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_case.py | 606 thing = object() 607 self.assertIs(thing, thing) 611 thing, 615 thing = object() 616 self.assertIsNot(thing, object()) 620 thing, 621 thing) 624 thing = [] 627 thing, dict) 630 thing = [] [all …]
|
| /llvm-project-15.0.7/llvm/test/FileCheck/ |
| H A D | match-full-lines.txt | 23 a random thing 51 // ERROR:a random thing
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.h | 123 T thing(PyRefType::Owned, obj); in Take() 124 assert(thing.IsValid()); in Take() 125 return thing; in Take() 141 T thing(PyRefType::Borrowed, obj); in Retain() 142 assert(thing.IsValid()); in Retain() 143 return thing; in Retain()
|
| /llvm-project-15.0.7/flang/include/flang/Semantics/ |
| H A D | expression.h | 85 Set(x.thing); in Set() 179 auto result{Analyze(x.thing)}; in Analyze() 193 auto result{Analyze(x.thing)}; in Analyze() 208 auto result{Analyze(x.thing)}; in Analyze() 217 auto result{Analyze(x.thing)}; in Analyze() 226 auto result{Analyze(x.thing)}; in Analyze()
|