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

12 3

  /external/clang/lib/AST/
ItaniumMangle.cpp 159 bool getNextDiscriminator(const NamedDecl *ND, unsigned &disc) {
161 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(ND))
166 if (const TagDecl *Tag = dyn_cast<TagDecl>(ND)) {
172 if (ND->isExternallyVisible()) {
173 unsigned discriminator = getASTContext().getManglingNumber(ND);
181 unsigned &discriminator = Uniquifier[ND];
183 const DeclContext *DC = getEffectiveDeclContext(ND);
184 discriminator = ++Discriminator[std::make_pair(DC, ND->getIdentifier())];
288 void mangleName(const NamedDecl *ND);
290 void mangleNameOrStandardSubstitution(const NamedDecl *ND);
    [all...]
Type.cpp 48 NamedDecl *ND = NULL;
52 ND = ty->getAs<RecordType>()->getDecl();
54 ND = ty->getAs<EnumType>()->getDecl();
56 ND = ty->getAs<TypedefType>()->getDecl();
61 if (ND)
62 return ND->getIdentifier();
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 165 const NamedDecl *ND = cast<NamedDecl>(&D);
166 const DeclContext *DC = ND->getDeclContext();
    [all...]
CodeGenModule.cpp 417 const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
423 if (!getCXXABI().getMangleContext().shouldMangleDeclName(ND)) {
424 IdentifierInfo *II = ND->getIdentifier();
433 if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND))
435 else if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND))
438 getCXXABI().getMangleContext().mangleName(ND, Out);
681 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
682 setGlobalVisibility(GV, ND);
    [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 710 getDepthAndIndex(NamedDecl *ND) {
711 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
714 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
717 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
    [all...]
SemaLookup.cpp 898 if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
900 R.addDecl(ND);
    [all...]
SemaTemplateInstantiateDecl.cpp 146 NamedDecl *ND = dyn_cast<NamedDecl>(New);
148 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
150 ND && ND->isCXXInstanceMember());
563 NamedDecl *ND = D->getFriendDecl();
564 assert(ND && "friend decl must be a decl or a type!");
570 Decl *NewND = Visit(ND);
    [all...]
SemaCodeComplete.cpp 81 void Add(const NamedDecl *ND, unsigned Index) {
84 DeclOrVector = ND;
100 DeclIndexPair(ND, Index));
269 /// \param ND the declaration that we are inspecting.
273 bool isInterestingDecl(const NamedDecl *ND,
326 bool IsOrdinaryName(const NamedDecl *ND) const;
327 bool IsOrdinaryNonTypeName(const NamedDecl *ND) const;
328 bool IsIntegralConstantValue(const NamedDecl *ND) const;
329 bool IsOrdinaryNonValueName(const NamedDecl *ND) const;
330 bool IsNestedNameSpecifier(const NamedDecl *ND) const
    [all...]
SemaDeclAttr.cpp 1403 NamedDecl *nd = cast<NamedDecl>(D); local
2645 NamedDecl *nd = cast<NamedDecl>(D); local
    [all...]
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp     [all...]
SemaDecl.cpp 71 if (NamedDecl *ND = candidate.getCorrectionDecl())
72 return (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
73 (AllowInvalidDecl || !ND->isInvalidDecl());
    [all...]
  /external/eigen/blas/testing/
cblat2.f 435 $ LDAS, LX, LY, M, ML, MS, N, NARGS, NC, ND, NK,
472 ND = N/2 + 1
476 $ M = MAX( N - ND, 0 )
478 $ M = MIN( N + ND, NMAX )
    [all...]
dblat2.f 425 $ LDAS, LX, LY, M, ML, MS, N, NARGS, NC, ND, NK,
462 ND = N/2 + 1
466 $ M = MAX( N - ND, 0 )
468 $ M = MIN( N + ND, NMAX )
    [all...]
sblat2.f 425 $ LDAS, LX, LY, M, ML, MS, N, NARGS, NC, ND, NK,
462 ND = N/2 + 1
466 $ M = MAX( N - ND, 0 )
468 $ M = MIN( N + ND, NMAX )
    [all...]
zblat2.f 437 $ LDAS, LX, LY, M, ML, MS, N, NARGS, NC, ND, NK,
474 ND = N/2 + 1
478 $ M = MAX( N - ND, 0 )
480 $ M = MIN( N + ND, NMAX )
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp     [all...]
Command.cpp     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 283 const NamedDecl *ND = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
284 const ParmVarDecl *PV = dyn_cast_or_null<ParmVarDecl>(ND);
301 makeNamedVar(ND);
316 const NamedDecl *ND = ME->getMemberDecl();
318 unsigned Root = makeDot(ND, false);
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 404 void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND);
560 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
563 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [all...]
RewriteModernObjC.cpp 486 void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND);
615 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
618 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 763 bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
764 unsigned NumParamList = ND->getNumTemplateParameterLists();
766 TemplateParameterList* Params = ND->getTemplateParameterList(i);
771 if (TypeSourceInfo *TSInfo = ND->getTypeSourceInfo()) {
780 if ((FTL && !isa<CXXConversionDecl>(ND) && Visit(FTL.getResultLoc())) ||
785 if (NestedNameSpecifierLoc QualifierLoc = ND->getQualifierLoc())
790 if (VisitDeclarationNameInfo(ND->getNameInfo()))
802 if (ND->doesThisDeclarationHaveABody() && !ND->isLateTemplateParsed()) {
803 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ND)) {
    [all...]

Completed in 3714 milliseconds

12 3