/external/llvm-project/flang/lib/Semantics/ |
D | program-tree.h | 73 bool IsModule() const; // Module or Submodule
|
D | program-tree.cpp | 125 bool ProgramTree::IsModule() const { in IsModule() function in Fortran::semantics::ProgramTree
|
D | tools.cpp | 52 start, [](const Scope &scope) { return scope.IsModule(); }); in FindModuleContaining() 492 return symbol.owner().IsModule() && in IsBuiltinDerivedType()
|
D | resolve-names.cpp | 2991 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()
|
D | check-declarations.cpp | 312 if (symbol.owner().IsModule() && IsAutomatic(symbol)) { in Check() 749 entryScope->parent().IsModule() || in CheckSubprogram()
|
D | check-do-forall.cpp | 320 if (symbol.GetUltimate().owner().IsModule() && in fromScope()
|
D | runtime-type-info.cpp | 346 if (distinctName == typeName && scope.IsModule()) { in DescribeType()
|
/external/llvm-project/clang/include/clang/Serialization/ |
D | ASTWriter.h | 480 void WritePreprocessor(const Preprocessor &PP, bool IsModule); 507 bool IsModule);
|
/external/clang/include/clang/Serialization/ |
D | ASTWriter.h | 433 void WritePreprocessor(const Preprocessor &PP, bool IsModule); 459 bool IsModule);
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 2109 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 __anon9159baf50611::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 …]
|
D | ASTReader.cpp | 756 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/ |
D | scope.h | 87 bool IsModule() const { in IsModule() function
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriter.cpp | 2124 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 __anon34b38c630a11::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 …]
|
D | ASTReader.cpp | 912 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/ |
D | check-expression.cpp | 392 if (semantics::IsNamedConstant(ultimate) || ultimate.owner().IsModule() || in operator ()()
|