Searched defs:EqualLoc (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/Parse/
H A DParseInit.cpp346 SourceLocation EqualLoc = ConsumeToken(); local
347 return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false,
H A DParseCXXInlineMethods.cpp338 SourceLocation EqualLoc = ConsumeToken(); local
354 Actions.ActOnParamDefaultArgumentError(Param, EqualLoc);
365 Actions.ActOnParamDefaultArgument(Param, EqualLoc,
628 SourceLocation EqualLoc; local
633 EqualLoc);
635 Actions.ActOnFinishCXXInClassMemberInitializer(MI.Field, EqualLoc,
H A DParseTemplate.cpp525 SourceLocation EqualLoc; local
527 if (TryConsumeToken(tok::equal, EqualLoc))
533 EqualLoc, DefaultArg);
630 SourceLocation EqualLoc; local
632 if (TryConsumeToken(tok::equal, EqualLoc)) {
645 Position, EqualLoc, DefaultArg);
678 SourceLocation EqualLoc; local
680 if (TryConsumeToken(tok::equal, EqualLoc)) {
696 Depth, Position, EqualLoc,
H A DParseDeclCXX.cpp2375 SourceLocation EqualLoc; local
2397 EqualLoc = ConsumeToken();
2559 ThisDecl, DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
2564 Actions.AddInitializerToDecl(ThisDecl, Init.get(), EqualLoc.isInvalid(),
2639 /// EqualLoc.
2659 SourceLocation &EqualLoc) {
2666 if (TryConsumeToken(tok::equal, EqualLoc)) {
2658 ParseCXXMemberInitializer(Decl *D, bool IsFunction, SourceLocation &EqualLoc) argument
H A DParseDecl.cpp1927 SourceLocation EqualLoc = ConsumeToken(); local
1959 Diag(EqualLoc, diag::err_single_decl_assign_in_for_range)
1960 << FixItHint::CreateReplacement(EqualLoc, ":");
1963 FRI->ColonLoc = EqualLoc;
3963 SourceLocation EqualLoc; local
3967 if (TryConsumeToken(tok::equal, EqualLoc)) {
3977 attrs.getList(), EqualLoc,
3996 if (EqualLoc.isValid())
5650 SourceLocation EqualLoc = Tok.getLocation(); local
5664 Actions.ActOnParamDefaultArgumentError(Param, EqualLoc);
[all...]
/external/clang/include/clang/Sema/
H A DInitialization.h529 SourceLocation EqualLoc,
533 InitLoc, EqualLoc, EqualLoc);
528 CreateCopy(SourceLocation InitLoc, SourceLocation EqualLoc, bool AllowExplicitConvs = false) argument
/external/clang/lib/Sema/
H A DSemaInit.cpp997 // FIXME: Better EqualLoc?
7342 SourceLocation EqualLoc,
7352 if (EqualLoc.isInvalid())
7353 EqualLoc = InitE->getLocStart();
7356 EqualLoc,
7341 PerformCopyInitialization(const InitializedEntity &Entity, SourceLocation EqualLoc, ExprResult Init, bool TopLevelOfInitList, bool AllowExplicit) argument
H A DSemaTemplate.cpp553 SourceLocation EqualLoc,
584 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
667 SourceLocation EqualLoc,
708 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
744 SourceLocation EqualLoc,
777 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
547 ActOnTypeParameter(Scope *S, bool Typename, SourceLocation EllipsisLoc, SourceLocation KeyLoc, IdentifierInfo *ParamName, SourceLocation ParamNameLoc, unsigned Depth, unsigned Position, SourceLocation EqualLoc, ParsedType DefaultArg) argument
664 ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, unsigned Depth, unsigned Position, SourceLocation EqualLoc, Expr *Default) argument
736 ActOnTemplateTemplateParameter(Scope* S, SourceLocation TmpLoc, TemplateParameterList *Params, SourceLocation EllipsisLoc, IdentifierInfo *Name, SourceLocation NameLoc, unsigned Depth, unsigned Position, SourceLocation EqualLoc, ParsedTemplateArgument Default) argument
H A DSemaDecl.cpp13429 SourceLocation EqualLoc, Expr *Val) {
13426 ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, SourceLocation IdLoc, IdentifierInfo *Id, AttributeList *Attr, SourceLocation EqualLoc, Expr *Val) argument
H A DSemaDeclCXX.cpp251 SourceLocation EqualLoc) {
267 EqualLoc);
274 CheckCompletedExpr(Arg, EqualLoc);
299 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, argument
309 Diag(EqualLoc, diag::err_param_default_argument)
325 Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack)
337 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
345 SourceLocation EqualLoc,
358 SourceLocation EqualLoc) {
366 OpaqueValueExpr(EqualLoc,
250 SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, SourceLocation EqualLoc) argument
344 ActOnParamUnparsedDefaultArgument(Decl *param, SourceLocation EqualLoc, SourceLocation ArgLoc) argument
357 ActOnParamDefaultArgumentError(Decl *param, SourceLocation EqualLoc) argument
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2176 SMLoc EqualLoc = Lexer.getLoc(); local
2201 return Error(EqualLoc, "Recursive use of '" + Name + "'");
2207 return Error(EqualLoc, "redefinition of '" + Name + "'");
2209 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
2211 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
2218 Error(EqualLoc, "expected absolute expression");

Completed in 304 milliseconds