Searched defs:StartLoc (Results 1 - 25 of 52) sorted by relevance

123

/external/clang/lib/Parse/
H A DParseInit.cpp205 SourceLocation StartLoc = T.getOpenLocation(); local
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...]
H A DParseExpr.cpp1684 SourceLocation StartLoc = ConsumeToken(); // Eat the builtin identifier. local
1716 Res = Actions.ActOnVAArg(StartLoc, Expr.get(), Ty.get(), ConsumeParen());
1790 Res = Actions.ActOnBuiltinOffsetOf(getCurScope(), StartLoc, TypeLoc,
1829 Res = Actions.ActOnChooseExpr(StartLoc, Cond.get(), Expr1.get(),
1858 Res = Actions.ActOnAsTypeExpr(Expr.get(), DestTy.get(), StartLoc,
1887 Res = Actions.ActOnConvertVectorExpr(Expr.get(), DestTy.get(), StartLoc,
H A DParser.cpp183 SourceLocation StartLoc = Tok.getLocation(); local
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 local
[all...]
H A DParseDeclCXX.cpp741 SourceLocation StartLoc = Tok.getLocation(); local
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(); local
881 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
884 Diag(StartLoc, DiagI
838 AnnotateExistingDecltypeSpecifier(const DeclSpec& DS, SourceLocation StartLoc, SourceLocation EndLoc) argument
1165 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
1735 SourceLocation StartLoc = Tok.getLocation(); local
3391 SourceLocation StartLoc = Tok.getLocation(), Loc; local
3404 SourceLocation StartLoc = Tok.getLocation(); local
[all...]
H A DParseExprCXX.cpp387 SourceLocation StartLoc local
390 SS.SetInvalid(SourceRange(StartLoc, CCLoc));
882 SourceLocation StartLoc = Tok.getLocation(); local
886 if (Tok.getLocation() != StartLoc) {
891 Tok.setLocation(StartLoc);
/external/clang/include/clang/AST/
H A DStmtOpenMP.h38 SourceLocation StartLoc; member in class:clang::OMPExecutableDirective
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, argument
193 StartLoc, EndLo
67 OMPExecutableDirective(const T *, StmtClass SC, OpenMPDirectiveKind K, SourceLocation StartLoc, SourceLocation EndLoc, unsigned NumClauses, unsigned NumChildren) argument
250 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, unsigned NumClauses) argument
319 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, unsigned NumClauses) argument
385 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned NumClauses) argument
439 OMPSectionDirective(SourceLocation StartLoc, SourceLocation EndLoc) argument
489 OMPSingleDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned NumClauses) argument
550 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, unsigned NumClauses) argument
619 OMPParallelSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned NumClauses) argument
[all...]
H A DOpenMPClause.h34 SourceLocation StartLoc; member in class:clang::OMPClause
41 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) argument
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, argument
108 : OMPClause(K, StartLoc, EndLo
173 OMPIfClause(Expr *Cond, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
227 OMPNumThreadsClause(Expr *NumThreads, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
283 OMPSafelenClause(Expr *Len, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
339 OMPCollapseClause(Expr *Num, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
403 OMPDefaultClause(OpenMPDefaultClauseKind A, SourceLocation ALoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
474 OMPProcBindClause(OpenMPProcBindClauseKind A, SourceLocation ALoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
564 OMPScheduleClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation KLoc, SourceLocation CommaLoc, SourceLocation EndLoc, OpenMPScheduleClauseKind Kind, Expr *ChunkSize) argument
617 OMPOrderedClause(SourceLocation StartLoc, SourceLocation EndLoc) argument
646 OMPNowaitClause(SourceLocation StartLoc, SourceLocation EndLoc) argument
677 OMPPrivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
737 OMPFirstprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
797 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
856 OMPSharedClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
927 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, unsigned N, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo) argument
1017 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, unsigned NumVars) argument
1102 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, unsigned NumVars) argument
1178 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
1238 OMPCopyprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
[all...]
H A DDeclTemplate.h1052 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc, argument
1056 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
1062 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc,
1074 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1079 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1435 DeclContext *DC, SourceLocation StartLoc,
1447 SourceLocation StartLoc, SourceLocation IdLoc,
1671 SourceLocation StartLoc,
1688 SourceLocation StartLoc, SourceLocation IdLoc,
2299 SourceLocation StartLoc, SourceLocatio
[all...]
/external/clang/lib/Lex/
H A DPPLexerChange.cpp449 SourceLocation StartLoc local
453 StartLoc)) {
476 Diag(StartLoc, diag::warn_uncovered_module_header)
486 SourceLocation StartLoc local
489 StartLoc)) {
505 Diag(StartLoc, diag::warn_forgotten_module_header)
H A DTokenLexer.cpp511 SourceLocation StartLoc = Tok.getLocation(); local
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,
H A DLexer.cpp555 // StartLoc will differ from FileLoc if there is a BOM that was skipped.
556 SourceLocation StartLoc = TheLexer.getSourceLocation(); local
698 return std::make_pair(End.getRawEncoding() - StartLoc.getRawEncoding(),
/external/clang/lib/Rewrite/Core/
H A DHTMLRewrite.cpp277 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID); local
278 SourceLocation EndLoc = StartLoc.getLocWithOffset(FileEnd-FileStart);
347 R.InsertTextBefore(StartLoc, os.str());
/external/llvm/tools/llvm-mcmarkup/
H A Dllvm-mcmarkup.cpp59 SMLoc StartLoc; member in class:MarkupTag
62 : Name(n), Modifiers(m), StartLoc(Loc) {}
65 SMLoc getLoc() const { return StartLoc; }
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h462 DebugLoc StartLoc; local
467 StartLoc = HeadBB->getTerminator()->getDebugLoc();
468 if (!StartLoc.isUnknown())
469 return StartLoc;
476 StartLoc = HeadBB->getTerminator()->getDebugLoc();
478 return StartLoc;
/external/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h30 SMLoc StartLoc, EndLoc; member in struct:llvm::X86Operand
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, argument
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, argument
446 auto Res = llvm::make_unique<X86Operand>(Memory, StartLoc, EndLo
435 CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc) argument
461 CreateMem(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg, unsigned Scale, SMLoc StartLoc, SMLoc EndLoc, unsigned Size = 0, StringRef SymName = StringRef(), void *OpDecl = nullptr) argument
[all...]
/external/clang/lib/AST/
H A DDeclTemplate.cpp515 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, IdLo
514 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, const QualType *ExpandedTypes, unsigned NumExpandedTypes, TypeSourceInfo **ExpandedTInfos) argument
539 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, QualType T, bool ParameterPack, TypeSourceInfo *TInfo) argument
549 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, const QualType *ExpandedTypes, unsigned NumExpandedTypes, TypeSourceInfo **ExpandedTInfos) argument
690 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, ClassTemplateSpecializationDecl *PrevDecl) argument
713 Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, ClassTemplateSpecializationDecl *PrevDecl) argument
802 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, const ASTTemplateArgumentListInfo *ArgInfos, ClassTemplatePartialSpecializationDecl *PrevDecl) argument
825 Create(ASTContext &Context, TagKind TK,DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, const TemplateArgumentListInfo &ArgInfos, QualType CanonInjectedType, ClassTemplatePartialSpecializationDecl *PrevDecl) argument
1057 VarTemplateSpecializationDecl( Kind DK, ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs) argument
1074 Create( ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs) argument
1120 VarTemplatePartialSpecializationDecl( ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs, const ASTTemplateArgumentListInfo *ArgInfos) argument
1136 Create( ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs, const TemplateArgumentListInfo &ArgInfos) argument
[all...]
H A DDeclCXX.cpp87 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,
1415 SourceLocation StartLoc,
1420 return new (C, RD) CXXMethodDecl(CXXMethod, C, RD, StartLoc, NameInfo,
1698 SourceLocation StartLoc,
1706 return new (C, RD) CXXConstructorDecl(C, RD, StartLoc, NameInfo, T, TInfo,
1848 SourceLocation StartLoc,
1855 return new (C, RD) CXXDestructorDecl(C, RD, StartLoc, NameInf
86 CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl) argument
95 Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl* PrevDecl, bool DelayTypeCreation) argument
1414 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool isInline, bool isConstexpr, SourceLocation EndLocation) argument
1697 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isExplicit, bool isInline, bool isImplicitlyDeclared, bool isConstexpr) argument
1847 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isInline, bool isImplicitlyDeclared) argument
1870 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isInline, bool isExplicit, bool isConstexpr, SourceLocation EndLocation) argument
1936 NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, NamespaceDecl *PrevDecl) argument
1948 Create(ASTContext &C, DeclContext *DC, bool Inline, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, NamespaceDecl *PrevDecl) argument
[all...]
H A DDeclObjC.cpp1399 SourceLocation StartLoc,
1430 return new (C, DC) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo, ac, BW,
1472 SourceLocation StartLoc, SourceLocation IdLoc,
1474 return new (C, DC) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW);
1398 Create(ASTContext &C, ObjCContainerDecl *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, AccessControl ac, Expr *BW, bool synthesized) argument
1471 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, Expr *BW) argument
H A DStmt.cpp1126 SourceLocation StartLoc,
1133 OMPPrivateClause *Clause = new (Mem) OMPPrivateClause(StartLoc, LParenLoc,
1148 SourceLocation StartLoc,
1155 OMPFirstprivateClause *Clause = new (Mem) OMPFirstprivateClause(StartLoc,
1172 SourceLocation StartLoc,
1180 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
1194 SourceLocation StartLoc,
1201 OMPSharedClause *Clause = new (Mem) OMPSharedClause(StartLoc, LParenLoc,
1216 SourceLocation StartLoc,
1225 OMPLinearClause(StartLoc, LParenLo
1125 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1147 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1171 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1193 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1215 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, Expr *Step) argument
1240 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, Expr *A) argument
1261 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1283 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1311 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo) argument
1332 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1360 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1386 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1411 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1435 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, Stmt *AssociatedStmt) argument
1455 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1482 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
1507 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt) argument
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp627 SourceLocation StartLoc = Tok.getLocation(); local
628 Callbacks->MoveToLine(StartLoc.getLocWithOffset(Tok.getLength()));
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp53 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
150 SMLoc StartLoc, EndLoc; member in class:__anon26131::SparcOperand
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) argument
432 StartLoc = Tok.getLoc();
444 return Error(StartLoc, "invali
[all...]
/external/clang/include/clang/Sema/
H A DInitialization.h509 static InitializationKind CreateCStyleCast(SourceLocation StartLoc, argument
515 IC_CStyleCast, StartLoc, TypeRange.getBegin(),
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp527 SourceLocation StartLoc) {
602 DI->EmitFunctionStart(GD, Loc, StartLoc, FnType, CurFn, Builder);
693 DI->EmitLocation(Builder, StartLoc);
521 StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc, SourceLocation StartLoc) argument
/external/clang/lib/Sema/
H A DSemaLambda.cpp1133 void Sema::ActOnLambdaError(SourceLocation StartLoc, Scope *CurScope, argument
1373 ExprResult Sema::ActOnLambdaExpr(SourceLocation StartLoc, Stmt *Body, argument
H A DSemaTemplateInstantiate.cpp748 SourceLocation StartLoc,
972 SourceLocation StartLoc,
976 StartLoc, NameLoc, Name);
970 RebuildExceptionDecl(VarDecl *ExceptionDecl, TypeSourceInfo *Declarator, SourceLocation StartLoc, SourceLocation NameLoc, IdentifierInfo *Name) argument

Completed in 1037 milliseconds

123