HomeSort by relevance Sort by last modified time
    Searched refs:NameLoc (Results 1 - 25 of 47) sorted by null

1 2

  /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();
Lookup.h 150 SourceLocation NameLoc, Sema::LookupNameKind LookupKind,
156 NameInfo(Name, NameLoc),
  /external/clang/include/clang/AST/
DeclarationName.h 430 SourceLocation NameLoc;
438 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc)
439 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {}
441 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc,
443 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {}
451 SourceLocation getLoc() const { return NameLoc; }
453 void setLoc(SourceLocation L) { NameLoc = L; }
523 SourceLocation getBeginLoc() const { return NameLoc; }
    [all...]
TypeLoc.h 394 SourceLocation NameLoc;
407 return this->getLocalData()->NameLoc;
410 this->getLocalData()->NameLoc = Loc;
833 SourceLocation NameLoc;
848 return getLocalData()->NameLoc;
852 getLocalData()->NameLoc = Loc;
    [all...]
ExprCXX.h     [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 62 /// \param NameLoc - The source location of the name.
66 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 50 bool ParseInstruction(StringRef Name, SMLoc NameLoc,
53 bool parseMathOperation(StringRef Name, SMLoc NameLoc,
762 parseMathOperation(StringRef Name, SMLoc NameLoc,
768 Operands.push_back(MipsOperand::CreateToken(Format1, NameLoc));
771 Operands.push_back(MipsOperand::CreateToken(Format2, NameLoc));
815 ParseInstruction(StringRef Name, SMLoc NameLoc,
820 Operands.push_back(MipsOperand::CreateToken(Name, NameLoc));
828 Operands.push_back(MipsOperand::CreateToken(Mnemonic, NameLoc));
836 Operands.push_back(MipsOperand::CreateToken(Format, NameLoc));
840 Operands.push_back(MipsOperand::CreateToken(".", NameLoc));
    [all...]
  /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));
ParseTemplate.cpp 500 SourceLocation NameLoc;
504 NameLoc = ConsumeToken();
526 EllipsisLoc, KeyLoc, ParamName, NameLoc,
587 SourceLocation NameLoc;
591 NameLoc = ConsumeToken();
625 ParamName, NameLoc, Depth,
    [all...]
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp     [all...]
ParseExpr.cpp     [all...]
ParsePragma.cpp 528 SourceLocation NameLoc = Tok.getLocation();
564 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
Parser.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 70 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
487 ParseInstruction(StringRef Name, SMLoc NameLoc,
491 Operands.push_back(MBlazeOperand::CreateToken(Name.substr(0,dotLoc),NameLoc));
493 Operands.push_back(MBlazeOperand::CreateToken(Name.substr(dotLoc),NameLoc));
  /external/llvm/lib/AsmParser/
LLParser.cpp 326 LocTy NameLoc = Lex.getLoc();
334 if (ParseStructDefinition(NameLoc, Name,
340 return Error(NameLoc, "non-struct types may not be recursive");
394 LocTy NameLoc = Lex.getLoc();
414 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
415 return ParseAlias(Name, NameLoc, Visibility);
423 LocTy NameLoc = Lex.getLoc();
435 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
436 return ParseAlias(Name, NameLoc, Visibility);
565 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
    [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 548 return NameLoc;
566 return NameLoc;
573 return NameLoc;
  /external/clang/lib/Sema/
SemaDecl.cpp 133 ParsedType Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
166 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
171 II, NameLoc);
188 LookupResult Result(*this, &II, NameLoc, Kind);
222 TemplateName.setIdentifier(NewII, NameLoc);
226 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
236 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
244 Diag(NameLoc, diag::err_unknown_type_or_class_name_suggest)
246 << FixItHint::CreateReplacement(SourceRange(NameLoc),
253 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
    [all...]
SemaLambda.cpp 634 DeclarationNameLoc NameLoc;
635 NameLoc.NamedType.TInfo = S.Context.getTrivialTypeSourceInfo(FunctionPtrTy,
639 DeclarationNameInfo(Name, Loc, NameLoc),
706 DeclarationNameLoc NameLoc;
707 NameLoc.NamedType.TInfo = S.Context.getTrivialTypeSourceInfo(BlockPtrTy, Loc);
710 DeclarationNameInfo(Name, Loc, NameLoc),
    [all...]
SemaTemplateVariadic.cpp 791 /// \param NameLoc The source location of the name of the parameter pack.
796 SourceLocation NameLoc,
800 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName);
817 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name_suggest)
820 NameLoc, Corrected.getAsString(getLangOpts()));
835 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name)
843 ParameterPack, NameLoc, RParenLoc);
SemaTemplate.cpp 755 SourceLocation NameLoc,
767 NameLoc.isInvalid()? TmpLoc : NameLoc,
    [all...]
SemaTemplateInstantiate.cpp     [all...]
  /external/llvm/lib/TableGen/
TGParser.h 167 Init *ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc,
TGParser.cpp 750 const std::string &Name, SMLoc NameLoc,
796 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 117 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
987 ParseInstruction(StringRef Name, SMLoc NameLoc,
    [all...]

Completed in 381 milliseconds

1 2