Home
last modified time | relevance | path

Searched refs:Ctxt (Results 1 – 11 of 11) sorted by relevance

/external/clang/unittests/AST/
DASTVectorTest.cpp32 Ctxt(LangOpts, SourceMgr, Idents, Sels, Builtins) {} in ASTVectorTest()
43 ASTContext Ctxt; member in clang::ast::__anon662113f60111::ASTVectorTest
49 V.insert(Ctxt, V.begin(), 0); in TEST_F()
56 auto I = V.insert(Ctxt, V.begin(), 5, 1.0); in TEST_F()
60 I = V.insert(Ctxt, V.begin() + 1, 5, 1.0); in TEST_F()
64 I = V.insert(Ctxt, V.end(), 5, 1.0); in TEST_F()
74 auto I = V.insert(Ctxt, V.begin(), IntVec.begin(), IntVec.begin()); in TEST_F()
79 I = V.insert(Ctxt, V.begin(), IntVec.begin(), IntVec.end()); in TEST_F()
83 I = V.insert(Ctxt, V.end(), IntVec.begin(), IntVec.begin()); in TEST_F()
87 I = V.insert(Ctxt, V.end(), IntVec.begin(), IntVec.end()); in TEST_F()
/external/llvm/tools/dsymutil/
DDebugMap.cpp107 YAMLContext Ctxt; in parseYAMLDebugMap() local
109 Ctxt.PrependPath = PrependPath; in parseYAMLDebugMap()
112 yaml::Input yin((*ErrOrFile)->getBuffer(), &Ctxt); in parseYAMLDebugMap()
183 if (void *Ctxt = io.getContext()) in mapping() local
184 reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM.BinaryTriple; in mapping()
194 if (void *Ctxt = io.getContext()) in mapping() local
195 reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM->BinaryTriple; in mapping()
211 const auto &Ctxt = *reinterpret_cast<YAMLContext *>(IO.getContext()); in denormalize() local
212 SmallString<80> Path(Ctxt.PrependPath); in denormalize()
220 } else if (auto ErrOrObjectFile = BinHolder.Get(Ctxt.BinaryTriple)) { in denormalize()
DDwarfLinker.cpp142 static unsigned getHashValue(const DeclContext *Ctxt) { in getHashValue()
143 return Ctxt->QualifiedNameHash; in getHashValue()
190 DeclContext *Ctxt; ///< ODR Declaration context. member
276 DeclContext *Ctxt, PatchLocation Attr);
410 DeclContext *Ctxt, PatchLocation Attr) { in noteForwardReference() argument
411 ForwardDIEReferences.emplace_back(Die, RefUnit, Ctxt, Attr); in noteForwardReference()
420 DeclContext *Ctxt; in fixupForwardReferences() local
421 std::tie(RefDie, RefUnit, Ctxt, Attr) = Ref; in fixupForwardReferences()
422 if (Ctxt && Ctxt->getCanonicalDIEOffset()) in fixupForwardReferences()
423 Attr.set(Ctxt->getCanonicalDIEOffset()); in fixupForwardReferences()
[all …]
/external/llvm/tools/bugpoint/
DBugDriver.cpp87 LLVMContext &Ctxt) { in parseInputFile() argument
89 std::unique_ptr<Module> Result = parseIRFile(Filename, Err, Ctxt); in parseInputFile()
/external/llvm/lib/Support/
DYAMLTraits.cpp29 IO::IO(void *Context) : Ctxt(Context) { in IO()
36 return Ctxt; in getContext()
40 Ctxt = Context; in setContext()
48 void *Ctxt, in Input() argument
51 : IO(Ctxt), in Input()
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp574 void *Ctxt) { in setDiagnosticHandler() argument
576 this->DiagContext = Ctxt; in setDiagnosticHandler()
/external/llvm/include/llvm/Support/
DYAMLTraits.h459 IO(void *Ctxt=nullptr);
633 void *Ctxt;
945 void *Ctxt = nullptr,
1082 Output(llvm::raw_ostream &, void *Ctxt = nullptr, int WrapColumn = 70);
/external/llvm/lib/CodeGen/
DMIRPrinter.cpp134 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { in output()
137 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { in input()
/external/llvm/docs/
DYamlIO.rst508 static void output(const MyStringType &Value, void *Ctxt,
513 static StringRef input(StringRef Scalar, void *Ctxt,
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp3308 auto *Ctxt = cast<llvm::DICompositeType>(getDeclContextDescriptor(D)); in getOrCreateStaticDataMemberDeclarationOrNull() local
3309 return CreateRecordStaticField(D, Ctxt, cast<RecordDecl>(DC)); in getOrCreateStaticDataMemberDeclarationOrNull()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10197 LLVMContext &Ctxt = *DAG->getContext(); in getLoadedType() local
10198 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8); in getLoadedType()