HomeSort by relevance Sort by last modified time
    Searched defs:EndLoc (Results 26 - 46 of 46) sorted by null

12

  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 53 SMLoc StartLoc, EndLoc;
258 return EndLoc;
286 Op->EndLoc = Loc;
296 Res->EndLoc = Loc;
312 Op->EndLoc = E;
320 Op->EndLoc = S;
415 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
519 bool AMDGPUAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) {
522 EndLoc = Tok.getEndLoc();
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 259 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
329 SMLoc StartLoc, EndLoc;
362 EndLoc = o.EndLoc;
385 SMLoc getEndLoc() const override { return EndLoc; }
700 Op->EndLoc = S;
718 Op->EndLoc = S;
728 Op->EndLoc = E;
739 Op->EndLoc = E;
749 Op->EndLoc = E
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 69 SMLoc StartLoc, EndLoc;
131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc)
132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
136 SMLoc EndLoc) {
137 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc);
146 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
147 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc);
153 createAccessReg(unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
154 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc);
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 815 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
893 SMLoc &StartLoc, SMLoc &EndLoc) {
905 EndLoc = Tok.getEndLoc();
910 SMRange(StartLoc, EndLoc));
936 SMRange(StartLoc, EndLoc));
968 EndLoc = Parser.getTok().getEndLoc();
973 EndLoc = Parser.getTok().getEndLoc();
991 EndLoc = Parser.getTok().getEndLoc();
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 265 SourceLocation EndLoc = Msg->getSelectorLoc(0);
266 SourceRange SpaceRange(BegLoc, EndLoc);
295 SourceLocation EndLoc = RHS->getLocStart();
296 EndLoc = EndLoc.getLocWithOffset(-1);
297 const char *colon = PP.getSourceManager().getCharacterData(EndLoc);
301 SourceRange Range(BegLoc, EndLoc);
552 SourceLocation EndLoc = Setter->getDeclaratorEndLoc();
554 EndLoc = EndLoc.getLocWithOffset(1)
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 124 SourceLocation *endLoc,
163 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr,
192 if (endLoc)
193 *endLoc = Loc;
244 SourceLocation *EndLoc,
272 ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName,
326 if (EndLoc)
327 *EndLoc = RParen;
337 SourceLocation *EndLoc,
349 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName
    [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 99 SMLoc &EndLoc) override;
176 SMLoc StartLoc, EndLoc;
208 EndLoc = o.EndLoc;
226 SMLoc getEndLoc() const { return EndLoc; }
578 Op->EndLoc = S;
587 Op->EndLoc = E;
597 Op->EndLoc = E;
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
242 NumParams(0), DeclEndLoc(endLoc), Body(), SelfDecl(nullptr),
254 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
    [all...]
Stmt.h 433 SourceLocation StartLoc, EndLoc;
437 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
438 StartLoc(startLoc), EndLoc(endLoc) {}
458 SourceLocation getEndLoc() const { return EndLoc; }
459 void setEndLoc(SourceLocation L) { EndLoc = L; }
462 SourceLocation getLocEnd() const LLVM_READONLY { return EndLoc; }
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaChecking.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 132 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
167 SMLoc StartLoc, EndLoc;
275 EndLoc = o.EndLoc;
325 SMLoc getEndLoc() const override { return EndLoc; }
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 417 SourceLocation EndLoc=SourceLocation());
427 SourceLocation EndLoc=SourceLocation());
    [all...]
RewriteObjC.cpp 351 SourceLocation EndLoc=SourceLocation());
360 SourceLocation EndLoc=SourceLocation());
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 147 SourceLocation EndLoc = R.getEnd();
148 if (EndLoc.isValid() && EndLoc.isMacroID() && !SM.isMacroArgExpansion(EndLoc))
149 EndLoc = SM.getExpansionRange(EndLoc).second;
150 if (R.isTokenRange() && EndLoc.isValid()) {
151 unsigned Length = Lexer::MeasureTokenLength(SM.getSpellingLoc(EndLoc),
153 EndLoc = EndLoc.getLocWithOffset(Length)
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 235 bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc) override;
236 bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) override;
237 bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) override;
239 SMLoc &EndLoc) override;
336 bool parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
337 bool parseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
338 bool parseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
752 bool AsmParser::parseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
757 EndLoc = Lexer.getTok().getEndLoc();
767 bool AsmParser::parseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 139 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
639 SMLoc StartLoc, EndLoc;
651 Op->EndLoc = E;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 329 SMLoc &EndLoc);
370 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
424 SMLoc StartLoc, EndLoc, AlignmentLoc;
572 SMLoc getEndLoc() const override { return EndLoc; }
575 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
    [all...]

Completed in 1075 milliseconds

12