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

  /external/clang/lib/Parse/
ParseInit.cpp 144 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
149 Diag(NameLoc, diag::ext_gnu_old_style_field_designator)
150 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc),
154 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
ParseTemplate.cpp 485 SourceLocation NameLoc;
489 NameLoc = ConsumeToken();
502 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
514 KeyLoc, ParamName, NameLoc, Depth, Position,
583 SourceLocation NameLoc;
587 NameLoc = ConsumeToken();
600 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
626 ParamName, NameLoc, Depth,
    [all...]
ParseExpr.cpp     [all...]
ParsePragma.cpp 425 SourceLocation NameLoc = Tok.getLocation();
439 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
    [all...]
Parser.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp     [all...]
ParseObjc.cpp 203 SourceLocation nameLoc = ConsumeToken();
213 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
234 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
249 nameId, nameLoc,
271 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
297 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/clang/unittests/Lex/
PPCallbacksTest.cpp 101 clang::SourceLocation NameLoc, const clang::IdentifierInfo *Name,
103 this->NameLoc = NameLoc;
109 SourceLocation NameLoc;
  /external/llvm/lib/AsmParser/
LLParser.cpp 392 LocTy NameLoc = Lex.getLoc();
400 if (ParseStructDefinition(NameLoc, Name,
406 return Error(NameLoc, "non-struct types may not be recursive");
462 LocTy NameLoc = Lex.getLoc();
487 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
489 return ParseAlias(Name, NameLoc, Visibility, DLLStorageClass, TLM,
499 LocTy NameLoc = Lex.getLoc();
516 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
518 return ParseAlias(Name, NameLoc, Visibility, DLLStorageClass, TLM,
525 LocTy NameLoc = Lex.getLoc()
    [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 434 SourceLocation NameLoc;
442 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc)
443 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {}
445 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc,
447 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {}
455 SourceLocation getLoc() const { return NameLoc; }
457 void setLoc(SourceLocation L) { NameLoc = L; }
527 SourceLocation getBeginLoc() const { return NameLoc; }
    [all...]
TypeLoc.h 447 SourceLocation NameLoc;
461 return this->getLocalData()->NameLoc;
464 this->getLocalData()->NameLoc = Loc;
894 SourceLocation NameLoc;
909 return getLocalData()->NameLoc;
913 getLocalData()->NameLoc = Loc;
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 914 SourceLocation NameLoc = Tok.getLocation();
918 Toks->setLocation(NameLoc);
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp     [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h 457 /// \param NameLoc The source location of the template name.
472 SourceLocation NameLoc,
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 733 const std::string &Name, SMLoc NameLoc,
779 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]

Completed in 848 milliseconds