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

1 2 3

  /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 152 SourceLocation NameLoc, Sema::LookupNameKind LookupKind,
158 NameInfo(Name, NameLoc),
  /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...]
ExprCXX.h 625 SourceLocation nameLoc)
631 MemberLoc(nameLoc), IsArrow(isArrow),
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 101 clang::SourceLocation NameLoc, const clang::IdentifierInfo *Name,
103 this->NameLoc = NameLoc;
109 SourceLocation NameLoc;
  /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...]
ParseExprCXX.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseExpr.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 133 /// \param NameLoc - The source location of the name.
138 SMLoc NameLoc, OperandVector &Operands) = 0;
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 759 SMLoc NameLoc, OperandVector &Operands) override;
    [all...]
  /external/clang/include/clang/Lex/
PPCallbacks.h 221 virtual void PragmaOpenCLExtension(SourceLocation NameLoc,
418 void PragmaOpenCLExtension(SourceLocation NameLoc, const IdentifierInfo *Name,
420 First->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State);
421 Second->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State);
  /external/clang/lib/AST/
DeclarationName.cpp 562 return NameLoc;
580 return NameLoc;
587 return NameLoc;
ExprCXX.cpp     [all...]
  /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/lib/Sema/
SemaDecl.cpp 133 SourceLocation NameLoc) {
172 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
180 SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
184 DepTL.setNameLoc(NameLoc);
198 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
231 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
235 II, NameLoc);
251 LookupResult Result(*this, &II, NameLoc, Kind);
276 recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
294 TemplateName.setIdentifier(NewII, NameLoc);
    [all...]
SemaTemplateVariadic.cpp 790 /// \param NameLoc The source location of the name of the parameter pack.
795 SourceLocation NameLoc,
799 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName);
830 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name)
838 ParameterPack, NameLoc, RParenLoc);
    [all...]
SemaTemplate.cpp 744 SourceLocation NameLoc,
756 NameLoc.isInvalid()? TmpLoc : NameLoc,
764 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 170 Init *ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc,
TGParser.cpp 733 const std::string &Name, SMLoc NameLoc,
779 Error(NameLoc, "Variable not defined: '" + Name + "'");
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 59 bool parseSysAlias(StringRef Name, SMLoc NameLoc, OperandVector &Operands);
129 SMLoc NameLoc, OperandVector &Operands) override;
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 55 SMLoc NameLoc, OperandVector &Operands) override;
451 StringRef Name, SMLoc NameLoc,
455 Operands.push_back(SparcOperand::CreateToken(Name, NameLoc));
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 345 SMLoc NameLoc, OperandVector &Operands) override;
601 StringRef Name, SMLoc NameLoc,
603 Operands.push_back(SystemZOperand::createToken(Name, NameLoc));

Completed in 601 milliseconds

1 2 3