HomeSort by relevance Sort by last modified time
    Searched defs:ND (Results 26 - 42 of 42) sorted by null

12

  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 521 NamedDecl *ND = D->getFriendDecl();
522 assert(ND && "friend decl must be a decl or a type!");
528 Decl *NewND = Visit(ND);
    [all...]
SemaExprCXX.cpp     [all...]
SemaLookup.cpp 886 if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
888 R.addDecl(ND);
    [all...]
SemaChecking.cpp     [all...]
SemaCodeComplete.cpp 80 void Add(NamedDecl *ND, unsigned Index) {
83 DeclOrVector = ND;
98 DeclIndexPair(ND, Index));
264 /// \param ND the declaration that we are inspecting.
268 bool isInterestingDecl(NamedDecl *ND, bool &AsNestedNameSpecifier) const;
320 bool IsOrdinaryName(NamedDecl *ND) const;
321 bool IsOrdinaryNonTypeName(NamedDecl *ND) const;
322 bool IsIntegralConstantValue(NamedDecl *ND) const;
323 bool IsOrdinaryNonValueName(NamedDecl *ND) const;
324 bool IsNestedNameSpecifier(NamedDecl *ND) const
    [all...]
SemaTemplate.cpp     [all...]
SemaDecl.cpp 70 if (NamedDecl *ND = candidate.getCorrectionDecl())
71 return (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
72 (AllowInvalidDecl || !ND->isInvalidDecl());
    [all...]
SemaOverload.cpp     [all...]
TreeTransform.h     [all...]
SemaDeclCXX.cpp 409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp     [all...]
Command.cpp 808 const size_t ND = densities.size();
809 for (size_t i=0; i<ND; i++) {
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 430 void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND);
560 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
563 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [all...]
RewriteObjC.cpp 397 void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND);
554 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
557 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 708 bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
709 if (TypeSourceInfo *TSInfo = ND->getTypeSourceInfo()) {
718 if ((FTL && !isa<CXXConversionDecl>(ND) && Visit(FTL->getResultLoc())) ||
723 if (NestedNameSpecifierLoc QualifierLoc = ND->getQualifierLoc())
728 if (VisitDeclarationNameInfo(ND->getNameInfo()))
740 if (ND->doesThisDeclarationHaveABody() && !ND->isLateTemplateParsed()) {
741 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ND)) {
771 if (Visit(MakeCXCursor(Initializer, ND, TU, RegionOfInterest)))
776 if (Visit(MakeCXCursor(ND->getBody(), StmtParent, TU, RegionOfInterest))
    [all...]

Completed in 1486 milliseconds

12