Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp907 ModuleDeclState.handleSemi(); in Lex()
916 ModuleDeclState.handleExport(); in Lex()
919 ModuleDeclState.handleColon(); in Lex()
922 ModuleDeclState.handlePeriod(); in Lex()
941 ModuleDeclState.handleModule(); in Lex()
945 ModuleDeclState.handleIdentifier(Result.getIdentifierInfo()); in Lex()
946 if (ModuleDeclState.isModuleCandidate()) in Lex()
952 ModuleDeclState.handleMisc(); in Lex()
1149 if (Result.is(tok::colon) && ModuleDeclState.isNamedModule()) { in LexAfterModuleImport()
1150 std::string Name = ModuleDeclState.getPrimaryName().str(); in LexAfterModuleImport()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h495 enum ModuleDeclState : int { enum
592 ModuleDeclState State = NotAModuleDecl;
596 ModuleDeclSeq ModuleDeclState; variable
2355 bool isInNamedModule() const { return ModuleDeclState.isNamedModule(); } in isInNamedModule()
2362 return ModuleDeclState.isNamedInterface(); in isInNamedInterfaceUnit()
2367 StringRef getNamedModuleName() const { return ModuleDeclState.getName(); } in getNamedModuleName()
2373 return ModuleDeclState.isImplementationUnit(); in isInImplementationUnit()