| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | cxx1z-decomposition.cpp | 31 template<typename T> T &make(); 34 auto [a1, a2] = make<A>(); 40 auto [b1, b2] = make<B>(); 42 auto &[c1, c2] = make<C>(); 44 auto [d1, d2] = make<D>(); 46 auto [e1, e2] = make<E>(); 92 auto [b1, b2] = make<B>(); in test_locals() 122 static auto [x1, x2] = make<A>(); in test_static_simple() 138 static auto [x1, x2] = make<B>(); in test_static_tuple()
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/ |
| H A D | test_from_cmd.py | 25 make = make_args(tmpdir) + ['build_regular'] 26 outdir = self.run_analyzer(tmpdir, [], make) 31 make = make_args(tmpdir) + ['build_clean'] 32 outdir = self.run_analyzer(tmpdir, [], make) 37 make = make_args(tmpdir) + ['build_clean'] 50 make = make_args(tmpdir) + ['build_regular'] 53 make) 60 make = make_args(tmpdir) + ['build_regular'] 64 make) 71 make = make_args(tmpdir) + ['build_regular'] [all …]
|
| H A D | test_create_cdb.py | 18 make = make_args(tmpdir) + args 20 ['intercept-build', '--cdb', result] + make) 38 make = make_args(tmpdir) + ['build_regular'] 40 '--override-compiler'] + make) 57 'env', '-'] + make) 70 make = make_args(tmpdir) + ['build_broken'] 72 ['intercept-build', '--cdb', result] + make) 81 make = make_args(tmpdir) + [target] 83 ['intercept-build', '--cdb', result] + make) 100 make = make_args(tmpdir) + [target] [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/deque/deque.modifiers/ |
| H A D | insert_iter_iter.pass.cpp | 28 make(int size, int start = 0 ) in make() function 114 C c2 = make<C>(M); in testN() 123 C c2 = make<C>(M); in testN() 132 C c2 = make<C>(M); in testN() 141 C c2 = make<C>(M); in testN() 150 C c2 = make<C>(M); in testN() 159 C c2 = make<C>(M); in testN() 194 C c2 = make<C>(M); in testNI() 203 C c2 = make<C>(M); in testNI() 212 C c2 = make<C>(M); in testNI() [all …]
|
| H A D | insert_size_value.pass.cpp | 24 make(int size, int start = 0 ) in make() function 71 C c1 = make<C>(N, start); in testN() 79 C c1 = make<C>(N, start); in testN() 87 C c1 = make<C>(N, start); in testN() 95 C c1 = make<C>(N, start); in testN() 103 C c1 = make<C>(N, start); in testN() 118 C c = make<C>(20); in self_reference_test()
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DLL.cpp | 593 lookups.push_back(make<LookupChunk>(c)); in create() 594 addresses.push_back(make<LookupChunk>(c)); in create() 649 auto *a = make<DelayAddressChunk>(t); in create() 657 names.push_back(make<LookupChunk>(c)); in create() 672 addresses.push_back(make<NullChunk>(8)); in create() 673 names.push_back(make<NullChunk>(8)); in create() 677 auto *mh = make<NullChunk>(8); in create() 710 return make<ThunkChunkX64>(s, tailMerge); in newThunkChunk() 712 return make<ThunkChunkX86>(s, tailMerge); in newThunkChunk() 714 return make<ThunkChunkARM>(s, tailMerge); in newThunkChunk() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/ |
| H A D | count.pass.cpp | 134 m.insert ( V::make ( 5 )); in main() 135 m.insert ( V::make ( 5 )); in main() 136 m.insert ( V::make ( 5 )); in main() 137 m.insert ( V::make ( 5 )); in main() 138 m.insert ( V::make ( 7 )); in main() 139 m.insert ( V::make ( 7 )); in main() 140 m.insert ( V::make ( 7 )); in main() 141 m.insert ( V::make ( 9 )); in main() 142 m.insert ( V::make ( 9 )); in main()
|
| /llvm-project-15.0.7/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
| H A D | p5-cxx0x.cpp | 97 template<typename T> T make(); 98 template<int N, bool OK> S<N, OK> make(); 101 decltype(make<0, false>()) *p1; // ok 102 decltype((make<1, false>())) *p2; // ok 105 decltype(123, make<2, false>()) *p3; // expected-note {{here}} 107 decltype(consume(make<3, false>())) *p4; // expected-note {{here}} 109 decltype(make<decltype(make<4, false>())>()) *p5; // ok
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | cxx1z-copy-omission.cpp | 18 Noncopyable make(int kind = 0) { in make() function 23 case 3: return make(); in make() 38 Noncopyable nc1 = make(); 75 auto lambda = [a = make()] {}; in test_expressions() 80 take(make()); in test_expressions() 121 Noncopyable cond1 = b ? Noncopyable() : make(); in test_expressions() 138 const volatile Noncopyable cv_difference2 = make(); in test_expressions() 150 AsMember() : member(make()) {} in AsMember() 154 AsBase() : Noncopyable(make()) {} // expected-error {{deleted}} in AsBase() 158 static AsDelegating make(int); [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Demangle/ |
| H A D | ItaniumDemangle.h | 2732 Std = make<NameType>("std"); in parseUnscopedName() 2925 return make<NameType>(Name); in parseSourceName() 3273 return make<DtorName>(Result); in parseDestructorName() 3433 N = make<AbiTagAttr>(N, SN); in parseAbiTags() 3805 return make<NameType>("int"); in parseType() 3853 return make<NameType>("..."); in parseType() 4228 return make<BoolExpr>(0); in parseExprPrimary() 4230 return make<BoolExpr>(1); in parseExprPrimary() 4317 return make<LambdaExpr>(T); in parseExprPrimary() 4476 return make<SubobjectExpr>( in parseSubobjectExpr() [all …]
|
| /llvm-project-15.0.7/libcxxabi/src/demangle/ |
| H A D | ItaniumDemangle.h | 2732 Std = make<NameType>("std"); in parseUnscopedName() 2925 return make<NameType>(Name); in parseSourceName() 3273 return make<DtorName>(Result); in parseDestructorName() 3433 N = make<AbiTagAttr>(N, SN); in parseAbiTags() 3805 return make<NameType>("int"); in parseType() 3853 return make<NameType>("..."); in parseType() 4228 return make<BoolExpr>(0); in parseExprPrimary() 4230 return make<BoolExpr>(1); in parseExprPrimary() 4317 return make<LambdaExpr>(T); in parseExprPrimary() 4476 return make<SubobjectExpr>( in parseSubobjectExpr() [all …]
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 27 echo. qthelp to make HTML files and a qthelp project 29 echo. epub to make an epub 31 echo. text to make text files 32 echo. man to make manual pages 33 echo. texinfo to make Texinfo files [all …]
|
| /llvm-project-15.0.7/clang/docs/analyzer/ |
| H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 27 echo. qthelp to make HTML files and a qthelp project 29 echo. epub to make an epub 31 echo. text to make text files 32 echo. man to make manual pages 33 echo. texinfo to make Texinfo files [all …]
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 27 echo. qthelp to make HTML files and a qthelp project 29 echo. epub to make an epub 31 echo. text to make text files 32 echo. man to make manual pages 33 echo. texinfo to make Texinfo files [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/docs/ |
| H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 27 echo. qthelp to make HTML files and a qthelp project 29 echo. epub to make an epub 31 echo. text to make text files 32 echo. man to make manual pages 33 echo. texinfo to make Texinfo files [all …]
|
| /llvm-project-15.0.7/lld/docs/ |
| H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 27 echo. qthelp to make HTML files and a qthelp project 29 echo. epub to make an epub 31 echo. text to make text files 32 echo. man to make manual pages 33 echo. texinfo to make Texinfo files [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.spec/temp.explicit/ |
| H A D | p12.cpp | 18 static Temp<A::Public> make() { return Temp<A::Public>(); } in make() function in test1::Temp 25 template class Temp<A::Private> Temp<int>::make(); 39 static Temp<A::Public> make(); 46 template <> class Temp<A::Private> Temp<int>::make() { in make() function in test2::Temp 52 static Temp<A::Private> make() { // expected-error {{is a private member}} in make() function in test2::Temp
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | Writer.cpp | 739 in.header->addLoadCommand(make<LCDyldInfo>( in createLoadCommands() 766 uuidCommand = make<LCUuid>(); in createLoadCommands() 934 make<BitcodeBundleSection>(); in createOutputSections() 938 make<PageZeroSection>(); in createOutputSections() 1209 in.header = make<MachHeaderSection>(); in createSyntheticSections() 1216 in.rebase = make<RebaseSection>(); in createSyntheticSections() 1217 in.binding = make<BindingSection>(); in createSyntheticSections() 1220 in.exports = make<ExportSection>(); in createSyntheticSections() 1221 in.got = make<GotSection>(); in createSyntheticSections() 1224 in.stubs = make<StubsSection>(); in createSyntheticSections() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.ops/ |
| H A D | count.pass.cpp | 149 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 )); in main() 150 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 )); in main() 151 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 )); in main() 152 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 )); in main() 153 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 )); in main() 154 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 )); in main() 155 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 )); in main() 156 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 )); in main() 157 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 )); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/set/ |
| H A D | count.pass.cpp | 138 m.insert ( V::make ( 5 )); in main() 139 m.insert ( V::make ( 6 )); in main() 140 m.insert ( V::make ( 7 )); in main() 141 m.insert ( V::make ( 8 )); in main() 142 m.insert ( V::make ( 9 )); in main() 143 m.insert ( V::make ( 10 )); in main() 144 m.insert ( V::make ( 11 )); in main() 145 m.insert ( V::make ( 12 )); in main()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | InputFiles.cpp | 83 return make<SharedFile>(mb); in createObjectFile() 84 return make<ObjFile>(mb, archiveName); in createObjectFile() 326 auto *info = make<WasmSymbolInfo>(); in addLegacyIndirectFunctionTableIfNeeded() 459 customSec = make<InputSection>(section, this); in parse() 480 seg = make<MergeInputChunk>(s, this); in parse() 482 seg = make<InputSegment>(s, this); in parse() 508 tables.emplace_back(make<InputTable>(t, this)); in parse() 512 globals.emplace_back(make<InputGlobal>(g, this)); in parse() 614 return make<SectionSymbol>(flags, section, this); in createDefined() 619 return make<DefinedTag>(name, flags, this, tag); in createDefined() [all …]
|
| /llvm-project-15.0.7/lldb/scripts/lldb-test-qemu/ |
| H A D | setup.sh | 55 make -j`getconf _NPROCESSORS_ONLN` 70 make mrproper 77 make O=../linux.build/arm ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- \ 81 make -j`getconf _NPROCESSORS_ONLN` O=../linux.build/arm ARCH=arm \ 88 make O=../linux.build/arm64 ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \ 92 make -j`getconf _NPROCESSORS_ONLN` O=../linux.build/arm64 ARCH=arm64 \
|
| /llvm-project-15.0.7/clang/test/PCH/ |
| H A D | implicitly-deleted.cpp | 14 template<typename T> T make(); 15 template<typename T> void doit(decltype(T(make<const T&>()))*) { T(make<const T&>()); } in doit() 16 template<typename T> void doit(...) { T(make<T&&>()); } in doit()
|
| H A D | cxx1y-default-initializer.cpp | 18 template<typename T> constexpr A make() { return A {}; } in make() function 19 template<typename T> constexpr A make(T t) { return A { t }; } in make() function 46 static_assert(make<int>().z == 3, ""); 47 static_assert(make<int>(12).z == 15, "");
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.ops/ |
| H A D | count.pass.cpp | 164 m [ PC::make(5) ] = 5; in main() 165 m [ PC::make(6) ] = 6; in main() 166 m [ PC::make(7) ] = 7; in main() 167 m [ PC::make(8) ] = 8; in main() 168 m [ PC::make(9) ] = 9; in main() 169 m [ PC::make(10) ] = 10; in main() 170 m [ PC::make(11) ] = 11; in main() 171 m [ PC::make(12) ] = 12; in main()
|