HomeSort by relevance Sort by last modified time
    Searched defs:PD (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 32 const ObjCPropertyDecl *PD,
52 if (ME->getMethodDecl() == PD->getSetterMethodDecl() &&
63 if (PRE->isExplicitProperty() && PRE->getExplicitProperty() == PD)
68 return PD->getSetterKind() != ObjCPropertyDecl::Assign;
73 if (SubStmt && scan_ivar_release(SubStmt, ID, PD, Release, SelfII, Ctx))
185 const ObjCPropertyDecl *PD = I->getPropertyDecl();
186 if (!PD)
190 if (PD->isReadOnly())
194 bool requiresRelease = PD->getSetterKind() != ObjCPropertyDecl::Assign;
195 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx
    [all...]
DirectIvarAssignment.cpp 96 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD,
100 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
107 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
112 IdentifierInfo *PropIdent = PD->getIdentifier();
127 for (const auto *PD : InterD->properties()) {
129 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
136 IvarToPropMap[ID] = PD;
180 const ObjCPropertyDecl *PD = I->second;
185 if (isAnnotatedToAllowDirectAssignment(PD) ||
190 InterfD->getInstanceMethod(PD->getGetterName())
    [all...]
IvarInvalidationChecker.cpp 353 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl);
354 assert(PD &&"Do we synthesize ivars for something other than properties?");
355 os << "Property "<< PD->getName() << " ";
392 const ObjCPropertyDecl *PD = I->second;
394 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
400 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
401 PropertyToIvarMap[PD] = ID;
402 IvarToPopertyMap[ID] = PD;
405 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl()
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 241 ObjCPropertyDecl *PD = *PI;
242 Attrs = PD->getPropertyAttributesAsWritten();
243 TypeSourceInfo *TInfo = PD->getTypeSourceInfo();
249 ATLs.push_back(std::make_pair(ATL, PD));
305 ObjCPropertyDecl *PD = AllProps[i];
306 if (PD->getPropertyAttributesAsWritten() &
309 SourceLocation AtLoc = PD->getAtLoc();
313 AtProps[RawAt].push_back(PD);
TransZeroOutPropsInDealloc.cpp 119 ObjCPropertyDecl *PD = PID->getPropertyDecl();
120 ObjCMethodDecl *setterM = PD->getSetterMethodDecl();
123 PD->getPropertyAttributes();
128 SynthesizedProperties[PD] = PID;
TransUnbridgedCasts.cpp 442 ParmVarDecl *PD = FD->getParamDecl(i);
443 if (PD->hasAttr<CFConsumedAttr>()) {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p5-cxx0x.cpp 22 class PD {
24 ~PD(); // expected-note 5{{here}}
33 PD pd();
37 decltype(pd()) s; // ok
38 decltype(pd())::n n; // ok
45 pd(), // expected-error {{private destructor}}
46 pd()) pd1; // expected-error {{private destructor}}
52 pd(), // expected-error {{temporary of type 'PD' has private destructor}
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 222 ObjCPropertyDecl *PD = D->getPropertyDecl();
235 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
241 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) {
IndexingContext.cpp 30 ObjCProtocolDecl *PD = *I;
32 IdxCtx.getEntityInfo(PD, ProtEntities.back(), SA);
34 MakeCursorObjCProtocolRef(PD, Loc, IdxCtx.CXTU),
39 IdxCtx.markEntityOccurrenceInFile(PD, Loc);
591 ObjCPropertyDecl *PD = D->getPropertyDecl();
592 return handleReference(PD, D->getLocation(), getCursor(D), nullptr,
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCLoopDataPrefetch.cpp 195 int64_t PD = std::abs(ConstPtrDiff->getValue()->getSExtValue());
196 if (PD < (int64_t) CacheLineSize) {
  /external/valgrind/memcheck/tests/amd64/
sse_memory.c 174 #define PD 16
254 TEST_INSN( &AllMask, PD,addpd)
256 TEST_INSN( &AllMask, PD,andnpd)
257 TEST_INSN( &AllMask, PD,andpd)
258 TEST_INSN( &AllMask, PD,cmpeqpd)
260 TEST_INSN( &AllMask, PD,cmplepd)
262 TEST_INSN( &AllMask, PD,cmpltpd)
264 TEST_INSN( &AllMask, PD,cmpneqpd)
266 TEST_INSN( &AllMask, PD,cmpnlepd)
268 TEST_INSN( &AllMask, PD,cmpnltpd
    [all...]
  /libcore/ojluni/src/main/java/sun/security/ec/
NamedCurve.java 124 if ((type == P) || (type == PD)) {
148 if ((type == PD) || (type == BD) || (lengthMap.get(len) == null)) {
160 private final static int PD = 5; // prime curve, mark as default
237 add("secp192r1 [NIST P-192, X9.62 prime192v1]", "1.2.840.10045.3.1.1", PD,
255 add("secp224r1 [NIST P-224]", "1.3.132.0.33", PD,
273 add("secp256r1 [NIST P-256, X9.62 prime256v1]", "1.2.840.10045.3.1.7", PD,
282 add("secp384r1 [NIST P-384]", "1.3.132.0.34", PD,
291 add("secp521r1 [NIST P-521]", "1.3.132.0.35", PD,
    [all...]
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 663 typedef PB PD;
668 PD x;
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 123 PS = 1, PD = 2, XS = 3, XD = 4
296 if (OpPrefix == X86Local::PD)
310 if (OpPrefix == X86Local::PD)
325 if (OpPrefix == X86Local::PD)
339 if (OpPrefix == X86Local::PD)
354 if (OpPrefix == X86Local::PD)
368 else if (OpPrefix == X86Local::PD)
379 if (OpPrefix == X86Local::PD)
391 } else if (OpPrefix == X86Local::PD && HasVEX_LPrefix)
393 else if (OpPrefix == X86Local::PD && HasVEX_WPrefix
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
tic80-opc.c 560 /* The 'PD' field at bits 10-9 in floating point instructions */
561 #define PD(x) ((x) << 9)
777 {"fadd.ddd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22_E, REG_DEST_E} },
778 {"fadd.dsd", OP_REG(0x3E0) | PD(1) | P2(0) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22, REG_DEST_E} },
779 {"fadd.sdd", OP_LI(0x3E1) | PD(1) | P2(1) | P1(0), MASK_LI | PD(3) | P2(3) | P1(3), 0, {SPFI, REG_22_E, REG_DEST_E} },
780 {"fadd.sdd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(0), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0, REG_22_E, REG_DEST_E} }
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 116 const PathDiagnostic *PD = *I;
117 SourceLocation WarnLoc = PD->getLocation().asLocation();
118 Diag.Report(WarnLoc, WarnID) << PD->getShortDescription()
119 << PD->path.back()->getRanges();
124 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true);
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 195 PerFunctionProfileData PD;
196 PD.NumValueSites[ValueKind] = Index + 1;
197 ProfileDataMap[Name] = PD;
298 PerFunctionProfileData PD;
302 PD = It->second;
347 Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]);
361 PD.RegionCounters = CounterPtr;
362 PD.DataVar = Data;
363 ProfileDataMap[NamePtr] = PD;
  /external/clang/include/clang/Sema/
ScopeInfo.h 69 PartialDiagnostic PD;
73 PossiblyUnreachableDiag(const PartialDiagnostic &PD, SourceLocation Loc,
75 : PD(PD), Loc(Loc), stmt(stmt) {}
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 120 const ParmVarDecl *PD = FD->getParamDecl(0);
121 QualType T = PD->getType();
126 const MemRegion *R = state->getRegion(PD, InitLoc);
    [all...]
BugReporter.cpp 503 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N,
557 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N,
581 PD.getActivePath().push_front(C);
582 PD.pushActivePath(&C->path);
589 bool VisitedEntireCall = PD.isWithinCall();
590 PD.popActivePath();
599 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
602 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
644 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
696 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]

Completed in 1874 milliseconds

1 2