Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp911 ModuleDeclState.handleSemi(); in Lex()
920 ModuleDeclState.handleExport(); in Lex()
923 ModuleDeclState.handleColon(); in Lex()
926 ModuleDeclState.handlePeriod(); in Lex()
945 ModuleDeclState.handleModule(); in Lex()
949 ModuleDeclState.handleIdentifier(Result.getIdentifierInfo()); in Lex()
950 if (ModuleDeclState.isModuleCandidate()) in Lex()
956 ModuleDeclState.handleMisc(); in Lex()
1158 if (Result.is(tok::colon) && ModuleDeclState.isNamedModule()) { in LexAfterModuleImport()
1159 std::string Name = ModuleDeclState.getPrimaryName().str(); in LexAfterModuleImport()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h515 enum ModuleDeclState : int { enum
612 ModuleDeclState State = NotAModuleDecl;
616 ModuleDeclSeq ModuleDeclState; variable
2387 bool isInNamedModule() const { return ModuleDeclState.isNamedModule(); } in isInNamedModule()
2394 return ModuleDeclState.isNamedInterface(); in isInNamedInterfaceUnit()
2399 StringRef getNamedModuleName() const { return ModuleDeclState.getName(); } in getNamedModuleName()
2405 return ModuleDeclState.isImplementationUnit(); in isInImplementationUnit()