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

1 2 3

  /external/clang/include/clang/AST/
StmtOpenMP.h 38 SourceLocation StartLoc;
63 /// \param StartLoc Starting location of the directive (directive keyword).
68 SourceLocation StartLoc, SourceLocation EndLoc,
70 : Stmt(SC), Kind(K), StartLoc(std::move(StartLoc)),
129 SourceLocation getLocStart() const { return StartLoc; }
137 void setLocStart(SourceLocation Loc) { StartLoc = Loc; }
187 /// \param StartLoc Starting location of the directive (directive keyword).
190 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc,
193 StartLoc, EndLoc, NumClauses, 1) {
    [all...]
OpenMPClause.h 34 SourceLocation StartLoc;
41 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
42 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {}
46 SourceLocation getLocStart() const { return StartLoc; }
51 void setLocStart(SourceLocation Loc) { StartLoc = Loc; }
58 bool isImplicit() const { return StartLoc.isInvalid(); }
101 /// \param StartLoc Starting location of the clause (the clause keyword).
106 OMPVarListClause(OpenMPClauseKind K, SourceLocation StartLoc,
108 : OMPClause(K, StartLoc, EndLoc), LParenLoc(LParenLoc), NumVars(N) {
    [all...]
Decl.h 357 SourceLocation StartLoc, SourceLocation IdLoc,
367 bool Inline, SourceLocation StartLoc,
770 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
796 SourceLocation StartLoc, SourceLocation IdLoc,
    [all...]
DeclCXX.h 635 SourceLocation StartLoc, SourceLocation IdLoc,
677 SourceLocation StartLoc, SourceLocation IdLoc,
    [all...]
DeclTemplate.h     [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 64 SMLoc StartLoc, EndLoc;
118 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc)
119 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
122 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc,
124 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc);
133 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
134 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc);
140 createAccessReg(unsigned Num, SMLoc StartLoc, SMLoc EndLoc) {
141 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc)
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 205 SourceLocation StartLoc = T.getOpenLocation();
218 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
219 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
236 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
237 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
262 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
264 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
274 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
309 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
317 Desig.AddDesignator(Designator::getArray(Idx.get(), StartLoc));
    [all...]
ParseDeclCXX.cpp 741 SourceLocation StartLoc = Tok.getLocation();
763 StartLoc : T.getOpenLocation();
828 ? DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
830 : DS.SetTypeSpecType(DeclSpec::TST_decltype_auto, StartLoc, PrevSpec,
832 Diag(StartLoc, DiagID) << PrevSpec;
839 SourceLocation StartLoc,
853 Tok.setLocation(StartLoc);
861 SourceLocation StartLoc = ConsumeToken();
881 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
884 Diag(StartLoc, DiagID) << PrevSpec
    [all...]
Parser.cpp 183 SourceLocation StartLoc = Tok.getLocation();
197 Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi)
198 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
200 Diag(StartLoc, diag::ext_extra_semi_cxx11)
201 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
206 Diag(StartLoc, diag::ext_extra_semi)
209 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
212 Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def)
213 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
661 SourceLocation StartLoc = Tok.getLocation()
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
SemaExprCXX.cpp     [all...]
  /external/clang/lib/AST/
Stmt.cpp     [all...]
DeclTemplate.cpp 515 SourceLocation StartLoc,
524 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
540 SourceLocation StartLoc, SourceLocation IdLoc,
544 return new (C, DC) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id,
550 SourceLocation StartLoc, SourceLocation IdLoc,
559 DC, StartLoc, IdLoc, D, P, Id, T, TInfo,
691 DeclContext *DC, SourceLocation StartLoc,
697 : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc,
715 SourceLocation StartLoc,
723 Context, ClassTemplateSpecialization, TK, DC, StartLoc, IdLoc
    [all...]
DeclCXX.cpp 87 DeclContext *DC, SourceLocation StartLoc,
90 : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl),
96 DeclContext *DC, SourceLocation StartLoc,
100 CXXRecordDecl *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc,
    [all...]
Decl.cpp     [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86Operand.h 30 SMLoc StartLoc, EndLoc;
66 : Kind(K), StartLoc(Start), EndLoc(End) {}
72 SMLoc getStartLoc() const override { return StartLoc; }
77 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
423 CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
426 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc);
436 SMLoc StartLoc, SMLoc EndLoc) {
437 auto Res = llvm::make_unique<X86Operand>(Immediate, StartLoc, EndLoc);
444 CreateMem(const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc, unsigned Size = 0,
446 auto Res = llvm::make_unique<X86Operand>(Memory, StartLoc, EndLoc)
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 432 clang::SourceLocation StartLoc,
439 clang::SourceLocation StartLoc,
483 StartLoc,
570 ClearArrayRSObject(C, DC, RefRSArrPtrSubscript, StartLoc, Loc);
573 ClearStructRSObject(C, DC, RefRSArrPtrSubscript, StartLoc, Loc);
654 clang::SourceLocation StartLoc,
714 StartLoc,
745 StartLoc,
751 StartLoc,
769 clang::SourceLocation StartLoc,
    [all...]
  /external/clang/lib/Lex/
PPLexerChange.cpp 449 SourceLocation StartLoc
453 StartLoc)) {
476 Diag(StartLoc, diag::warn_uncovered_module_header)
486 SourceLocation StartLoc
489 StartLoc)) {
505 Diag(StartLoc, diag::warn_forgotten_module_header)
TokenLexer.cpp 511 SourceLocation StartLoc = Tok.getLocation();
653 if (StartLoc.isFileID())
654 StartLoc = getExpansionLocForMacroDefLoc(StartLoc);
658 while (SM.getFileID(StartLoc) != MacroFID)
659 StartLoc = SM.getImmediateExpansionRange(StartLoc).first;
663 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc,
    [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 121 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc,
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 59 SMLoc StartLoc;
62 : Name(n), Modifiers(m), StartLoc(Loc) {}
65 SMLoc getLoc() const { return StartLoc; }
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 53 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
150 SMLoc StartLoc, EndLoc;
230 return StartLoc;
294 Op->StartLoc = S;
304 Op->StartLoc = S;
313 Op->StartLoc = S;
368 Op->StartLoc = S;
429 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc)
432 StartLoc = Tok.getLoc();
444 return Error(StartLoc, "invalid register name")
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 462 DebugLoc StartLoc;
467 StartLoc = HeadBB->getTerminator()->getDebugLoc();
468 if (!StartLoc.isUnknown())
469 return StartLoc;
476 StartLoc = HeadBB->getTerminator()->getDebugLoc();
478 return StartLoc;
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 277 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID);
278 SourceLocation EndLoc = StartLoc.getLocWithOffset(FileEnd-FileStart);
347 R.InsertTextBefore(StartLoc, os.str());
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 253 milliseconds

1 2 3