Home
last modified time | relevance | path

Searched refs:KeyLoc (Results 1 – 18 of 18) sorted by relevance

/external/clang/lib/Sema/
DSemaExprCXX.cpp3890 Sema &Self, SourceLocation KeyLoc, ASTContext &C, in HasNoThrowOperator() argument
3900 DeclarationNameInfo NameInfo(Name, KeyLoc); in HasNoThrowOperator()
3915 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in HasNoThrowOperator()
3926 SourceLocation KeyLoc, QualType T) { in EvaluateUnaryTypeTrait() argument
4151 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
4193 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait()
4206 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait()
4237 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
4273 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
4325 QualType RhsT, SourceLocation KeyLoc);
[all …]
DSemaTemplate.cpp564 SourceLocation KeyLoc, in ActOnTypeParameter() argument
575 Loc = KeyLoc; in ActOnTypeParameter()
580 KeyLoc, Loc, Depth, Position, ParamName, in ActOnTypeParameter()
DSemaExpr.cpp1390 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, in ActOnGenericSelectionExpr() argument
1407 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr()
1416 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, in CreateGenericSelectionExpr() argument
1502 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
1555 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
DTreeTransform.h2332 ExprResult RebuildGenericSelectionExpr(SourceLocation KeyLoc, in RebuildGenericSelectionExpr() argument
2338 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
/external/llvm-project/clang/lib/Sema/
DSemaExprCXX.cpp4656 Sema &Self, SourceLocation KeyLoc, ASTContext &C, in HasNoThrowOperator() argument
4666 DeclarationNameInfo NameInfo(Name, KeyLoc); in HasNoThrowOperator()
4680 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in HasNoThrowOperator()
4691 SourceLocation KeyLoc, QualType T) { in EvaluateUnaryTypeTrait() argument
4929 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
4971 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait()
4984 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, in EvaluateUnaryTypeTrait()
5017 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
5055 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); in EvaluateUnaryTypeTrait()
5090 QualType RhsT, SourceLocation KeyLoc);
[all …]
DSemaExpr.cpp1577 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, in ActOnGenericSelectionExpr() argument
1594 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in ActOnGenericSelectionExpr()
1603 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, in CreateGenericSelectionExpr() argument
1689 return GenericSelectionExpr::Create(Context, KeyLoc, ControllingExpr, Types, in CreateGenericSelectionExpr()
1743 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, in CreateGenericSelectionExpr()
DSemaTemplate.cpp1031 SourceLocation KeyLoc, in ActOnTypeParameter() argument
1044 KeyLoc, ParamNameLoc, Depth, Position, in ActOnTypeParameter()
DTreeTransform.h2726 ExprResult RebuildGenericSelectionExpr(SourceLocation KeyLoc, in RebuildGenericSelectionExpr() argument
2732 return getSema().CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, in RebuildGenericSelectionExpr()
/external/llvm-project/clang/lib/Parse/
DParseTemplate.cpp768 SourceLocation KeyLoc; in ParseTypeParameter() local
778 KeyLoc = ConsumeAnnotationToken(); in ParseTypeParameter()
785 KeyLoc = ConsumeToken(); in ParseTypeParameter()
829 KeyLoc, ParamName, NameLoc, in ParseTypeParameter()
DParseExpr.cpp1676 SourceLocation KeyLoc = ConsumeToken(); in ParseCastExpression() local
1691 Res = Actions.ActOnNoexceptExpr(KeyLoc, T.getOpenLocation(), Res.get(), in ParseCastExpression()
3165 SourceLocation KeyLoc = ConsumeToken(); in ParseGenericSelectionExpression() local
3236 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
/external/clang/lib/Parse/
DParseExpr.cpp1294 SourceLocation KeyLoc = ConsumeToken(); in ParseCastExpression() local
1308 Result = Actions.ActOnNoexceptExpr(KeyLoc, T.getOpenLocation(), in ParseCastExpression()
2500 SourceLocation KeyLoc = ConsumeToken(); in ParseGenericSelectionExpression() local
2503 Diag(KeyLoc, diag::ext_c11_generic_selection); in ParseGenericSelectionExpression()
2574 return Actions.ActOnGenericSelectionExpr(KeyLoc, DefaultLoc, in ParseGenericSelectionExpression()
DParseTemplate.cpp508 SourceLocation KeyLoc = ConsumeToken(); in ParseTypeParameter() local
549 KeyLoc, ParamName, NameLoc, Depth, Position, in ParseTypeParameter()
/external/clang/include/clang/AST/
DDeclTemplate.h1049 TemplateTypeParmDecl(DeclContext *DC, SourceLocation KeyLoc,
1052 : TypeDecl(TemplateTypeParm, DC, IdLoc, Id, KeyLoc), Typename(Typename),
1060 SourceLocation KeyLoc,
/external/clang/lib/AST/
DDeclTemplate.cpp474 SourceLocation KeyLoc, SourceLocation NameLoc, in Create() argument
478 new (C, DC) TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename); in Create()
/external/llvm-project/clang/include/clang/AST/
DDeclTemplate.h1207 TemplateTypeParmDecl(DeclContext *DC, SourceLocation KeyLoc,
1211 : TypeDecl(TemplateTypeParm, DC, IdLoc, Id, KeyLoc), Typename(Typename),
1218 SourceLocation KeyLoc,
/external/llvm-project/clang/lib/AST/
DDeclTemplate.cpp593 SourceLocation KeyLoc, SourceLocation NameLoc, in Create() argument
601 TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename, in Create()
/external/clang/include/clang/Sema/
DSema.h3877 ExprResult ActOnGenericSelectionExpr(SourceLocation KeyLoc,
3883 ExprResult CreateGenericSelectionExpr(SourceLocation KeyLoc,
4817 ExprResult ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation LParen,
4819 ExprResult BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
5683 SourceLocation KeyLoc,
/external/llvm-project/clang/include/clang/Sema/
DSema.h5061 ExprResult ActOnGenericSelectionExpr(SourceLocation KeyLoc,
5067 ExprResult CreateGenericSelectionExpr(SourceLocation KeyLoc,
6134 ExprResult ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation LParen,
6136 ExprResult BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
7303 SourceLocation KeyLoc,