Home
last modified time | relevance | path

Searched refs:ModuleImportPath (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp879 ModuleImportPath.clear(); in HandleIdentifier()
950 ModuleImportPath.clear(); in Lex()
1139 if (ModuleImportPath.empty() && getLangOpts().CPlusPlusModules) { in LexAfterModuleImport()
1234 ModuleImportPath.push_back(std::make_pair(Result.getIdentifierInfo(), in LexAfterModuleImport()
1251 if (ModuleImportPath.empty() || Result.is(tok::eof)) in LexAfterModuleImport()
1274 for (auto &Piece : ModuleImportPath) { in LexAfterModuleImport()
1279 SourceLocation FirstPathLoc = ModuleImportPath[0].second; in LexAfterModuleImport()
1280 ModuleImportPath.clear(); in LexAfterModuleImport()
1281 ModuleImportPath.push_back( in LexAfterModuleImport()
1288 ModuleImportPath, in LexAfterModuleImport()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h294 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> ModuleImportPath; variable