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.cpp938 ModuleDeclState.handleSemi(); in Lex()
949 ModuleDeclState.handleExport(); in Lex()
952 ModuleDeclState.handleColon(); in Lex()
955 ModuleDeclState.handlePeriod(); in Lex()
976 ModuleDeclState.handleModule(); in Lex()
980 ModuleDeclState.handleIdentifier(Result.getIdentifierInfo()); in Lex()
981 if (ModuleDeclState.isModuleCandidate()) in Lex()
987 ModuleDeclState.handleMisc(); in Lex()
1189 if (Result.is(tok::colon) && ModuleDeclState.isNamedModule()) { in LexAfterModuleImport()
1190 std::string Name = ModuleDeclState.getPrimaryName().str(); in LexAfterModuleImport()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h537 enum ModuleDeclState : int { enum
636 ModuleDeclState State = NotAModuleDecl;
640 ModuleDeclSeq ModuleDeclState; variable
2462 bool isInNamedModule() const { return ModuleDeclState.isNamedModule(); } in isInNamedModule()
2469 return ModuleDeclState.isNamedInterface(); in isInNamedInterfaceUnit()
2474 StringRef getNamedModuleName() const { return ModuleDeclState.getName(); } in getNamedModuleName()
2480 return ModuleDeclState.isImplementationUnit(); in isInImplementationUnit()