HomeSort by: relevance | last modified time | path
    Searched defs:PD (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
TextDiagnostics.cpp 92 const PathDiagnostic *PD = *I;
94 ? " [" + PD->getCheckerName() + "]"
98 reportPiece(WarnID, PD->getLocation().asLocation(),
99 (PD->getShortDescription() + WarningMsg).str(),
100 PD->path.back()->getRanges(), PD->path.back()->getFixits());
103 for (const auto &Piece : PD->path) {
116 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 94 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD,
98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
105 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
110 IdentifierInfo *PropIdent = PD->getIdentifier();
125 for (const auto *PD : InterD->instance_properties()) {
127 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
134 IvarToPropMap[ID] = PD;
180 const ObjCPropertyDecl *PD = I->second;
185 if (isAnnotatedToAllowDirectAssignment(PD) ||
190 InterfD->getInstanceMethod(PD->getGetterName())
    [all...]
IvarInvalidationChecker.cpp 348 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl);
349 assert(PD &&"Do we synthesize ivars for something other than properties?");
350 os << "Property "<< PD->getName() << " ";
387 const ObjCPropertyDecl *PD = I->second;
388 if (PD->isClassProperty())
391 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
397 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
398 PropertyToIvarMap[PD] = ID;
399 IvarToPopertyMap[ID] = PD;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransGCAttrs.cpp 237 ObjCPropertyDecl *PD = *PI;
238 Attrs = PD->getPropertyAttributesAsWritten();
239 TypeSourceInfo *TInfo = PD->getTypeSourceInfo();
245 ATLs.push_back(std::make_pair(ATL, PD));
302 ObjCPropertyDecl *PD = AllProps[i];
303 if (PD->getPropertyAttributesAsWritten() &
306 SourceLocation AtLoc = PD->getAtLoc();
309 AtProps[AtLoc].push_back(PD);
TransZeroOutPropsInDealloc.cpp 118 ObjCPropertyDecl *PD = PID->getPropertyDecl();
119 ObjCMethodDecl *setterM = PD->getSetterMethodDecl();
121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes();
125 SynthesizedProperties[PD] = PID;
TransUnbridgedCasts.cpp 439 ParmVarDecl *PD = FD->getParamDecl(i);
440 if (PD->hasAttr<CFConsumedAttr>()) {
  /src/lib/libm/ld128/
e_powl.c 125 static const long double PD[] =
426 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t)));
  /src/sys/arch/hpcsh/dev/
pfckbd.c 275 #define PD(n) \
291 PD(1), PD(5), PE(1), PE(6), PE(7), PE(3), PE(0), PD(7)
294 #undef PD
370 #define PD(n) \
391 PC(3), PC(2), PD(1), PC(0)
443 } poll = PD(1);
446 #undef PD
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopDataPrefetch.cpp 353 int64_t PD = std::abs(ConstPtrDiff->getValue()->getSExtValue());
354 if (PD < (int64_t) TTI->getCacheLineSize()) {
355 Pref.addInstruction(MemI, DT, PD);
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
powq.c 126 static const __float128 PD[] =
430 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t)));
  /src/external/gpl3/gcc/dist/libquadmath/math/
powq.c 126 static const __float128 PD[] =
430 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t)));
  /src/external/gpl3/gdb/dist/sim/rl78/
