HomeSort by relevance Sort by last modified time
    Searched defs:PD (Results 1 - 25 of 28) 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 52 const ObjCPropertyDecl *PD,
72 if (ME->getMethodDecl() == PD->getSetterMethodDecl() &&
83 if (PRE->isExplicitProperty() && PRE->getExplicitProperty() == PD)
88 return PD->getSetterKind() != ObjCPropertyDecl::Assign;
93 if (*I && scan_ivar_release(*I, ID, PD, Release, SelfII, Ctx))
229 const ObjCPropertyDecl *PD = I->getPropertyDecl();
230 if (!PD)
234 if (PD->isReadOnly())
238 bool requiresRelease = PD->getSetterKind() != ObjCPropertyDecl::Assign;
239 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 246 ObjCPropertyDecl *PD = *PI;
247 Attrs = PD->getPropertyAttributesAsWritten();
248 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 354 ParmVarDecl *PD = FD->getParamDecl(i);
355 if (PD->getAttr<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}}
34 decltype(PD()) s; // ok
35 decltype(PD())::n n; // ok
41 PD(), // expected-error {{private destructor}}
42 PD()) pd1; // expected-error {{private destructor}}
46 PD(), // expected-error {{temporary of type 'PD' has private destructor}}
50 decltype(((((42)), PD())))::n pd_parens_comma; // ok
53 extern decltype(PD()) pd_ref; // o
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 217 ObjCPropertyDecl *PD = D->getPropertyDecl();
230 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
235 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);
505 ObjCPropertyDecl *PD = D->getPropertyDecl();
506 return handleReference(PD, D->getLocation(), getCursor(D), 0, D->getDeclContext());
    [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/include/clang/Sema/
ScopeInfo.h 53 PartialDiagnostic PD;
57 PossiblyUnreachableDiag(const PartialDiagnostic &PD, SourceLocation Loc,
59 : PD(PD), Loc(Loc), stmt(stmt) {}
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 87 const PathDiagnostic *PD = *I;
88 StringRef desc = PD->getShortDescription();
100 SourceLocation L = PD->getLocation().asLocation();
104 ArrayRef<SourceRange> Ranges = PD->path.back()->getRanges();
  /external/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaChecking.cpp     [all...]
  /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/CodeGen/
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGObjC.cpp 718 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
719 ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
    [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 419 static void GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
444 PD.getActivePath().push_front(C);
445 PD.pushActivePath(&C->path);
452 bool VisitedEntireCall = PD.isWithinCall();
453 PD.popActivePath();
462 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
465 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
507 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
559 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
565 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece
    [all...]
ExprEngine.cpp 107 const ParmVarDecl *PD = FD->getParamDecl(0);
108 QualType T = PD->getType();
112 const MemRegion *R = state->getRegion(PD, InitLoc);
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 689 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
690 if (PD->isThisDeclarationADefinition())
691 RewriteProtocolDecl(PD);
    [all...]
RewriteObjC.cpp 672 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
673 if (PD->isThisDeclarationADefinition())
674 RewriteProtocolDecl(PD);
785 ObjCPropertyDecl *PD = PID->getPropertyDecl();
790 unsigned Attributes = PD->getPropertyAttributes();
791 if (!PD->getGetterMethodDecl()->isDefined()) {
803 PD->getGetterMethodDecl(), Getr);
811 RewriteTypeIntoString(PD->getGetterMethodDecl()->getResultType(), Getr,
    [all...]

Completed in 390 milliseconds

1 2