Searched refs:StartLoc (Results 1 - 25 of 55) sorted by relevance

123

/external/clang/include/clang/AST/
H A DStmtOpenMP.h33 SourceLocation StartLoc; member in class:clang::OMPClause
39 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) argument
40 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {}
45 SourceLocation getLocStart() const { return StartLoc; }
50 void setLocStart(SourceLocation Loc) { StartLoc = Loc; }
57 bool isImplicit() const { return StartLoc.isInvalid();}
157 /// \param StartLoc Starting location of the clause.
162 SourceLocation StartLoc, SourceLocation LParenLoc,
164 : OMPClause(OMPC_default, StartLoc, EndLo
161 OMPDefaultClause(OpenMPDefaultClauseKind A, SourceLocation ALoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
210 OMPPrivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) argument
264 SourceLocation StartLoc; member in class:clang::OMPExecutableDirective
280 OMPExecutableDirective(const T *, StmtClass SC, OpenMPDirectiveKind K, SourceLocation StartLoc, SourceLocation EndLoc, unsigned NumClauses, unsigned NumberOfExpressions) argument
368 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, unsigned N) argument
[all...]
H A DDecl.h343 NamespaceDecl(DeclContext *DC, bool Inline, SourceLocation StartLoc,
360 bool Inline, SourceLocation StartLoc,
752 VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
773 SourceLocation StartLoc, SourceLocation IdLoc,
1202 ParmVarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
1206 : VarDecl(DK, DC, StartLoc, IdLoc, Id, T, TInfo, S) {
1215 SourceLocation StartLoc,
1505 FunctionDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
1511 StartLoc),
1542 SourceLocation StartLoc, SourceLocatio
[all...]
H A DDeclCXX.h613 SourceLocation StartLoc, SourceLocation IdLoc,
662 SourceLocation StartLoc, SourceLocation IdLoc,
1615 CXXMethodDecl(Kind DK, CXXRecordDecl *RD, SourceLocation StartLoc, argument
1620 : FunctionDecl(DK, RD, StartLoc, NameInfo, T, TInfo,
1628 SourceLocation StartLoc,
2035 CXXConstructorDecl(CXXRecordDecl *RD, SourceLocation StartLoc,
2040 : CXXMethodDecl(CXXConstructor, RD, StartLoc, NameInfo, T, TInfo,
2050 SourceLocation StartLoc,
2228 CXXDestructorDecl(CXXRecordDecl *RD, SourceLocation StartLoc, argument
2232 : CXXMethodDecl(CXXDestructor, RD, StartLoc, NameInf
2275 CXXConversionDecl(CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isInline, bool isExplicitSpecified, bool isConstexpr, SourceLocation EndLocation) argument
[all...]
H A DDeclTemplate.h1043 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc, argument
1047 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
1053 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc,
1065 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1070 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1426 DeclContext *DC, SourceLocation StartLoc,
1438 SourceLocation StartLoc, SourceLocation IdLoc,
1670 SourceLocation StartLoc,
1690 SourceLocation StartLoc, SourceLocation IdLoc,
2318 SourceLocation StartLoc, SourceLocatio
[all...]
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp63 SMLoc StartLoc, EndLoc; member in class:__anon22428::SystemZOperand
107 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc)
122 static SystemZOperand *createInvalid(SMLoc StartLoc, SMLoc EndLoc) { argument
123 return new SystemZOperand(KindInvalid, StartLoc, EndLoc);
132 SMLoc StartLoc, SMLoc EndLoc) {
133 SystemZOperand *Op = new SystemZOperand(KindReg, StartLoc, EndLoc);
138 static SystemZOperand *createAccessReg(unsigned Num, SMLoc StartLoc, argument
140 SystemZOperand *Op = new SystemZOperand(KindAccessReg, StartLoc, EndLoc);
144 static SystemZOperand *createImm(const MCExpr *Expr, SMLoc StartLoc, argument
146 SystemZOperand *Op = new SystemZOperand(KindImm, StartLoc, EndLo
131 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) argument
150 createMem(RegisterKind RegKind, unsigned Base, const MCExpr *Disp, unsigned Index, const MCExpr *Length, SMLoc StartLoc, SMLoc EndLoc) argument
305 SMLoc StartLoc, EndLoc; member in struct:__anon22428::SystemZAsmParser::Register
561 SMLoc StartLoc = Parser.getTok().getLoc(); local
597 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) argument
677 SMLoc StartLoc = Parser.getTok().getLoc(); local
766 SMLoc StartLoc = Parser.getTok().getLoc(); local
[all...]
/external/clang/lib/Parse/
H A DParseInit.cpp223 SourceLocation StartLoc = T.getOpenLocation(); local
236 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
237 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
254 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
255 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
280 CheckArrayDesignatorSyntax(*this, StartLoc, Desig);
282 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
292 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
327 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc,
335 Desig.AddDesignator(Designator::getArray(Idx.release(), StartLoc));
[all...]
H A DParseDeclCXX.cpp689 SourceLocation StartLoc = Tok.getLocation(); local
711 StartLoc : T.getOpenLocation();
776 ? DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
778 : DS.SetTypeSpecType(DeclSpec::TST_decltype_auto, StartLoc, PrevSpec,
780 Diag(StartLoc, DiagID) << PrevSpec;
787 SourceLocation StartLoc,
801 Tok.setLocation(StartLoc);
809 SourceLocation StartLoc = ConsumeToken(); local
829 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
831 Diag(StartLoc, DiagI
786 AnnotateExistingDecltypeSpecifier(const DeclSpec& DS, SourceLocation StartLoc, SourceLocation EndLoc) argument
1105 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
1696 SourceLocation StartLoc = Tok.getLocation(); local
3271 SourceLocation StartLoc = Tok.getLocation(), Loc; local
[all...]
H A DParser.cpp220 SourceLocation StartLoc = Tok.getLocation(); local
234 Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi)
235 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
237 Diag(StartLoc, diag::ext_extra_semi_cxx11)
238 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
243 Diag(StartLoc, diag::ext_extra_semi)
245 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
248 Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def)
249 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc));
685 SourceLocation StartLoc local
[all...]
H A DParseDecl.cpp3386 void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, argument
3561 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type);
3564 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range;
3566 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range;
3629 Diag(StartLoc, diag::err_explicit_instantiation_enum);
3654 StartLoc, SS, Name, NameLoc, attrs.getList(),
3669 TUK, SS, Name, StartLoc,
3676 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
3677 NameLoc.isValid() ? NameLoc : StartLoc,
3679 Diag(StartLoc, DiagI
3715 ParseEnumBody(SourceLocation StartLoc, Decl *EnumDecl) argument
4995 SourceLocation StartLoc, LocalEndLoc, EndLoc; local
5513 SourceLocation StartLoc = ConsumeToken(); local
5577 SourceLocation StartLoc = ConsumeToken(); local
[all...]
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp205 SourceLocation StartLoc,
210 Res = ActOnOpenMPParallelDirective(Clauses, AStmt, StartLoc, EndLoc);
224 SourceLocation StartLoc,
228 return Owned(OMPParallelDirective::Create(Context, StartLoc, EndLoc,
235 SourceLocation StartLoc,
243 ArgumentLoc, StartLoc, LParenLoc, EndLoc);
256 SourceLocation StartLoc,
282 return new (Context) OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc,
288 SourceLocation StartLoc,
294 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLo
202 ActOnOpenMPExecutableDirective(OpenMPDirectiveKind Kind, ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) argument
222 ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) argument
232 ActOnOpenMPSimpleClause(OpenMPClauseKind Kind, unsigned Argument, SourceLocation ArgumentLoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
254 ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind, SourceLocation KindKwLoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
286 ActOnOpenMPVarListClause(OpenMPClauseKind Kind, ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
305 ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
[all...]
H A DSemaExprCXX.cpp976 /// \param StartLoc The first location of the expression.
986 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, argument
1053 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal,
1098 SourceLocation StartLoc = Range.getBegin(); local
1132 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
1147 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure)
1210 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion)
1266 ConvertedSize = PerformContextualImplicitConversion(StartLoc, ArraySize,
1340 FindAllocationFunctions(StartLoc,
1351 = doesUsualArrayDeleteWantSize(*this, StartLoc, AllocTyp
1542 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, MultiExprArg PlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
1748 FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, DeclarationName Name, MultiExprArg Args, DeclContext *Ctx, bool AllowMissing, FunctionDecl *&Operator, bool Diagnose) argument
2007 FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, DeclarationName Name, FunctionDecl* &Operator, bool Diagnose) argument
2100 ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, bool ArrayForm, Expr *ExE) argument
[all...]
/external/llvm/tools/llvm-mcmarkup/
H A Dllvm-mcmarkup.cpp60 SMLoc StartLoc; member in class:MarkupTag
63 : Name(n), Modifiers(m), StartLoc(Loc) {}
66 SMLoc getLoc() const { return StartLoc; }
/external/clang/lib/AST/
H A DDeclTemplate.cpp519 SourceLocation StartLoc,
528 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
544 SourceLocation StartLoc, SourceLocation IdLoc,
548 return new (C) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id,
554 SourceLocation StartLoc, SourceLocation IdLoc,
564 return new (Mem) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc,
708 DeclContext *DC, SourceLocation StartLoc,
714 : CXXRecordDecl(DK, TK, DC, StartLoc, IdLoc,
732 SourceLocation StartLoc,
741 TK, DC, StartLoc, IdLo
518 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
543 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, QualType T, bool ParameterPack, TypeSourceInfo *TInfo) argument
553 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
707 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, ClassTemplateSpecializationDecl *PrevDecl) argument
730 Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, ClassTemplateSpecializationDecl *PrevDecl) argument
824 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, const TemplateArgument *Args, unsigned NumArgs, TemplateArgumentLoc *ArgInfos, unsigned NumArgInfos, ClassTemplatePartialSpecializationDecl *PrevDecl, unsigned SequenceNumber) argument
850 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, unsigned SequenceNumber) argument
1093 VarTemplateSpecializationDecl( ASTContext &Context, Kind DK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs) argument
1109 Create( ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs) argument
1160 VarTemplatePartialSpecializationDecl( ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs, TemplateArgumentLoc *ArgInfos, unsigned NumArgInfos, unsigned SequenceNumber) argument
1178 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, unsigned SequenceNumber) argument
[all...]
H A DDeclCXX.cpp77 SourceLocation StartLoc, SourceLocation IdLoc,
79 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
84 DeclContext *DC, SourceLocation StartLoc,
88 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
1342 SourceLocation StartLoc,
1347 return new (C) CXXMethodDecl(CXXMethod, RD, StartLoc, NameInfo, T, TInfo,
1621 SourceLocation StartLoc,
1629 return new (C) CXXConstructorDecl(RD, StartLoc, NameInfo, T, TInfo,
1771 SourceLocation StartLoc,
1778 return new (C) CXXDestructorDecl(RD, StartLoc, NameInf
76 CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl) argument
83 Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl* PrevDecl, bool DelayTypeCreation) argument
1341 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool isInline, bool isConstexpr, SourceLocation EndLocation) argument
1620 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isExplicit, bool isInline, bool isImplicitlyDeclared, bool isConstexpr) argument
1770 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isInline, bool isImplicitlyDeclared) argument
1793 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool isInline, bool isExplicit, bool isConstexpr, SourceLocation EndLocation) argument
1861 NamespaceDecl(DeclContext *DC, bool Inline, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, NamespaceDecl *PrevDecl) argument
1874 Create(ASTContext &C, DeclContext *DC, bool Inline, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, NamespaceDecl *PrevDecl) argument
[all...]
H A DDecl.cpp1560 VarDecl::VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc, argument
1563 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() {
2030 SourceLocation StartLoc,
2034 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
2971 SourceLocation StartLoc, SourceLocation IdLoc,
2975 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3143 SourceLocation StartLoc, SourceLocation IdLoc,
3147 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
3211 SourceLocation StartLoc, SourceLocation IdLoc,
3213 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
2029 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S, Expr *DefArg) argument
2970 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, InClassInitStyle InitStyle) argument
3142 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, bool IsScoped, bool IsScopedUsingClassTag, bool IsFixed) argument
3210 RecordDecl(Kind DK, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, RecordDecl *PrevDecl) argument
3222 Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, RecordDecl* PrevDecl) argument
3408 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool isInlineSpecified, bool hasWrittenPrototype, bool isConstexprSpecified) argument
3500 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, TypeSourceInfo *TInfo) argument
3513 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, TypeSourceInfo *TInfo) argument
3582 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
3594 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, SourceLocation EndLoc) argument
3602 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef<SourceLocation> IdentifierLocs) argument
3610 CreateImplicit(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, SourceLocation EndLoc) argument
[all...]
/external/clang/lib/Lex/
H A DPPLexerChange.cpp390 SourceLocation StartLoc local
395 StartLoc) != DiagnosticsEngine::Ignored) {
418 Diag(StartLoc, diag::warn_uncovered_module_header)
428 SourceLocation StartLoc local
431 StartLoc)
448 Diag(StartLoc, diag::warn_forgotten_module_header)
H A DTokenLexer.cpp517 SourceLocation StartLoc = Tok.getLocation(); local
660 if (StartLoc.isFileID())
661 StartLoc = getExpansionLocForMacroDefLoc(StartLoc);
665 while (SM.getFileID(StartLoc) != MacroFID)
666 StartLoc = SM.getImmediateExpansionRange(StartLoc).first;
670 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc,
H A DPPMacroExpansion.cpp1388 SourceLocation StartLoc = Tok.getLocation();
1408 Diag(StartLoc, diag::err_feature_check_malformed);
1440 SourceLocation StartLoc = Tok.getLocation();
1447 Diag(StartLoc, diag::err_warning_check_malformed);
1465 Diag(StartLoc, diag::err_warning_check_malformed);
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp501 SMLoc StartLoc);
509 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
564 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
618 SMLoc StartLoc, EndLoc; member in struct:__anon22445::X86Operand
654 : Kind(K), StartLoc(Start), EndLoc(End) {}
660 SMLoc getStartLoc() const { return StartLoc; }
665 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
942 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc, argument
947 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
956 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLo argument
963 CreateMem(const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc, unsigned Size = 0, StringRef SymName = StringRef(), void *OpDecl = 0) argument
980 CreateMem(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg, unsigned Scale, SMLoc StartLoc, SMLoc EndLoc, unsigned Size = 0, StringRef SymName = StringRef(), void *OpDecl = 0) argument
1029 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) argument
1757 SMLoc StartLoc, EndLoc; local
[all...]
/external/llvm/include/llvm/MC/
H A DMCTargetAsmParser.h112 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc,
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp190 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
250 SMLoc StartLoc, EndLoc; member in struct:__anon22373::PPCOperand
282 StartLoc = o.StartLoc;
302 SMLoc getStartLoc() const { return StartLoc; }
485 Op->StartLoc = S;
499 Op->StartLoc = S;
508 Op->StartLoc = S;
519 Op->StartLoc = S;
529 Op->StartLoc
926 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) argument
[all...]
/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/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp75 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
272 SMLoc StartLoc, EndLoc; member in class:__anon22347::MipsOperand
344 Op->StartLoc = S;
352 Op->StartLoc = S;
360 Op->StartLoc = S;
370 Op->StartLoc = S;
423 return StartLoc;
1143 bool MipsAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, argument
1145 StartLoc = Parser.getTok().getLoc();
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp188 BlockEdge StartLoc(Entry, Succ, L);
195 generateNode(StartLoc, SubEng.getInitialState(L), 0);
197 generateNode(StartLoc, InitState, 0);
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp66 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
161 SMLoc StartLoc, EndLoc; member in class:__anon22264::AArch64Operand
213 : MCParsedAsmOperand(), Kind(K), StartLoc(S), EndLoc(E) {}
219 SMLoc getStartLoc() const { return StartLoc; }
1216 SMLoc StartLoc = Parser.getTok().getLoc(); local
1224 Operands.push_back(AArch64Operand::CreateImm(ImmVal, StartLoc, EndLoc));
1228 SMLoc StartLoc = Parser.getTok().getLoc(); local
1237 Operands.push_back(AArch64Operand::CreateImm(ImmVal, StartLoc, EndLoc));
1620 AArch64AsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, argument
1627 StartLoc
[all...]

Completed in 311 milliseconds

123