HomeSort by relevance Sort by last modified time
    Searched refs:NameLoc (Results 1 - 25 of 45) 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),
Sema.h     [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 416 SourceLocation NameLoc;
424 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc)
425 : Name(Name), NameLoc(NameLoc), LocInfo(Name) {}
427 DeclarationNameInfo(DeclarationName Name, SourceLocation NameLoc,
429 : Name(Name), NameLoc(NameLoc), LocInfo(LocInfo) {}
437 SourceLocation getLoc() const { return NameLoc; }
439 void setLoc(SourceLocation L) { NameLoc = L; }
509 SourceLocation getBeginLoc() const { return NameLoc; }
    [all...]
TypeLoc.h 390 SourceLocation NameLoc;
403 return this->getLocalData()->NameLoc;
406 this->getLocalData()->NameLoc = Loc;
828 SourceLocation NameLoc;
842 return getLocalData()->NameLoc;
846 getLocalData()->NameLoc = Loc;
    [all...]
ExprCXX.h     [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 63 /// \param NameLoc - The source location of the name.
67 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
  /external/clang/lib/Parse/
ParseInit.cpp 88 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
93 Diag(NameLoc, diag::ext_gnu_old_style_field_designator)
94 << FixItHint::CreateReplacement(SourceRange(NameLoc, ColonLoc),
98 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
ParseTemplate.cpp 485 SourceLocation NameLoc;
489 NameLoc = ConsumeToken();
510 EllipsisLoc, KeyLoc, ParamName, NameLoc,
559 SourceLocation NameLoc;
563 NameLoc = ConsumeToken();
599 ParamName, NameLoc, Depth,
    [all...]
ParseDeclCXX.cpp     [all...]
ParseExprCXX.cpp     [all...]
ParsePragma.cpp 428 SourceLocation NameLoc = Tok.getLocation();
464 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
ParseExpr.cpp     [all...]
ParseStmt.cpp 116 SourceLocation NameLoc = Tok.getLocation();
123 = Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next);
154 Tok.setAnnotationEndLoc(NameLoc);
161 Tok.setAnnotationEndLoc(NameLoc);
169 Id.setIdentifier(Name, NameLoc);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 702 /// \param NameLoc The source location of the name of the parameter pack.
707 SourceLocation NameLoc,
711 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName);
729 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name_suggest)
732 NameLoc, Corrected.getAsString(getLangOptions()));
748 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name)
754 ParameterPack, NameLoc, RParenLoc);
SemaDecl.cpp 70 ParsedType Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
102 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
107 II, NameLoc);
124 LookupResult Result(*this, &II, NameLoc, Kind);
158 TemplateName.setIdentifier(NewII, NameLoc);
162 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
172 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
179 Diag(NameLoc, diag::err_unknown_typename_suggest)
181 << FixItHint::CreateReplacement(SourceRange(NameLoc),
188 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
    [all...]
SemaTemplate.cpp 720 SourceLocation NameLoc,
732 NameLoc.isInvalid()? TmpLoc : NameLoc,
811 IdentifierInfo *Name, SourceLocation NameLoc,
    [all...]
SemaExprObjC.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 66 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
485 ParseInstruction(StringRef Name, SMLoc NameLoc,
489 Operands.push_back(MBlazeOperand::CreateToken(Name.substr(0,dotLoc),NameLoc));
491 Operands.push_back(MBlazeOperand::CreateToken(Name.substr(dotLoc),NameLoc));
  /external/llvm/lib/AsmParser/
LLParser.cpp 330 LocTy NameLoc = Lex.getLoc();
338 if (ParseStructDefinition(NameLoc, Name,
344 return Error(NameLoc, "non-struct types may not be recursive");
398 LocTy NameLoc = Lex.getLoc();
418 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
419 return ParseAlias(Name, NameLoc, Visibility);
427 LocTy NameLoc = Lex.getLoc();
439 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440 return ParseAlias(Name, NameLoc, Visibility);
569 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
    [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 595 return NameLoc;
613 return NameLoc;
620 return NameLoc;
ExprCXX.cpp     [all...]
  /external/llvm/lib/TableGen/
TGParser.h 133 Init *ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc,
TGParser.cpp 672 const std::string &Name, SMLoc NameLoc,
709 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 93 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
669 ParseInstruction(StringRef Name, SMLoc NameLoc,
736 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
739 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
    [all...]

Completed in 4297 milliseconds

1 2