Searched refs:Imported (Results 1 - 20 of 20) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h119 /// \param Imported The module, whenever an inclusion directive was
130 const Module *Imported) {
141 /// \param Imported The imported module; can be null if importing failed.
145 const Module *Imported) {
357 const Module *Imported) override {
360 Imported);
363 Imported);
367 const Module *Imported) override {
368 First->moduleImport(ImportLoc, Path, Imported);
369 Second->moduleImport(ImportLoc, Path, Imported);
122 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
143 moduleImport(SourceLocation ImportLoc, ModuleIdPath Path, const Module *Imported) argument
[all...]
H A DModuleMap.h481 ModuleHeaderRole Role, bool Imported = false);
H A DPreprocessingRecord.h498 const Module *Imported) override;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DDependencyGraph.cpp53 const Module *Imported) override;
76 const Module *Imported) {
68 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
H A DDependencyFile.cpp66 const Module *Imported) override {
192 const Module *Imported) override;
302 const Module *Imported) {
294 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
H A DDiagnosticRenderer.cpp247 std::pair<SourceLocation, StringRef> Imported = SM.getModuleImportLoc(Loc);
248 if (!Imported.second.empty()) {
250 emitImportStackRecursively(Imported.first, Imported.second, SM);
H A DPrintPreprocessedOutput.cpp130 const Module *Imported) override;
322 const Module *Imported) {
326 if (Imported) {
329 OS << "@import " << Imported->getFullModuleName() << ";"
314 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTImporter.h71 /// \brief Imported, anonymous tag declarations that are missing their
278 virtual Decl *Imported(Decl *From, Decl *To);
H A DDecl.h3677 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
3680 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
3688 SourceLocation StartLoc, Module *Imported,
3694 SourceLocation StartLoc, Module *Imported,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTImporter.cpp2314 Importer.Imported(D, ToD);
2383 Importer.Imported(D, ToNamespace);
2416 return Importer.Imported(D, FoundTypedef);
2453 Importer.Imported(D, ToTypedef);
2504 return Importer.Imported(D, FoundEnum);
2527 Importer.Imported(D, D2);
2553 return Importer.Imported(D, ImportedDef);
2616 return Importer.Imported(D, FoundDef);
2676 Importer.Imported(D, D2);
2713 return Importer.Imported(
5912 Decl *ASTImporter::Imported(Decl *From, Decl *To) { function in class:ASTImporter
[all...]
H A DDecl.cpp4157 Module *Imported,
4159 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
4162 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
4169 Module *Imported, SourceLocation EndLoc)
4170 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
4177 SourceLocation StartLoc, Module *Imported,
4181 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
4186 Module *Imported,
4189 ImportDecl(DC, StartLoc, Imported, EndLoc);
4156 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
4168 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, SourceLocation EndLoc) argument
4176 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
4184 CreateImplicit(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, SourceLocation EndLoc) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp70 const Module *Imported) override;
181 const Module *Imported) {
185 if (Imported) {
187 std::make_pair(HashLoc.getRawEncoding(), Imported));
173 InclusionDirective(SourceLocation HashLoc, const Token & , StringRef , bool , CharSourceRange , const FileEntry * , StringRef , StringRef , const Module *Imported) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPreprocessor.cpp783 Module *Imported = nullptr; local
785 Imported = TheModuleLoader.loadModule(ModuleImportLoc,
789 if (Imported)
790 makeModuleVisible(Imported, ModuleImportLoc);
793 Callbacks->moduleImport(ModuleImportLoc, ModuleImportPath, Imported);
H A DPreprocessingRecord.cpp443 const Module *Imported) {
478 (bool)Imported,
434 InclusionDirective( SourceLocation HashLoc, const clang::Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
H A DPPDirectives.cpp1719 ModuleLoadResult Imported = TheModuleLoader.loadModule( local
1722 assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
1725 if (Imported)
1727 else if (Imported.isMissingExpected()) {
H A DModuleMap.cpp801 ModuleHeaderRole Role, bool Imported) {
816 if (!Imported || isCompilingModuleHeader) {
800 addHeader(Module *Mod, Module::Header Header, ModuleHeaderRole Role, bool Imported) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTImporter.cpp754 ASTImporter::Imported(from, to);
814 ClangASTImporter::Minion::Imported (clang::Decl *from, clang::Decl *to) function in class:ClangASTImporter::Minion
834 log->Printf(" [ClangASTImporter] Imported (%sDecl*)%p, named %s (from (Decl*)%p), metadata 0x%" PRIx64,
841 log->Printf(" [ClangASTImporter] Imported (%sDecl*)%p (from (Decl*)%p), metadata 0x%" PRIx64,
868 direct_completer->ASTImporter::Imported(origin_iter->second.decl, to);
968 return clang::ASTImporter::Imported(from, to);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderInternals.h263 bool Imported; member in struct:clang::serialization::reader::HeaderFileInfoTrait::internal_key_type
H A DASTReader.cpp1518 FE->getName(), /*Imported*/ false};
1533 if (!Key.Imported)
1561 ikey.Imported = true;
1607 if (key.Imported)
1613 ModMap.addHeader(Mod, H, HeaderRole, /*Imported*/true);
4052 if (Module *Imported = getSubmodule(Import.ID)) {
4053 makeModuleVisible(Imported, Module::AllVisible,
4055 PP.makeModuleVisible(Imported, Import.ImportLoc);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTImporter.h294 clang::Decl *Imported(clang::Decl *from, clang::Decl *to) override;

Completed in 216 milliseconds