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.cpp325 SourceLocation EqualLoc = ConsumeToken(); local
351 Actions.ActOnParamDefaultArgument(LM.DefaultArgs[I].Param, EqualLoc,
530 SourceLocation EqualLoc; local
535 EqualLoc);
537 Actions.ActOnFinishCXXInClassMemberInitializer(MI.Field, EqualLoc,
H A DParseTemplate.cpp507 SourceLocation EqualLoc; local
509 if (TryConsumeToken(tok::equal, EqualLoc))
515 EqualLoc, DefaultArg);
612 SourceLocation EqualLoc; local
614 if (TryConsumeToken(tok::equal, EqualLoc)) {
627 Position, EqualLoc, DefaultArg);
660 SourceLocation EqualLoc; local
662 if (TryConsumeToken(tok::equal, EqualLoc)) {
678 Depth, Position, EqualLoc,
H A DParseDeclCXX.cpp2168 SourceLocation EqualLoc; local
2196 EqualLoc = ConsumeToken();
2358 ThisDecl, DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
2363 Actions.AddInitializerToDecl(ThisDecl, Init.get(), EqualLoc.isInvalid(),
2437 /// EqualLoc.
2457 SourceLocation &EqualLoc) {
2464 if (TryConsumeToken(tok::equal, EqualLoc)) {
2456 ParseCXXMemberInitializer(Decl *D, bool IsFunction, SourceLocation &EqualLoc) argument
H A DParseDecl.cpp1806 SourceLocation EqualLoc = ConsumeToken(); local
1838 Diag(EqualLoc, diag::err_single_decl_assign_in_for_range)
1839 << FixItHint::CreateReplacement(EqualLoc, ":");
1842 FRI->ColonLoc = EqualLoc;
3808 SourceLocation EqualLoc; local
3812 if (TryConsumeToken(tok::equal, EqualLoc)) {
3822 attrs.getList(), EqualLoc,
3841 if (EqualLoc.isValid())
5402 SourceLocation EqualLoc = Tok.getLocation(); local
5424 Actions.ActOnParamUnparsedDefaultArgument(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.cpp950 // FIXME: Better EqualLoc?
7198 SourceLocation EqualLoc,
7208 if (EqualLoc.isInvalid())
7209 EqualLoc = InitE->getLocStart();
7212 EqualLoc,
7197 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);
671 SourceLocation EqualLoc,
712 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
747 SourceLocation EqualLoc,
780 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
668 ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, unsigned Depth, unsigned Position, SourceLocation EqualLoc, Expr *Default) argument
739 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.cpp12855 SourceLocation EqualLoc, Expr *Val) {
12852 ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, SourceLocation IdLoc, IdentifierInfo *Id, AttributeList *Attr, SourceLocation EqualLoc, Expr *Val) argument
H A DSemaDeclCXX.cpp250 SourceLocation EqualLoc) {
266 EqualLoc);
273 CheckCompletedExpr(Arg, EqualLoc);
298 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, argument
308 Diag(EqualLoc, diag::err_param_default_argument)
327 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
335 SourceLocation EqualLoc,
249 SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, SourceLocation EqualLoc) argument
334 ActOnParamUnparsedDefaultArgument(Decl *param, SourceLocation EqualLoc, SourceLocation ArgLoc) argument
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2173 SMLoc EqualLoc = Lexer.getLoc(); local
2198 return Error(EqualLoc, "Recursive use of '" + Name + "'");
2204 return Error(EqualLoc, "redefinition of '" + Name + "'");
2206 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
2208 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
2215 Error(EqualLoc, "expected absolute expression");

Completed in 2492 milliseconds