HomeSort by relevance Sort by last modified time
    Searched refs:getLoc (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/llvm/lib/MC/MCParser/
MCAsmLexer.cpp 22 SMLoc MCAsmLexer::getLoc() const {
26 SMLoc AsmToken::getLoc() const {
MCAsmParser.cpp 37 Error(getLexer().getLoc(), Msg, Ranges);
COFFAsmParser.cpp 325 SMLoc startLoc = getLexer().getLoc();
342 SMLoc startLoc = getLexer().getLoc();
366 SMLoc startLoc = getLexer().getLoc();
393 SMLoc startLoc = getLexer().getLoc();
413 SMLoc startLoc = getLexer().getLoc();
440 SMLoc startLoc = getLexer().getLoc();
454 SMLoc startLoc = getLexer().getLoc();
DarwinAsmParser.cpp 501 SMLoc Loc = getLexer().getLoc();
645 SMLoc IDLoc = getLexer().getLoc();
658 SMLoc SizeLoc = getLexer().getLoc();
666 Pow2AlignmentLoc = getLexer().getLoc();
728 SMLoc IDLoc = getLexer().getLoc();
741 SMLoc SizeLoc = getLexer().getLoc();
749 Pow2AlignmentLoc = getLexer().getLoc();
793 SMLoc Loc = getParser().getTok().getLoc();
AsmParser.cpp 536 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
552 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
653 PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
687 const char *Start = getTok().getLoc().getPointer();
693 const char *End = getTok().getLoc().getPointer();
698 const char *Start = getTok().getLoc().getPointer();
705 const char *End = getTok().getLoc().getPointer();
744 SMLoc FirstTokenLoc = getLexer().getLoc();
799 SMLoc Loc = getTok().getLoc();
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 33 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
42 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
49 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
55 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr.getLoc(), S.Context, Num));
56 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
78 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
84 d->addAttr(::new (S.Context) MBlazeInterruptHandlerAttr(Attr.getLoc(),
86 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
93 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
99 d->addAttr(::new (S.Context) MBlazeSaveVolatilesAttr(Attr.getLoc(),
    [all...]
SemaDeclAttr.cpp 212 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
225 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
336 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
339 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
376 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
402 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
436 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
465 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
502 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
542 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type
    [all...]
SemaStmtAttr.cpp 52 S.Diag(A.getLoc(), A.isDeclspecAttribute() ?
  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 39 SourceLocation getLoc() const { return Loc; }
48 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS.getLoc());
51 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS);
54 return SM.isBeforeInTranslationUnit(LHS, RHS.getLoc());
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 35 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
55 if (SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
69 if (SourceMgr.isInSystemHeader(DirLoc.getLoc()))
73 SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
74 DirLoc.getLoc()));
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 747 SMLoc S = Parser.getTok().getLoc();
755 Parser.getTok().getLoc()));
775 Error(Parser.getTok().getLoc(), "unexpected token in operand");
779 SMLoc S = Parser.getTok().getLoc();
797 S = Parser.getTok().getLoc();
808 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
827 SMLoc S = Parser.getTok().getLoc();
830 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
837 SMLoc S = Parser.getTok().getLoc(); // start location of the operand
841 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1)
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.h 55 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
65 bool Error(const Twine &Msg) const { return Error(getLoc(), Msg); }
LLParser.h 146 return Error(Lex.getLoc(), Msg);
182 *Loc = Lex.getLoc();
191 Loc = Lex.getLoc();
250 Loc = Lex.getLoc();
313 Loc = Lex.getLoc();
322 Loc = Lex.getLoc();
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 93 PrintFatalError(Rec->getLoc(),
132 PrintFatalError(Rec->getLoc(), Rec->getName() +
136 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
142 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
146 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
182 PrintFatalError(Rec->getLoc(),
DisassemblerEmitter.cpp 121 PrintFatalError(Target.getTargetRecord()->getLoc(),
CodeGenInstruction.cpp 524 PrintFatalError(R->getLoc(),
541 PrintFatalError(R->getLoc(), "result value $" + Result->getArgName(i) +
559 PrintFatalError(R->getLoc(), "not enough arguments for instruction!");
565 R->getLoc(), T, ResOp)) {
600 PrintFatalError(R->getLoc(), "not enough arguments for instruction!");
603 R->getLoc(), T, ResOp)) {
608 PrintFatalError(R->getLoc(), "result argument #" + utostr(AliasOpNo) +
615 PrintFatalError(R->getLoc(), "result argument #" + utostr(AliasOpNo) +
621 PrintFatalError(R->getLoc(), "too many operands for instruction!");
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 71 SMLoc getLoc() const;
144 /// getLoc - Get the current source location.
145 SMLoc getLoc() const;
  /external/clang/utils/TableGen/
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 63 SrcMgr.PrintMessage(Tag.getLoc().front(),
  /external/llvm/include/llvm/MC/
MCFixup.h 107 SMLoc getLoc() const { return Loc; }
  /external/clang/include/clang/Sema/
TypoCorrection.h 177 : TypoName.getLoc());
178 CorrectionRange.setEnd(TypoName.getLoc());
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 66 SMLoc getLoc() const { return StartLoc; }
202 SrcMgr.PrintMessage(Tag.getLoc(), SourceMgr::DK_Error,
  /external/llvm/lib/TableGen/
TGLexer.h 109 SMLoc getLoc() const;
TGParser.cpp 471 Result.RefRange.Start = Lex.getLoc();
483 Result.RefRange.End = Lex.getLoc();
506 Result.RefRange.End = Lex.getLoc();
521 Result.RefRange.Start = Lex.getLoc();
528 Result.RefRange.End = Lex.getLoc();
551 Result.RefRange.End = Lex.getLoc();
628 SMLoc StartLoc = Lex.getLoc();
650 SMLoc StartLoc = Lex.getLoc();
735 SMLoc Loc = Lex.getLoc();
923 SMLoc OpLoc = Lex.getLoc();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 70 return X->getLoc().getAsLocSymbol();
132 return X->getLoc().getAsRegion();
269 os << C.getLoc() << " [as " << C.getNumBits() << " bit integer]";

Completed in 1411 milliseconds

1 2 3 4