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 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 515 SourceLocation NameLoc;
519 NameLoc = ConsumeToken();
532 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
544 KeyLoc, ParamName, NameLoc, Depth, Position,
612 SourceLocation NameLoc;
616 NameLoc = ConsumeToken();
629 DiagnoseMisplacedEllipsis(EllipsisLoc, NameLoc, AlreadyHasEllipsis, true);
655 ParamName, NameLoc, Depth,
    [all...]
ParseExpr.cpp     [all...]
ParsePragma.cpp 461 SourceLocation NameLoc = Tok.getLocation();
475 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
    [all...]
Parser.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp     [all...]
ParseObjc.cpp 235 SourceLocation nameLoc = ConsumeToken();
257 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc);
278 Diag(nameLoc, diag::err_objc_no_attributes_on_category);
294 nameId, nameLoc,
322 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc);
373 Actions.ActOnStartClassInterface(getCurScope(), 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 93 void PragmaOpenCLExtension(clang::SourceLocation NameLoc,
97 this->NameLoc = NameLoc;
103 SourceLocation NameLoc;
  /external/llvm/lib/AsmParser/
LLParser.cpp 369 LocTy NameLoc = Lex.getLoc();
377 if (ParseStructDefinition(NameLoc, Name,
383 return Error(NameLoc, "non-struct types may not be recursive");
440 LocTy NameLoc = Lex.getLoc();
465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
477 LocTy NameLoc = Lex.getLoc();
494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
497 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
504 LocTy NameLoc = Lex.getLoc()
    [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 435 SourceLocation NameLoc;
443 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc)
444 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {}
446 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc,
448 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {}
456 SourceLocation getLoc() const { return NameLoc; }
458 void setLoc(SourceLocation L) { NameLoc = L; }
528 SourceLocation getBeginLoc() const { return NameLoc; }
    [all...]
TypeLoc.h 480 SourceLocation NameLoc;
494 return this->getLocalData()->NameLoc;
497 this->getLocalData()->NameLoc = Loc;
976 SourceLocation NameLoc;
991 return getLocalData()->NameLoc;
995 getLocalData()->NameLoc = Loc;
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 923 SourceLocation NameLoc = Tok.getLocation();
927 Toks->setLocation(NameLoc);
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 714 const std::string &Name, SMLoc NameLoc,
758 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h 479 /// \param NameLoc The source location of the template name.
494 SourceLocation NameLoc,
    [all...]

Completed in 835 milliseconds