Home
last modified time | relevance | path

Searched refs:LAngleLoc (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
DParseTemplate.cpp118 SourceLocation LAngleLoc, RAngleLoc; in ParseTemplateDeclarationOrSpecialization() local
121 TemplateParams, LAngleLoc, RAngleLoc)) { in ParseTemplateDeclarationOrSpecialization()
132 TemplateLoc, LAngleLoc, in ParseTemplateDeclarationOrSpecialization()
248 SourceLocation LAngleLoc in ParseSingleDeclarationAfterTemplate() local
253 << FixItHint::CreateInsertion(LAngleLoc, "<>"); in ParseSingleDeclarationAfterTemplate()
258 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, 0, 0, in ParseSingleDeclarationAfterTemplate()
259 LAngleLoc)); in ParseSingleDeclarationAfterTemplate()
302 SourceLocation &LAngleLoc, in ParseTemplateParameters() argument
309 LAngleLoc = ConsumeToken(); in ParseTemplateParameters()
542 SourceLocation LAngleLoc, RAngleLoc; in ParseTemplateTemplateParameter() local
[all …]
DParseDeclCXX.cpp547 Range = SourceRange(Name.TemplateId->LAngleLoc, in ParseUsingDeclaration()
935 SourceLocation LAngleLoc, RAngleLoc; in ParseBaseTypeSpecifier() local
937 true, LAngleLoc, TemplateArgs, RAngleLoc); in ParseBaseTypeSpecifier()
1236 SourceLocation LAngleLoc, RAngleLoc; in ParseClassSpecifier() local
1238 true, LAngleLoc, in ParseClassSpecifier()
1242 LAngleLoc = RAngleLoc = SourceLocation(); in ParseClassSpecifier()
1252 << SourceRange(LAngleLoc, RAngleLoc); in ParseClassSpecifier()
1289 Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template) in ParseClassSpecifier()
1464 TemplateId->LAngleLoc, in ParseClassSpecifier()
1482 TemplateId->LAngleLoc, in ParseClassSpecifier()
[all …]
DParseObjc.cpp239 SourceLocation LAngleLoc, EndProtoLoc; in ParseObjCAtInterfaceDeclaration() local
244 LAngleLoc, EndProtoLoc)) in ParseObjCAtInterfaceDeclaration()
286 SourceLocation LAngleLoc, EndProtoLoc; in ParseObjCAtInterfaceDeclaration() local
289 LAngleLoc, EndProtoLoc)) in ParseObjCAtInterfaceDeclaration()
1185 SourceLocation &LAngleLoc, SourceLocation &EndLoc) { in ParseObjCProtocolReferences() argument
1188 LAngleLoc = ConsumeToken(); // the "<" in ParseObjCProtocolReferences()
1231 SourceLocation LAngleLoc, EndProtoLoc; in ParseObjCProtocolQualifiers() local
1235 LAngleLoc, EndProtoLoc); in ParseObjCProtocolQualifiers()
1237 ProtocolLocs.data(), LAngleLoc); in ParseObjCProtocolQualifiers()
1461 SourceLocation LAngleLoc, EndProtoLoc; in ParseObjCAtProtocolDeclaration() local
[all …]
DParseExprCXX.cpp374 TemplateId->LAngleLoc, in ParseOptionalCXXScopeSpecifier()
1921 SourceLocation LAngleLoc, RAngleLoc; in ParseUnqualifiedIdTemplateId() local
1925 SS, true, LAngleLoc, in ParseUnqualifiedIdTemplateId()
1952 TemplateId->LAngleLoc = LAngleLoc; in ParseUnqualifiedIdTemplateId()
1970 LAngleLoc, TemplateArgsPtr, RAngleLoc, in ParseUnqualifiedIdTemplateId()
2322 SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc)); in ParseUnqualifiedId()
DParseDecl.cpp1825 SourceLocation LAngleLoc = in ParseDeclarationAfterDeclaratorAndAttributes() local
1830 << FixItHint::CreateInsertion(LAngleLoc, "<>"); in ParseDeclarationAfterDeclaratorAndAttributes()
1835 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, 0, 0, in ParseDeclarationAfterDeclaratorAndAttributes()
1836 LAngleLoc)); in ParseDeclarationAfterDeclaratorAndAttributes()
DParser.cpp1617 TemplateId->LAngleLoc, in TryAnnotateTypeOrScopeToken()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DTemplateBase.h514 SourceLocation LAngleLoc; variable
524 TemplateArgumentListInfo(SourceLocation LAngleLoc, in TemplateArgumentListInfo() argument
526 : LAngleLoc(LAngleLoc), RAngleLoc(RAngleLoc) {} in TemplateArgumentListInfo()
528 SourceLocation getLAngleLoc() const { return LAngleLoc; } in getLAngleLoc()
531 void setLAngleLoc(SourceLocation Loc) { LAngleLoc = Loc; } in setLAngleLoc()
555 SourceLocation LAngleLoc; member
DTypeLoc.h803 SourceLocation LAngleLoc; member
824 return this->getLocalData()->LAngleLoc; in getLAngleLoc()
827 this->getLocalData()->LAngleLoc = Loc; in setLAngleLoc()
1353 SourceLocation LAngleLoc; member
1371 return getLocalData()->LAngleLoc; in getLAngleLoc()
1374 getLocalData()->LAngleLoc = Loc; in setLAngleLoc()
1742 SourceLocation LAngleLoc; member
1799 return this->getLocalData()->LAngleLoc; in getLAngleLoc()
1802 this->getLocalData()->LAngleLoc = Loc; in setLAngleLoc()
DDeclTemplate.h51 SourceLocation LAngleLoc, RAngleLoc; variable
62 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
69 SourceLocation LAngleLoc,
127 SourceLocation getLAngleLoc() const { return LAngleLoc; } in getLAngleLoc()
143 SourceLocation LAngleLoc, in FixedSizeTemplateParameterList() argument
145 TemplateParameterList(TemplateLoc, LAngleLoc, Params, N, RAngleLoc) { in FixedSizeTemplateParameterList()
DExprCXX.h2590 return getTemplateKWAndArgsInfo()->LAngleLoc; in getLAngleLoc()
2842 return getTemplateKWAndArgsInfo()->LAngleLoc; in getLAngleLoc()
3263 return getTemplateKWAndArgsInfo()->LAngleLoc; in getLAngleLoc()
DExpr.h1053 return getTemplateKWAndArgsInfo()->LAngleLoc; in getLAngleLoc()
2445 return getTemplateKWAndArgsInfo()->LAngleLoc; in getLAngleLoc()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DTemplateBase.cpp523 LAngleLoc = Info.getLAngleLoc(); in initializeFrom()
537 LAngleLoc = Info.getLAngleLoc(); in initializeFrom()
556 Info.setLAngleLoc(LAngleLoc); in copyInto()
590 LAngleLoc = SourceLocation(); in initializeFrom()
DDeclTemplate.cpp31 SourceLocation LAngleLoc, in TemplateParameterList() argument
34 : TemplateLoc(TemplateLoc), LAngleLoc(LAngleLoc), RAngleLoc(RAngleLoc), in TemplateParameterList()
58 SourceLocation LAngleLoc, NamedDecl **Params, in Create() argument
65 return new (Mem) TemplateParameterList(TemplateLoc, LAngleLoc, Params, in Create()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCXXScopeSpec.cpp740 SourceLocation LAngleLoc, in ActOnCXXNestedNameSpecifier() argument
749 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); in ActOnCXXNestedNameSpecifier()
769 SpecTL.setLAngleLoc(LAngleLoc); in ActOnCXXNestedNameSpecifier()
813 SpecTL.setLAngleLoc(LAngleLoc); in ActOnCXXNestedNameSpecifier()
DSemaTemplate.cpp823 SourceLocation LAngleLoc, in ActOnTemplateParameterList() argument
829 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc, in ActOnTemplateParameterList()
2113 SourceLocation LAngleLoc, in ActOnTemplateIdType() argument
2123 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); in ActOnTemplateIdType()
2140 SpecTL.setLAngleLoc(LAngleLoc); in ActOnTemplateIdType()
2158 SpecTL.setLAngleLoc(LAngleLoc); in ActOnTemplateIdType()
2184 SourceLocation LAngleLoc, in ActOnTagTemplateIdType() argument
2190 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); in ActOnTagTemplateIdType()
2212 SpecTL.setLAngleLoc(LAngleLoc); in ActOnTagTemplateIdType()
2255 SpecTL.setLAngleLoc(LAngleLoc); in ActOnTagTemplateIdType()
[all …]
DDeclSpec.cpp878 SourceLocation LAngleLoc) { in setProtocolQualifiers() argument
886 ProtocolLAngleLoc = LAngleLoc; in setProtocolQualifiers()
DTreeTransform.h1880 SourceLocation LAngleLoc, in RebuildCXXNamedCastExpr() argument
1888 return getDerived().RebuildCXXStaticCastExpr(OpLoc, LAngleLoc, TInfo, in RebuildCXXNamedCastExpr()
1893 return getDerived().RebuildCXXDynamicCastExpr(OpLoc, LAngleLoc, TInfo, in RebuildCXXNamedCastExpr()
1898 return getDerived().RebuildCXXReinterpretCastExpr(OpLoc, LAngleLoc, TInfo, in RebuildCXXNamedCastExpr()
1904 return getDerived().RebuildCXXConstCastExpr(OpLoc, LAngleLoc, TInfo, in RebuildCXXNamedCastExpr()
1918 SourceLocation LAngleLoc, in RebuildCXXStaticCastExpr() argument
1926 SourceRange(LAngleLoc, RAngleLoc), in RebuildCXXStaticCastExpr()
1935 SourceLocation LAngleLoc, in RebuildCXXDynamicCastExpr() argument
1943 SourceRange(LAngleLoc, RAngleLoc), in RebuildCXXDynamicCastExpr()
1952 SourceLocation LAngleLoc, in RebuildCXXReinterpretCastExpr() argument
[all …]
DSemaLambda.cpp142 SourceLocation LAngleLoc = IntroRange.getBegin(); in getGenericLambdaTemplateParameterList() local
147 LAngleLoc, in getGenericLambdaTemplateParameterList()
DSemaTemplateInstantiateDecl.cpp2634 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, in InstantiateClassTemplatePartialSpecialization()
2761 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc, in InstantiateVarTemplatePartialSpecialization()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DParsedTemplate.h168 SourceLocation LAngleLoc; member
DSema.h4435 SourceLocation LAngleLoc,
5100 SourceLocation LAngleLoc,
5146 SourceLocation LAngleLoc,
5160 SourceLocation LAngleLoc,
5206 SourceLocation LAngleLoc,
5246 SourceLocation LAngleLoc,
5431 SourceLocation LAngleLoc,
DDeclSpec.h741 SourceLocation LAngleLoc);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/
DParser.h1171 SourceLocation &LAngleLoc,
2255 SourceLocation &LAngleLoc,
2273 SourceLocation &LAngleLoc,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp601 SourceLocation LAngleLoc, RAngleLoc; in VisitFunctionDecl() local
610 LAngleLoc = ReadSourceLocation(Record, Idx); in VisitFunctionDecl()
619 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc); in VisitFunctionDecl()
DASTReader.cpp5364 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Index); in ReadASTTemplateArgumentListInfo() local
5367 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc); in ReadASTTemplateArgumentListInfo()
6958 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx); in ReadTemplateParameterList() local
6968 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc, in ReadTemplateParameterList()

12