rl78.c 296 #define PD(x) put_op (&opcode, 0, 1, x)
454 PD (v);
465 PD (v);
476 PD (v);
611 PD (a);
698 PD (v);
749 PD (v);
764 PD (v);
779 PD (v);
794 PD (v)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/rl78/
rl78.c 296 #define PD(x) put_op (&opcode, 0, 1, x)
454 PD (v);
465 PD (v);
476 PD (v);
611 PD (a);
698 PD (v);
749 PD (v);
764 PD (v);
779 PD (v);
794 PD (v)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp 382 ObjCProtocolDecl *PD = *I;
386 TRY_TO(IndexCtx.handleReference(PD, Loc, ContD, ContD, roles,
524 ObjCPropertyDecl *PD = D->getPropertyDecl();
544 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
548 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) {
USRGeneration.cpp 260 for (auto PD : D->parameters()) {
262 VisitType(PD->getType());
396 if (const ObjCProtocolDecl *pd = dyn_cast<ObjCProtocolDecl>(container)) {
397 Visit(pd);
468 const ObjCProtocolDecl *PD = cast<ObjCProtocolDecl>(D);
469 GenObjCProtocol(PD->getName(), GetExternalSourceContainer(PD));
486 if (ObjCPropertyDecl *PD = D->getPropertyDecl()) {
487 VisitObjCPropertyDecl(PD);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 554 PressureDiff &PD = DAG->getPressureDiff(SU);
555 for (auto &P : PD) {
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_div.c 85 UINT64 sign_x, sign_y, coefficient_x, coefficient_y, A, B, QX, PD;
395 PD = (UINT64) digit *0x068DB8BBull;
396 digit_h = (UINT32) (PD >> 40);
524 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, valid_y, PD, res;
792 PD = (UINT64) digit *0x068DB8BBull;
793 digit_h = (UINT32) (PD >> 40);
938 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, PD, res, valid_y;
1220 PD = (UINT64) digit *0x068DB8BBull;
1221 digit_h = (UINT32) (PD >> 40);
1375 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, valid_y, PD, res
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_div.c 85 UINT64 sign_x, sign_y, coefficient_x, coefficient_y, A, B, QX, PD;
395 PD = (UINT64) digit *0x068DB8BBull;
396 digit_h = (UINT32) (PD >> 40);
524 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, valid_y, PD, res;
792 PD = (UINT64) digit *0x068DB8BBull;
793 digit_h = (UINT32) (PD >> 40);
938 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, PD, res, valid_y;
1220 PD = (UINT64) digit *0x068DB8BBull;
1221 digit_h = (UINT32) (PD >> 40);
1375 UINT64 sign_x, sign_y, T, carry64, D, Q_low, QX, valid_y, PD, res
    [all...]
  /src/usr.sbin/makefs/cd9660/
iso9660_rrip.h 192 ISO_SUSP_PD PD;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
RetainSummaryManager.cpp 240 const CXXRecordDecl *PD = RetTy->getPointeeType()->getAsCXXRecordDecl();
241 if (PD && isOSObjectSubclass(PD)) {
256 isOSIteratorSubclass(PD)) {
877 for (const auto *PD : MD->overridden_methods())
878 if (auto RE = getRetEffectFromAnnotations(RetTy, PD))
908 const ParmVarDecl *pd, unsigned parm_idx, const NamedDecl *FD,
910 QualType QT = pd->getType();
913 GeneralizedConsumedAttr>(pd, QT)) {
919 GeneralizedReturnsRetainedAttr>(pd, QT))
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 242 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
243 return MakeCXType(PD->getType(), TU);
1193 const ObjCProtocolDecl *PD = OT->getProtocol(i);
1194 if (!PD)
1197 return cxcursor::MakeCXCursor(PD, GetTU(CT));
CXIndexDataConsumer.cpp 245 ObjCProtocolDecl *PD = *I;
247 IdxCtx.getEntityInfo(PD, ProtEntities.back(), SA);
249 MakeCursorObjCProtocolRef(PD, Loc, IdxCtx.CXTU),
254 IdxCtx.markEntityOccurrenceInFile(PD, Loc);
821 ObjCPropertyDecl *PD = D->getPropertyDecl();
823 return handleReference(PD, D->getLocation(), getCursor(D),
1199 if (const ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D))
1200 return MakeCursorObjCProtocolRef(PD, Loc, CXTU);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
X86RecognizableInstr.h 137 PD = 1, XS = 2, XD = 3, PS = 4
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 170 if (const auto *PD = dyn_cast<ObjCProtocolDecl>(this))
171 for (const auto *PI : PD->protocols())
193 if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext,
196 return PD;
203 if (auto *PD = dyn_cast<ObjCPropertyDecl>(*I)) {
207 !PD->isClassProperty()) ||
209 PD->isClassProperty()) ||
211 !PD->isClassProperty()))
212 return PD;
214 if (PD->isClassProperty()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCoroutine.cpp 361 auto *PD = DREOrig->getDecl();
363 auto it = LocalDeclMap.find(PD);
365 SavedLocals.insert({ PD, it->second });

Completed in 62 milliseconds

1 2