Home
last modified time | relevance | path

Searched refs:Proxy (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/test.support/
H A Dtest_proxy.pass.cpp20 Proxy<int> p{5}; in testProxy()
27 Proxy<int&> p{i}; in testProxy()
34 Proxy<int&> p1{i}; in testProxy()
35 Proxy<int> p2 = p1; in testProxy()
38 Proxy<int&> p3{p2}; in testProxy()
50 Proxy<int> p1{5}; in testProxy()
51 Proxy<int> p2{6}; in testProxy()
63 Proxy<int&> p5{i}; in testProxy()
72 Proxy<int&> px{x}; in testProxy()
96 Proxy<int> p1{5}; in testProxy()
[all …]
/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_iterators.h952 struct Proxy;
958 inline constexpr bool IsProxy<Proxy<T>> = true;
961 struct Proxy {
983 constexpr Proxy& operator=(Other&& other) {
998 constexpr Proxy& operator=(const Proxy& rhs) {
1007 friend constexpr bool operator==(const Proxy&, const Proxy&)
1014 friend constexpr bool operator==(const Proxy& lhs, const Proxy<U>& rhs)
1019 friend constexpr auto operator<=>(const Proxy&, const Proxy&)
1026 friend constexpr auto operator<=>(const Proxy& lhs, const Proxy<U>& rhs)
1035 struct std::basic_common_reference<Proxy<T>, Proxy<U>, TQual, UQual> {
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/
H A Dranges_robust_against_proxy_iterators.pass.cpp68 Proxy<T&> x{num}; in run_tests()
71 auto unary_pred = [](const Proxy<T&>&) { return true; }; in run_tests()
72 auto binary_func = [](const Proxy<T>&, const Proxy<T>&) -> Proxy<T> { return Proxy<T>(T()); }; in run_tests()
73 auto gen = [] { return Proxy<T>(T{42}); }; in run_tests()
/llvm-project-15.0.7/clang/test/CodeCompletion/
H A Dmember-access.cpp25 class Proxy { class
30 void test(const Proxy &p) { in test()
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.swappable/
H A Dswappable_with.compile.pass.cpp663 struct Proxy { struct
665 constexpr Proxy(A& a_) : a{&a_} {} in Proxy() function
666 friend constexpr void swap(Proxy x, Proxy y) { in swap()
670 constexpr Proxy proxy(A& a) { return Proxy{a}; } in proxy()
/llvm-project-15.0.7/polly/lib/Support/
H A DRegisterPasses.cpp701 OwningScopAnalysisManagerFunctionProxy Proxy; in createScopAnalyses() local
703 Proxy.getManager().registerPass([PIC] { \ in createScopAnalyses()
709 Proxy.getManager().registerPass( in createScopAnalyses()
711 return Proxy; in createScopAnalyses()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp755 StringRef Proxy = Results.front().Heuristic; in getProxy() local
756 if (!Proxy.consume_front("inferred from ")) in getProxy()
762 Proxy.consume_front(TempDir); in getProxy()
763 Proxy.consume_front(llvm::sys::path::get_separator()); in getProxy()
764 llvm::SmallString<32> Result = Proxy; in getProxy()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryFunction.h1929 MCSymbol *Proxy; in getOrCreateProxyIslandAccess() local
1931 Proxy = BC.Ctx->getOrCreateSymbol(Symbol->getName() + ".proxy.for." + in getOrCreateProxyIslandAccess()
1933 Islands->Proxies[&Referrer][Symbol] = Proxy; in getOrCreateProxyIslandAccess()
1934 Islands->Proxies[&Referrer][Proxy] = Symbol; in getOrCreateProxyIslandAccess()
1936 Proxy = Islands->Proxies[&Referrer][Symbol]; in getOrCreateProxyIslandAccess()
1937 return Proxy; in getOrCreateProxyIslandAccess()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1019 const MCExpr *Proxy = lowerConstant(FTRTTIProxy); in emitFunctionHeader() local
1021 const MCExpr *PCRel = MCBinaryExpr::createSub(Proxy, FnExp, OutContext); in emitFunctionHeader()