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

1 2 3

  /external/clang/lib/Sema/
IdentifierResolver.cpp 155 DeclarationName Name = D->getDeclName();
180 DeclarationName Name = D->getDeclName();
221 DeclarationName Name = D->getDeclName();
239 assert(Old->getDeclName() == New->getDeclName() &&
242 DeclarationName Name = Old->getDeclName();
446 void *InfoPtr = D->getDeclName().getFETokenInfo<void>();
SemaObjCProperty.cpp 101 << property->getDeclName()
126 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
208 DeclContext::lookup_result R = Super->lookup(Res->getDeclName());
447 PIDecl->getDeclName().getAsIdentifierInfo())) {
488 << CCPrimary->getDeclName();
657 << property->getDeclName()
658 << ivar->getDeclName()
664 << property->getDeclName()
665 << ivar->getDeclName();
670 << property->getDeclName()
    [all...]
SemaTemplateInstantiateDecl.cpp 192 D->getLocation(), D->getDeclName());
287 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
300 D->getDeclName(), InstParams, AliasInst);
326 D->getDeclName());
373 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
453 D->getLocation(), D->getDeclName());
489 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
512 if (!Field->getDeclName()) {
794 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
821 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation()
    [all...]
SemaDecl.cpp     [all...]
Sema.cpp 728 << DiagD->getDeclName();
735 << DiagD->getDeclName();
738 << /*function*/0 << DiagD->getDeclName();
744 << DiagD->getDeclName();
752 << /*variable*/1 << DiagD->getDeclName();
755 << DiagD->getDeclName();
777 << D->getDeclName();
    [all...]
SemaDeclObjC.cpp 264 << ND->getDeclName();
469 << PrevIDecl->getDeclName();
498 << SuperName << ClassName << PrevDecl->getDeclName();
500 << PrevDecl->getDeclName();
546 SuperClassDecl->getDeclName(),
732 << PDecl->getDeclName();
778 << Method->getDeclName();
    [all...]
SemaExprMember.cpp 621 << ND->getDeclName();
746 << indirectField->getDeclName();
772 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
789 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
    [all...]
SemaDeclCXX.cpp 94 << Param->getDeclName() << DefaultArg->getSourceRange();
102 << VDecl->getDeclName() << DefaultArg->getSourceRange();
505 << New->getDeclName()
    [all...]
SemaExceptionSpec.cpp 139 Decl->getDeclName().getCXXOverloadedOperator() != OO_Delete &&
140 Decl->getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
154 OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator();
241 switch (New->getDeclName().getCXXOverloadedOperator()) {
    [all...]
AnalysisBasedWarnings.cpp 437 S.Diag(VD->getLocation(), diag::note_block_var_fixit_add_initialization) << VD->getDeclName()
457 S.Diag(Loc, diag::note_var_fixit_add_initialization) << VD->getDeclName()
609 << VD->getDeclName() << IsCapturedByBlock << DiagKind
624 << VD->getDeclName() << IsCapturedByBlock
658 << VD->getDeclName() << VD->getLocation() << DRE->getSourceRange();
669 << VD->getDeclName();
679 << VD->getDeclName();
    [all...]
SemaAccess.cpp 256 if (From->getDeclName() != To->getDeclName())
360 if (Context->getDeclName() != Friend->getDeclName())
477 if (CTD->getDeclName() != Friend->getDeclName())
    [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaExpr.cpp 73 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
114 S.Diag(Loc, diag::err_unavailable) << D->getDeclName();
117 << ObjCPDecl->getDeclName() << 1;
121 << D->getDeclName();
125 << D->getDeclName() << Message;
130 << ObjCPDecl->getDeclName() << 1;
265 << D->getDeclName();
357 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
    [all...]
CodeCompleteConsumer.cpp 584 DeclarationName Name = R.Declaration->getDeclName();
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
DeclBase.cpp 1077 if (!ND->getDeclName()) return;
1082 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
    [all...]
Decl.cpp     [all...]
ItaniumMangle.cpp 298 mangleUnqualifiedName(ND, ND->getDeclName(), UnknownArity);
382 if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
    [all...]
MicrosoftMangle.cpp 86 mangleUnqualifiedName(ND, ND->getDeclName());
189 !FD->getDeclName().isIdentifier()))
488 assert(D->getDeclName().getAsIdentifierInfo() &&
490 mangleSourceName(D->getDeclName().getAsIdentifierInfo());
    [all...]
NSAPI.cpp 393 if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
  /external/clang/include/clang/Sema/
TypoCorrection.h 53 : CorrectionName(Name->getDeclName()), CorrectionNameSpec(NNS),
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 172 Writer.AddDeclarationName(D->getDeclName(), Record);
198 D->getDeclName().getNameKind() == DeclarationName::Identifier)
257 D->getDeclName().getNameKind() == DeclarationName::Identifier)
281 D->getDeclName().getNameKind() == DeclarationName::Identifier)
314 Writer.AddDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record);
527 D->getDeclName())
644 if (!D->getDeclName())
659 D->getDeclName())
714 D->getDeclName().getNameKind() == DeclarationName::Identifier &&
    [all...]
ASTReaderDecl.cpp 501 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 488 const std::string &declName = ND->getDeclName().getAsString();
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 319 if (!Packed && ((*FJ)->hasAttr<PackedAttr>() || !(*FJ)->getDeclName()))
499 if (field->getDeclName() && !checkedFirstFieldZeroInit) {
    [all...]

Completed in 291 milliseconds

1 2 3