Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Lex/
H A DPreprocessor.cpp897 ModuleImportPath.clear(); in HandleIdentifier()
980 ModuleImportPath.clear(); in Lex()
1173 if (ModuleImportPath.empty() && getLangOpts().CPlusPlusModules) { in LexAfterModuleImport()
1269 ModuleImportPath.push_back(std::make_pair(Result.getIdentifierInfo(), in LexAfterModuleImport()
1286 if (ModuleImportPath.empty() || Result.is(tok::eof)) in LexAfterModuleImport()
1309 for (auto &Piece : ModuleImportPath) { in LexAfterModuleImport()
1314 SourceLocation FirstPathLoc = ModuleImportPath[0].second; in LexAfterModuleImport()
1315 ModuleImportPath.clear(); in LexAfterModuleImport()
1316 ModuleImportPath.push_back( in LexAfterModuleImport()
1323 ModuleImportPath, in LexAfterModuleImport()
[all …]
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPreprocessor.h318 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> ModuleImportPath; variable