Searched refs:DirectiveLoc (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/Frontend/ |
D | VerifyDiagnosticConsumer.h | 149 SourceLocation DirectiveLoc, 158 SourceLocation DirectiveLoc; variable 174 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, in Directive() argument 176 : DirectiveLoc(DirectiveLoc), DiagnosticLoc(DiagnosticLoc), in Directive() 178 assert(!DirectiveLoc.isInvalid() && "DirectiveLoc is invalid!"); in Directive()
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 257 void checkForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body, 340 bool parseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc); 379 bool parseDirectiveReloc(SMLoc DirectiveLoc); // ".reloc" 392 bool parseDirectiveFile(SMLoc DirectiveLoc); 398 bool parseDirectiveCFIRegister(SMLoc DirectiveLoc); 404 bool parseDirectiveCFIDefCfa(SMLoc DirectiveLoc); 406 bool parseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc); 407 bool parseDirectiveCFIOffset(SMLoc DirectiveLoc); 408 bool parseDirectiveCFIRelOffset(SMLoc DirectiveLoc); 412 bool parseDirectiveCFISameValue(SMLoc DirectiveLoc); [all …]
|
/external/clang/lib/Frontend/ |
D | VerifyDiagnosticConsumer.cpp | 163 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, in StandardDirective() argument 166 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) { } in StandardDirective() 182 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, in RegexDirective() argument 185 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max), in RegexDirective() 659 if (D.DirectiveLoc != D.DiagnosticLoc) in PrintExpected() 661 << SourceMgr.getFilename(D.DirectiveLoc) << ':' in PrintExpected() 662 << SourceMgr.getPresumedLineNumber(D.DirectiveLoc) << ')'; in PrintExpected() 672 static bool IsFromSameFile(SourceManager &SM, SourceLocation DirectiveLoc, in IsFromSameFile() argument 677 if (SM.isWrittenInSameFile(DirectiveLoc, DiagnosticLoc)) in IsFromSameFile() 681 if (!DiagFile && SM.isWrittenInMainFile(DirectiveLoc)) in IsFromSameFile() [all …]
|
/external/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParserExtension.h | 36 SMLoc DirectiveLoc) { in HandleDirective() argument 38 return (Obj->*Handler)(Directive, DirectiveLoc); in HandleDirective()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 14647 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) { in ActOnModuleInclude() argument 14648 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true); in ActOnModuleInclude() 14657 getSourceManager().isWrittenInMainFile(DirectiveLoc); in ActOnModuleInclude() 14664 DirectiveLoc, Mod, in ActOnModuleInclude() 14665 DirectiveLoc); in ActOnModuleInclude() 14670 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc); in ActOnModuleInclude() 14671 VisibleModules.setVisible(Mod, DirectiveLoc); in ActOnModuleInclude() 14674 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) { in ActOnModuleBegin() argument 14675 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext); in ActOnModuleBegin() 14679 VisibleModules.setVisible(Mod, DirectiveLoc); in ActOnModuleBegin() [all …]
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1814 void ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod); 1817 void ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod); 1819 void ActOnModuleEnd(SourceLocation DirectiveLoc, Module *Mod);
|