Home
last modified time | relevance | path

Searched refs:Internal (Results 1 – 25 of 94) sorted by relevance

1234

/llvm-project-15.0.7/clang/tools/diagtool/
H A DTreeView.cpp28 bool Internal; member in TreePrinter
30 TreePrinter(llvm::raw_ostream &out) : out(out), Internal(false) {} in TreePrinter()
77 if (Internal) { in printGroup()
141 bool Internal = false; in run() local
145 Internal = true; in run()
174 TP.Internal = Internal; in run()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dattr-weak.cpp34 namespace { class Internal {}; } class
35 template struct Test7<Internal>;
40 __attribute__((weak)) auto Test9 = Internal(); // expected-error {{weak declaration cannot have int…
H A Dattr-selectany.cpp38 namespace { class Internal {}; } class
39 __declspec(selectany) auto x8 = Internal(); // expected-error {{'selectany' can only be applied to …
H A Dundefined-internal.cpp106 namespace { struct Internal; }
109 A<Internal> a; in test()
110 a.value = A<Internal>::two; in test()
H A Ddllexport.cpp18 namespace { struct Internal {}; } struct
75 __declspec(dllexport) Internal InternalTypeGlobal; // expected-error{{'InternalTypeGlobal' must hav…
81 __declspec(dllexport) auto InternalAutoTypeGlobal = Internal(); // expected-error{{'InternalAutoTyp…
132 template<typename T> __declspec(dllexport) Internal InternalTypeVarTmpl; // expected-error{{'Intern…
138 template<typename T> __declspec(dllexport) auto InternalAutoTypeVarTmpl = Internal(); // expected-e…
242 __declspec(dllexport) Internal internalRetFunc(); // expected-error{{'internalRetFunc' must have ex…
300 template<typename T> __declspec(dllexport) Internal internalRetFuncTmpl(); // expected-error{{'inte…
H A Ddllimport.cpp20 namespace { struct Internal {}; } struct
129 __declspec(dllimport) Internal InternalTypeGlobal; // expected-error{{'InternalTypeGlobal' must hav…
135 __declspec(dllimport) auto InternalAutoTypeGlobal = Internal(); // expected-error{{'InternalAutoTyp…
223 template<typename T> __declspec(dllimport) Internal InternalTypeVarTmpl; // expected-error{{'Intern…
229 template<typename T> __declspec(dllimport) auto InternalAutoTypeVarTmpl = Internal(); // expected-e…
380 __declspec(dllimport) Internal internalRetFunc(); // expected-error{{'internalRetFunc' must have ex…
474 template<typename T> __declspec(dllimport) Internal internalRetFuncTmpl(); // expected-error{{'inte…
/llvm-project-15.0.7/clang/test/Modules/
H A Dusing-directive-redecl.cpp13 namespace Internal { namespace
23 namespace Internal { namespace
33 namespace Internal { namespace
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dstatic-member-variable-explicit-specialization.cpp92 template<typename T> struct Internal { static int a; }; argument
93 template<typename T> int Internal<T>::a = foo();
95 int *use_internal_a = &Internal<int>::a;
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/abseil/
H A Dduration-factory-scale.rst15 // Original - Internal multiplication.
23 // Original - Internal division.
/llvm-project-15.0.7/mlir/include/mlir/TableGen/
H A DTrait.h41 Internal, enumerator
92 static bool classof(const Trait *t) { return t->getKind() == Kind::Internal; } in classof()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DInfiniteLoopCheck.cpp23 loopEndingStmt(internal::Matcher<Stmt> Internal) { in loopEndingStmt() argument
26 mapAnyOf(breakStmt, returnStmt, gotoStmt, cxxThrowExpr).with(Internal), in loopEndingStmt()
27 callExpr(Internal, callee(functionDecl(isNoReturn()))))); in loopEndingStmt()
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/
H A Dcfi-direct-call.ll42 ; Internal function with default visibility gets routed through the jump table
46 ; Internal function with hidden visibility defined outside the module
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp347 SymbolNameSet Internal, External; member
372 for (auto &InternalDep : BID.Internal) in operator []()
373 BTDCacheVal.Internal.insert(InternalDep); in operator []()
404 BIDCacheVal.Internal.insert(getInternedName(Tgt)); in getBlockImmediateDeps()
479 if (SymDeps.External.empty() && SymDeps.Internal.empty()) in computeNamedSymbolDependencies()
485 if (!SymDeps.Internal.empty()) in computeNamedSymbolDependencies()
486 InternalNamedSymbolDeps[SymName] = SymDeps.Internal; in computeNamedSymbolDependencies()
501 for (auto &S : BDeps.Internal) in computeNamedSymbolDependencies()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/abseil/Inputs/absl/flags/
H A Dinternal-file.h1 #define USE_INTERNAL(x) absl::strings_internal::Internal##x()
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-not/
H A Dnot-calls-cd.txt1 # Internal cd always succeeds.
H A Dnot-calls-export.txt1 # Internal "export" always succeeds.
H A Dnot-calls-echo.txt1 # Internal "echo" always succeeds.
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/abseil/
H A Dno-internal-dependencies.cpp42 #define USE_EXTERNAL(x) absl::strings_internal::Internal##x()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclBase.cpp1636 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { in buildLookupImpl() argument
1651 makeDeclVisibleInContextImpl(ND, Internal); in buildLookupImpl()
1658 buildLookupImpl(InnerCtx, Internal); in buildLookupImpl()
1861 void DeclContext::makeDeclVisibleInContextWithFlags(NamedDecl *D, bool Internal, in makeDeclVisibleInContextWithFlags() argument
1868 ->makeDeclVisibleInContextWithFlags(D, Internal, Recoverable); in makeDeclVisibleInContextWithFlags()
1892 makeDeclVisibleInContextImpl(D, Internal); in makeDeclVisibleInContextWithFlags()
1901 makeDeclVisibleInContextWithFlags(D, Internal, Recoverable); in makeDeclVisibleInContextWithFlags()
1910 void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D, bool Internal) { in makeDeclVisibleInContextImpl() argument
1922 if (!Internal) in makeDeclVisibleInContextImpl()
1931 if (Internal) { in makeDeclVisibleInContextImpl()
/llvm-project-15.0.7/llvm/test/Analysis/LazyCallGraph/
H A Dalias.ll33 ; Internal alias is not reachable.
/llvm-project-15.0.7/mlir/lib/TableGen/
H A DTrait.cpp33 return Trait(Kind::Internal, def); in create()
/llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/
H A DGPUOpsLowering.cpp38 LLVM::Linkage::Internal, name, /*value=*/Attribute(), in matchAndRewrite()
223 /*isConstant=*/true, LLVM::Linkage::Internal, stringConstName, in matchAndRewrite()
322 /*isConstant=*/true, LLVM::Linkage::Internal, stringConstName, in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Conversion/GPUToVulkan/
H A DConvertLaunchFuncToVulkanCalls.cpp365 shaderName, LLVM::Linkage::Internal); in createEntryPointNameConstant()
383 LLVM::Linkage::Internal); in translateVulkanLaunchCall()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dexports_so.txt47 # Internal functions exported for testing purposes.
/llvm-project-15.0.7/libc/cmake/modules/
H A DLLVMLibCCheckCpuFeatures.cmake34 # Internal helpers and utilities.

1234