Home
last modified time | relevance | path

Searched refs:IsModule (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/flang/lib/Semantics/
Dprogram-tree.h73 bool IsModule() const; // Module or Submodule
Dprogram-tree.cpp125 bool ProgramTree::IsModule() const { in IsModule() function in Fortran::semantics::ProgramTree
Dtools.cpp52 start, [](const Scope &scope) { return scope.IsModule(); }); in FindModuleContaining()
492 return symbol.owner().IsModule() && in IsBuiltinDerivedType()
Dresolve-names.cpp2991 if (outer.IsModule() && !attrs.test(Attr::PRIVATE)) { in Post()
3325 if (!NonDerivedTypeScope().IsModule()) { // C817 in Pre()
3847 if (!currScope().parent().IsModule()) { in Pre()
5445 if (scope.IsModule()) { in Pre()
5935 if (!currScope().IsModule()) { // C869 in Pre()
6377 if (node.IsModule()) { in ResolveSpecificationParts()
6394 node.IsModule() ? SubprogramKind::Module : SubprogramKind::Internal}; in AddSubpNames()
Dcheck-declarations.cpp312 if (symbol.owner().IsModule() && IsAutomatic(symbol)) { in Check()
749 entryScope->parent().IsModule() || in CheckSubprogram()
Dcheck-do-forall.cpp320 if (symbol.GetUltimate().owner().IsModule() && in fromScope()
Druntime-type-info.cpp346 if (distinctName == typeName && scope.IsModule()) { in DescribeType()
/external/llvm-project/clang/include/clang/Serialization/
DASTWriter.h480 void WritePreprocessor(const Preprocessor &PP, bool IsModule);
507 bool IsModule);
/external/clang/include/clang/Serialization/
DASTWriter.h433 void WritePreprocessor(const Preprocessor &PP, bool IsModule);
459 bool IsModule);
/external/clang/lib/Serialization/
DASTWriter.cpp2109 static bool shouldIgnoreMacro(MacroDirective *MD, bool IsModule, in shouldIgnoreMacro() argument
2115 if (IsModule) { in shouldIgnoreMacro()
2129 void ASTWriter::WritePreprocessor(const Preprocessor &PP, bool IsModule) { in WritePreprocessor() argument
2149 PP.Diag(SourceLocation(), diag::warn_module_uses_date_time) << IsModule; in WritePreprocessor()
2177 if (shouldIgnoreMacro(MD, IsModule, PP)) in WritePreprocessor()
3142 bool IsModule; member in __anon84a3a1ce0611::ASTIdentifierTableTrait
3153 (IsModule ? II->hasRevertedBuiltin() : II->getObjCOrBuiltinID()) || in isInterestingIdentifier()
3172 IdentifierResolver &IdResolver, bool IsModule, in ASTIdentifierTableTrait() argument
3174 : Writer(Writer), PP(PP), IdResolver(IdResolver), IsModule(IsModule), in ASTIdentifierTableTrait()
3175 NeedDecls(!IsModule || !Writer.getLangOpts().CPlusPlus), in ASTIdentifierTableTrait()
[all …]
DASTReader.cpp756 bool IsModule) { in isInterestingIdentifier() argument
759 (IsModule ? II.hasRevertedBuiltin() : II.getObjCOrBuiltinID()) || in isInterestingIdentifier()
761 (!(IsModule && Reader.getContext().getLangOpts().CPlusPlus) && in isInterestingIdentifier()
780 bool IsModule = Reader.getPreprocessor().getCurrentModule() != nullptr; in markIdentifierFromAST() local
781 if (isInterestingIdentifier(Reader, II, IsModule)) in markIdentifierFromAST()
/external/llvm-project/flang/include/flang/Semantics/
Dscope.h87 bool IsModule() const { in IsModule() function
/external/llvm-project/clang/lib/Serialization/
DASTWriter.cpp2124 static bool shouldIgnoreMacro(MacroDirective *MD, bool IsModule, in shouldIgnoreMacro() argument
2130 if (IsModule) { in shouldIgnoreMacro()
2143 void ASTWriter::WritePreprocessor(const Preprocessor &PP, bool IsModule) { in WritePreprocessor() argument
2160 assert(!IsModule); in WritePreprocessor()
2188 PP.Diag(SourceLocation(), diag::warn_module_uses_date_time) << IsModule; in WritePreprocessor()
2216 if (shouldIgnoreMacro(MD, IsModule, PP)) in WritePreprocessor()
3271 bool IsModule; member in __anon63d40bdc0a11::ASTIdentifierTableTrait
3281 (!IsModule && II->getObjCOrBuiltinID()) || in isInterestingIdentifier()
3300 IdentifierResolver &IdResolver, bool IsModule, in ASTIdentifierTableTrait() argument
3302 : Writer(Writer), PP(PP), IdResolver(IdResolver), IsModule(IsModule), in ASTIdentifierTableTrait()
[all …]
DASTReader.cpp912 bool IsModule) { in isInterestingIdentifier() argument
914 (!IsModule && II.getObjCOrBuiltinID()) || in isInterestingIdentifier()
916 (!(IsModule && Reader.getPreprocessor().getLangOpts().CPlusPlus) && in isInterestingIdentifier()
936 bool IsModule = Reader.getPreprocessor().getCurrentModule() != nullptr; in markIdentifierFromAST() local
937 if (isInterestingIdentifier(Reader, II, IsModule)) in markIdentifierFromAST()
/external/llvm-project/flang/lib/Evaluate/
Dcheck-expression.cpp392 if (semantics::IsNamedConstant(ultimate) || ultimate.owner().IsModule() || in operator ()()