HomeSort by relevance Sort by last modified time
    Searched defs:NameLoc (Results 1 - 21 of 21) sorted by null

  /external/clang/lib/Parse/
ParseInit.cpp 162 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
167 Diag(NameLoc, diag::ext_gnu_old_style_field_designator)
168 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc),
172 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
ParsePragma.cpp 164 SourceLocation NameLoc = Tok.getLocation();
178 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
707 SourceLocation NameLoc = Tok.getLocation();
746 Toks[0].setLocation(NameLoc);
ParseTemplate.cpp 495 SourceLocation NameLoc;
499 NameLoc = ConsumeToken();
521 EllipsisLoc, KeyLoc, ParamName, NameLoc,
582 SourceLocation NameLoc;
586 NameLoc = ConsumeToken();
620 ParamName, NameLoc, Depth,
    [all...]
ParseExpr.cpp     [all...]
ParseExprCXX.cpp     [all...]
Parser.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseObjc.cpp 204 SourceLocation nameLoc = ConsumeToken();
214 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
234 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
249 nameId, nameLoc,
271 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
293 Actions.ActOnStartClassInterface(AtLoc, nameId, nameLoc,
    [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
Designator.h 48 unsigned NameLoc;
86 return SourceLocation::getFromRawEncoding(FieldInfo.NameLoc);
127 SourceLocation NameLoc) {
132 D.FieldInfo.NameLoc = NameLoc.getRawEncoding();
Sema.h     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 383 LocTy NameLoc = Lex.getLoc();
391 if (ParseStructDefinition(NameLoc, Name,
397 return Error(NameLoc, "non-struct types may not be recursive");
451 LocTy NameLoc = Lex.getLoc();
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
480 LocTy NameLoc = Lex.getLoc();
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
622 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
    [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 433 SourceLocation NameLoc;
441 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc)
442 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {}
444 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc,
446 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {}
454 SourceLocation getLoc() const { return NameLoc; }
456 void setLoc(SourceLocation L) { NameLoc = L; }
526 SourceLocation getBeginLoc() const { return NameLoc; }
    [all...]
TypeLoc.h 444 SourceLocation NameLoc;
458 return this->getLocalData()->NameLoc;
461 this->getLocalData()->NameLoc = Loc;
891 SourceLocation NameLoc;
906 return getLocalData()->NameLoc;
910 getLocalData()->NameLoc = Loc;
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 911 SourceLocation NameLoc = Tok.getLocation();
915 Toks->setLocation(NameLoc);
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 832 DeclarationNameLoc NameLoc;
833 NameLoc.NamedType.TInfo = S.Context.getTrivialTypeSourceInfo(FunctionPtrTy,
837 DeclarationNameInfo(Name, Loc, NameLoc),
    [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h 454 /// \param NameLoc The source location of the template name.
469 SourceLocation NameLoc,
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 743 const std::string &Name, SMLoc NameLoc,
789 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]

Completed in 2324 milliseconds