HomeSort by relevance Sort by last modified time
    Searched refs:ND (Results 51 - 75 of 99) sorted by null

1 23 4

  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 137 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DeclWithIssue)) {
138 declName = ND->getDeclName().getAsString();
BugReporterVisitors.cpp     [all...]
PathDiagnostic.cpp 173 const NamedDecl *ND = dyn_cast<NamedDecl>(CP->getCallee());
174 if (ND) {
177 os << " (within a call to '" << ND->getDeclName() << "')";
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 294 const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(getDecl());
295 if (!ND)
297 return ND->getIdentifier();
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 134 final int ND = perms.getPermissionCount(AppSecurityPermissions.WHICH_DEVICE);
161 if (NP > 0 || ND > 0) {
175 if (ND > 0) {
  /external/clang/include/clang/AST/
Decl.h 295 inline raw_ostream &operator<<(raw_ostream &OS, const NamedDecl &ND) {
296 ND.printName(OS);
    [all...]
ASTContext.h     [all...]
  /external/clang/lib/AST/
Type.cpp 48 NamedDecl *ND = nullptr;
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...]
ASTDumper.cpp 520 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
522 OS << " '" << ND->getDeclName() << '\'';
539 void ASTDumper::dumpName(const NamedDecl *ND) {
540 if (ND->getDeclName()) {
542 OS << ' ' << ND->getNameAsString();
805 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
806 if (ND->isHidden())
    [all...]
DeclPrinter.cpp     [all...]
Expr.cpp 457 if (const NamedDecl *ND = dyn_cast<NamedDecl>(CurrentDecl)) {
461 if (MC->shouldMangleDeclName(ND)) {
464 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(ND))
466 else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(ND))
469 MC->mangleName(ND, Out);
476 return ND->getIdentifier()->getName();
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 446 NamedDecl *ND = Old;
454 if (S && !isDeclInScope(ND, ScopeDC, S) &&
    [all...]
SemaTemplateInstantiateDecl.cpp 196 NamedDecl *ND = dyn_cast<NamedDecl>(New);
198 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
200 ND && ND->isCXXInstanceMember());
622 NamedDecl *ND = D->getFriendDecl();
623 assert(ND && "friend decl must be a decl or a type!");
629 Decl *NewND = Visit(ND);
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 124 QualType getDeclUsageType(ASTContext &C, const NamedDecl *ND);
    [all...]
Lookup.h 702 /// \param ND the declaration found.
704 /// \param Hiding a declaration that hides the declaration \p ND,
711 virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
  /frameworks/compile/slang/
slang_rs_export_type.h 238 clang::QualType QT, clang::NamedDecl *ND,
  /external/clang/lib/Analysis/
ThreadSafety.cpp 281 const NamedDecl *ND = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
282 const ParmVarDecl *PV = dyn_cast_or_null<ParmVarDecl>(ND);
299 makeNamedVar(ND);
314 const NamedDecl *ND = ME->getMemberDecl();
316 unsigned Root = makeDot(ND, false);
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 432 NamedDecl *ND = candidate.getCorrectionDecl();
433 if (!ND)
436 if (isa<TypeDecl>(ND))
    [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...]
  /external/qemu/android/
hw-events.h 140 KEY_CODE(102ND ,86) \
  /frameworks/base/tools/aapt/
Command.cpp     [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 211 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
212 switch (ND->getFormalLinkage()) {
    [all...]

Completed in 1184 milliseconds

1 23 4