Home
last modified time | relevance | path

Searched refs:PD (Results 1 – 25 of 90) sorted by relevance

1234

/external/clang/include/clang/Basic/
DPartialDiagnostic.h249 void swap(PartialDiagnostic &PD) { in swap() argument
250 std::swap(DiagID, PD.DiagID); in swap()
251 std::swap(DiagStorage, PD.DiagStorage); in swap()
252 std::swap(Allocator, PD.Allocator); in swap()
322 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
324 PD.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
325 return PD;
328 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
330 PD.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
331 return PD;
[all …]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp5-cxx0x.cpp22 class PD { class
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; // ok
107 DD operator+(PD &a, PD &b);
[all …]
/external/arduino/hardware/arduino/cores/arduino/
Dpins_arduino.c71 #define PD 4 macro
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
383 PD, /* 0 */
384 PD,
385 PD,
386 PD,
[all …]
/external/clang/include/clang/Sema/
DTemplateDeduction.h75 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { in takeSFINAEDiagnostic() argument
77 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic()
78 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic()
96 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic() argument
103 SuppressedDiagnostics.back().second.swap(PD); in addSFINAEDiagnostic()
109 PartialDiagnostic PD) { in addSuppressedDiagnostic() argument
114 SuppressedDiagnostics.back().second.swap(PD); in addSuppressedDiagnostic()
DScopeInfo.h53 PartialDiagnostic PD;
57 PossiblyUnreachableDiag(const PartialDiagnostic &PD, SourceLocation Loc, in PossiblyUnreachableDiag() argument
59 : PD(PD), Loc(Loc), stmt(stmt) {} in PossiblyUnreachableDiag()
/external/valgrind/main/memcheck/tests/amd64/
Dsse_memory.c174 #define PD 16 macro
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/valgrind/main/memcheck/tests/x86/
Dsse_memory.c174 #define PD 16 macro
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/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp52 const ObjCPropertyDecl *PD, in scan_ivar_release() argument
72 if (ME->getMethodDecl() == PD->getSetterMethodDecl() && in scan_ivar_release()
83 if (PRE->isExplicitProperty() && PRE->getExplicitProperty() == PD) in scan_ivar_release()
88 return PD->getSetterKind() != ObjCPropertyDecl::Assign; in scan_ivar_release()
93 if (*I && scan_ivar_release(*I, ID, PD, Release, SelfII, Ctx)) in scan_ivar_release()
229 const ObjCPropertyDecl *PD = I->getPropertyDecl(); in checkObjCDealloc() local
230 if (!PD) in checkObjCDealloc()
234 if (PD->isReadOnly()) in checkObjCDealloc()
238 bool requiresRelease = PD->getSetterKind() != ObjCPropertyDecl::Assign; in checkObjCDealloc()
239 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx) in checkObjCDealloc()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp419 static void GenerateMinimalPathDiagnostic(PathDiagnostic& PD, in GenerateMinimalPathDiagnostic() argument
444 PD.getActivePath().push_front(C); in GenerateMinimalPathDiagnostic()
445 PD.pushActivePath(&C->path); in GenerateMinimalPathDiagnostic()
452 bool VisitedEntireCall = PD.isWithinCall(); in GenerateMinimalPathDiagnostic()
453 PD.popActivePath(); in GenerateMinimalPathDiagnostic()
462 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front()); in GenerateMinimalPathDiagnostic()
465 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateMinimalPathDiagnostic()
507 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
559 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
565 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
[all …]
/external/clang/lib/ARCMigrate/
DTransGCAttrs.cpp246 ObjCPropertyDecl *PD = *PI; in checkAllAtProps() local
247 Attrs = PD->getPropertyAttributesAsWritten(); in checkAllAtProps()
248 TypeSourceInfo *TInfo = PD->getTypeSourceInfo(); in checkAllAtProps()
253 ATLs.push_back(std::make_pair(*ATL, PD)); in checkAllAtProps()
309 ObjCPropertyDecl *PD = AllProps[i]; in checkAllProps() local
310 if (PD->getPropertyAttributesAsWritten() & in checkAllProps()
313 SourceLocation AtLoc = PD->getAtLoc(); in checkAllProps()
317 AtProps[RawAt].push_back(PD); in checkAllProps()
DTransZeroOutPropsInDealloc.cpp121 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl() local
122 ObjCMethodDecl *setterM = PD->getSetterMethodDecl(); in TraverseObjCMethodDecl()
125 PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
130 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp846 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
902 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
948 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
953 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
959 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
1046 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
1052 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
1059 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1121 const ObjCProtocolDecl *PD);
1240 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
[all …]
/external/llvm/test/TableGen/
DPaste.td10 def Vx#NAME#PD : Instr<1>;
12 def Vy#NAME#PD : Instr<3>;
DDefmInsideMultiClass.td21 defm PD : basic_r<opc>;
/external/llvm/lib/MC/
DMCSubtargetInfo.cpp25 const SubtargetFeatureKV *PD, in InitMCSubtargetInfo() argument
33 ProcDesc = PD; in InitMCSubtargetInfo()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
DREADME26 license: PD
39 license: PD
/external/clang/lib/Serialization/
DASTReaderDecl.cpp252 void VisitImplicitParamDecl(ImplicitParamDecl *PD);
253 void VisitParmVarDecl(ParmVarDecl *PD);
747 void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) { in VisitObjCProtocolDecl() argument
748 RedeclarableResult Redecl = VisitRedeclarable(PD); in VisitObjCProtocolDecl()
749 VisitObjCContainerDecl(PD); in VisitObjCProtocolDecl()
750 mergeRedeclarable(PD, Redecl); in VisitObjCProtocolDecl()
754 PD->allocateDefinitionData(); in VisitObjCProtocolDecl()
758 PD->getCanonicalDecl()->Data = PD->Data; in VisitObjCProtocolDecl()
769 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(), in VisitObjCProtocolDecl()
773 Reader.PendingDefinitions.insert(PD); in VisitObjCProtocolDecl()
[all …]
/external/clang/lib/Sema/
DSemaAccess.cpp1576 PartialDiagnostic PD(PDiag()); in CheckConstructorAccess() local
1579 PD = PDiag(IsCopyBindingRefToTemp in CheckConstructorAccess()
1586 PD = PDiag(diag::err_access_base_ctor); in CheckConstructorAccess()
1587 PD << Entity.isInheritedVirtualBase() in CheckConstructorAccess()
1593 PD = PDiag(diag::err_access_field_ctor); in CheckConstructorAccess()
1594 PD << Field->getType() << getSpecialMember(Constructor); in CheckConstructorAccess()
1600 PD = PDiag(diag::err_access_lambda_capture); in CheckConstructorAccess()
1601 PD << Var->getName() << Entity.getType() << getSpecialMember(Constructor); in CheckConstructorAccess()
1607 return CheckConstructorAccess(UseLoc, Constructor, Entity, Access, PD); in CheckConstructorAccess()
1615 const PartialDiagnostic &PD) { in CheckConstructorAccess() argument
[all …]
DSema.cpp893 Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) { in Diag() argument
894 SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID())); in Diag()
895 PD.Emit(Builder); in Diag()
988 Diag(D.Loc, D.PD); in PopFunctionScopeInfo()
1218 bool Sema::tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD, in tryToRecoverWithCall() argument
1235 Diag(Loc, PD) in tryToRecoverWithCall()
1251 Diag(Loc, PD) << /*not zero-arg*/ 0 << Range; in tryToRecoverWithCall()
/external/clang/tools/libclang/
DIndexDecl.cpp217 ObjCPropertyDecl *PD = D->getPropertyDecl(); in VisitObjCPropertyImplDecl() local
230 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) { in VisitObjCPropertyImplDecl()
235 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) { in VisitObjCPropertyImplDecl()
DIndexingContext.cpp30 ObjCProtocolDecl *PD = *I; in ObjCProtocolListInfo() local
32 IdxCtx.getEntityInfo(PD, ProtEntities.back(), SA); in ObjCProtocolListInfo()
34 MakeCursorObjCProtocolRef(PD, Loc, IdxCtx.CXTU), in ObjCProtocolListInfo()
39 IdxCtx.markEntityOccurrenceInFile(PD, Loc); in ObjCProtocolListInfo()
505 ObjCPropertyDecl *PD = D->getPropertyDecl(); in handleSynthesizedObjCProperty() local
506 return handleReference(PD, D->getLocation(), getCursor(D), 0, D->getDeclContext()); in handleSynthesizedObjCProperty()
1047 if (const ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) in getRefCursor() local
1048 return MakeCursorObjCProtocolRef(PD, Loc, CXTU); in getRefCursor()
DCursorVisitor.h224 bool VisitObjCPropertyDecl(ObjCPropertyDecl *PD);
230 bool VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD);
/external/llvm/include/llvm/MC/
DMCSubtargetInfo.h44 const SubtargetFeatureKV *PD,
/external/clang/include/clang/AST/
DDeclarationName.h552 inline const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
554 PD.AddTaggedVal(N.getAsOpaqueInteger(),
556 return PD;
/external/clang/lib/StaticAnalyzer/Frontend/
DAnalysisConsumer.cpp87 const PathDiagnostic *PD = *I; in FlushDiagnosticsImpl() local
88 StringRef desc = PD->getShortDescription(); in FlushDiagnosticsImpl()
100 SourceLocation L = PD->getLocation().asLocation(); in FlushDiagnosticsImpl()
104 ArrayRef<SourceRange> Ranges = PD->path.back()->getRanges(); in FlushDiagnosticsImpl()

1234