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

1 2

  /external/arduino/hardware/arduino/cores/arduino/
pins_arduino.c 71 #define PD 4
151 PD , // PD 3 ** 18 ** USART1_TX
152 PD , // PD 2 ** 19 ** USART1_RX
153 PD , // PD 1 ** 20 ** I2C_SDA
154 PD , // PD 0 ** 21 ** I2C_SCL
171 PD , // PD 7 ** 38 ** D38
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 53 const ObjCPropertyDecl *PD,
73 if (ME->getMethodDecl() == PD->getSetterMethodDecl() &&
84 if (PRE->isExplicitProperty() && PRE->getExplicitProperty() == PD)
89 return PD->getSetterKind() != ObjCPropertyDecl::Assign;
94 if (*I && scan_ivar_release(*I, ID, PD, Release, SelfII, Ctx))
230 const ObjCPropertyDecl *PD = I->getPropertyDecl();
231 if (!PD)
235 if (PD->isReadOnly())
239 bool requiresRelease = PD->getSetterKind() != ObjCPropertyDecl::Assign;
240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx
    [all...]
DirectIvarAssignment.cpp 100 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD,
104 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
111 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
116 IdentifierInfo *PropIdent = PD->getIdentifier();
133 ObjCPropertyDecl *PD = *I;
136 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
143 IvarToPropMap[ID] = PD;
193 const ObjCPropertyDecl *PD = I->second;
198 if (isAnnotatedToAllowDirectAssignment(PD) ||
203 InterfD->getInstanceMethod(PD->getGetterName())
    [all...]
IvarInvalidationChecker.cpp 365 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl);
366 assert(PD &&"Do we synthesize ivars for something other than properties?");
367 os << "Property "<< PD->getName() << " ";
404 const ObjCPropertyDecl *PD = I->second;
406 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
412 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
413 PropertyToIvarMap[PD] = ID;
414 IvarToPopertyMap[ID] = PD;
417 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl()
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 245 ObjCPropertyDecl *PD = *PI;
246 Attrs = PD->getPropertyAttributesAsWritten();
247 TypeSourceInfo *TInfo = PD->getTypeSourceInfo();
253 ATLs.push_back(std::make_pair(ATL, PD));
309 ObjCPropertyDecl *PD = AllProps[i];
310 if (PD->getPropertyAttributesAsWritten() &
313 SourceLocation AtLoc = PD->getAtLoc();
317 AtProps[RawAt].push_back(PD);
TransZeroOutPropsInDealloc.cpp 121 ObjCPropertyDecl *PD = PID->getPropertyDecl();
122 ObjCMethodDecl *setterM = PD->getSetterMethodDecl();
125 PD->getPropertyAttributes();
130 SynthesizedProperties[PD] = PID;
TransUnbridgedCasts.cpp 434 ParmVarDecl *PD = FD->getParamDecl(i);
435 if (PD->getAttr<CFConsumedAttr>()) {
  /external/clang/lib/Sema/
SemaOpenMP.cpp 369 PartialDiagnostic PD =
374 CD->getAccess(), PD) == AR_inaccessible ||
390 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
SemaObjCProperty.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
  /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}}
34 decltype(PD()) s; // ok
35 decltype(PD())::n n; // ok
41 PD(), // expected-error {{private destructor}}
42 PD()) pd1; // expected-error {{private destructor}}
48 PD(), // expected-error {{temporary of type 'PD' has private destructor}}
52 decltype(((((42)), PD())))::n pd_parens_comma; // ok
55 extern decltype(PD()) pd_ref; // o
    [all...]
  /external/valgrind/main/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...]
  /external/clang/tools/libclang/
IndexDecl.cpp 232 ObjCPropertyDecl *PD = D->getPropertyDecl();
245 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
251 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) {
IndexingContext.cpp 29 ObjCProtocolDecl *PD = *I;
31 IdxCtx.getEntityInfo(PD, ProtEntities.back(), SA);
33 MakeCursorObjCProtocolRef(PD, Loc, IdxCtx.CXTU),
38 IdxCtx.markEntityOccurrenceInFile(PD, Loc);
591 ObjCPropertyDecl *PD = D->getPropertyDecl();
592 return handleReference(PD, D->getLocation(), getCursor(D), 0, D->getDeclContext());
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 91 const PathDiagnostic *PD = *I;
92 StringRef desc = PD->getShortDescription();
104 SourceLocation L = PD->getLocation().asLocation();
108 ArrayRef<SourceRange> Ranges = PD->path.back()->getRanges();
  /external/clang/include/clang/Sema/
ScopeInfo.h 64 PartialDiagnostic PD;
68 PossiblyUnreachableDiag(const PartialDiagnostic &PD, SourceLocation Loc,
70 : 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/StaticAnalyzer/Core/
ExprEngine.cpp 108 const ParmVarDecl *PD = FD->getParamDecl(0);
109 QualType T = PD->getType();
114 const MemRegion *R = state->getRegion(PD, InitLoc);
    [all...]
BugReporter.cpp 466 static bool GenerateVisitorsOnlyPathDiagnostic(PathDiagnostic &PD,
523 static bool GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
549 PD.getActivePath().push_front(C);
550 PD.pushActivePath(&C->path);
557 bool VisitedEntireCall = PD.isWithinCall();
558 PD.popActivePath();
567 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
570 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
612 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
664 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 746 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
747 ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
    [all...]
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp     [all...]

Completed in 1660 milliseconds

1 2