Home
last modified time | relevance | path

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

1234567

/external/clang/include/clang/Basic/
DPartialDiagnostic.h259 void swap(PartialDiagnostic &PD) { in swap() argument
260 std::swap(DiagID, PD.DiagID); in swap()
261 std::swap(DiagStorage, PD.DiagStorage); in swap()
262 std::swap(Allocator, PD.Allocator); in swap()
332 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
334 PD.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
335 return PD;
338 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
340 PD.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
341 return PD;
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp96 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD, in findPropertyBackingIvar() argument
100 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
107 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx)); in findPropertyBackingIvar()
112 IdentifierInfo *PropIdent = PD->getIdentifier(); in findPropertyBackingIvar()
127 for (const auto *PD : InterD->properties()) { in checkASTDecl() local
129 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD, in checkASTDecl()
136 IvarToPropMap[ID] = PD; in checkASTDecl()
180 const ObjCPropertyDecl *PD = I->second; in VisitBinaryOperator() local
185 if (isAnnotatedToAllowDirectAssignment(PD) || in VisitBinaryOperator()
190 InterfD->getInstanceMethod(PD->getGetterName()); in VisitBinaryOperator()
[all …]
DCheckObjCDealloc.cpp32 const ObjCPropertyDecl *PD, in scan_ivar_release() argument
52 if (ME->getMethodDecl() == PD->getSetterMethodDecl() && in scan_ivar_release()
63 if (PRE->isExplicitProperty() && PRE->getExplicitProperty() == PD) in scan_ivar_release()
68 return PD->getSetterKind() != ObjCPropertyDecl::Assign; in scan_ivar_release()
73 if (SubStmt && scan_ivar_release(SubStmt, ID, PD, Release, SelfII, Ctx)) in scan_ivar_release()
185 const ObjCPropertyDecl *PD = I->getPropertyDecl(); in checkObjCDealloc() local
186 if (!PD) in checkObjCDealloc()
190 if (PD->isReadOnly()) in checkObjCDealloc()
194 bool requiresRelease = PD->getSetterKind() != ObjCPropertyDecl::Assign; in checkObjCDealloc()
195 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx) in checkObjCDealloc()
DIvarInvalidationChecker.cpp353 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl); in printIvar() local
354 assert(PD &&"Do we synthesize ivars for something other than properties?"); in printIvar()
355 os << "Property "<< PD->getName() << " "; in printIvar()
392 const ObjCPropertyDecl *PD = I->second; in visit() local
394 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars, in visit()
400 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl()); in visit()
401 PropertyToIvarMap[PD] = ID; in visit()
402 IvarToPopertyMap[ID] = PD; in visit()
405 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl(); in visit()
411 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl(); in visit()
[all …]
/external/valgrind/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/valgrind/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/clang/include/clang/Sema/
DTemplateDeduction.h69 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { in takeSFINAEDiagnostic() argument
71 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic()
72 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic()
89 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic() argument
94 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSFINAEDiagnostic()
100 PartialDiagnostic PD) { in addSuppressedDiagnostic() argument
103 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSuppressedDiagnostic()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp503 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N, in GenerateVisitorsOnlyPathDiagnostic() argument
557 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N, in GenerateMinimalPathDiagnostic() argument
581 PD.getActivePath().push_front(C); in GenerateMinimalPathDiagnostic()
582 PD.pushActivePath(&C->path); in GenerateMinimalPathDiagnostic()
589 bool VisitedEntireCall = PD.isWithinCall(); in GenerateMinimalPathDiagnostic()
590 PD.popActivePath(); in GenerateMinimalPathDiagnostic()
599 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front()); in GenerateMinimalPathDiagnostic()
602 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateMinimalPathDiagnostic()
644 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
696 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
[all …]
DCheckerHelpers.cpp88 } else if (auto PD = dyn_cast_or_null<DeclStmt>(S)) { in parseAssignment() local
90 assert(PD->isSingleDecl() && "We process decls one by one"); in parseAssignment()
91 VD = dyn_cast_or_null<VarDecl>(PD->getSingleDecl()); in parseAssignment()
/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}}
33 PD pd();
113 DD operator+(PD &a, PD &b);
118 DD operator,(int a, PD b);
/external/autotest/server/site_tests/firmware_PDConnect/
Dcontrol9 PURPOSE = "Servo based PD Connect/Disconnect test"
10 CRITERIA = "This test will fail if PD connection is not successful each attempt"
18 - PD Dual role mode is operational in the DUT
19 - Abiility to disconnect, then reconnect establishing a successful PD contract
/external/llvm/lib/Target/X86/
DX86InstrMPX.td46 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
49 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
52 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
56 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
59 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
62 "bndmov \t{$src, $dst|$dst, $src}", []>, PD,
DX86InstrFormats.td120 def PD : Prefix<2>;
180 class PD : TB { Prefix OpPrefix = PD; }
184 class T8PD : T8 { Prefix OpPrefix = PD; }
188 class TAPD : TA { Prefix OpPrefix = PD; }
436 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
454 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
483 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
496 let Predicates = !if(!eq(OpPrefix.Value, PD.Value), [HasSSE2],
506 !if(!eq(OpPrefix.Value, PD.Value), [UseSSE2],
552 // PDI - SSE2 instructions with PD prefix, packed double domain.
[all …]
/external/clang/lib/ARCMigrate/
DTransGCAttrs.cpp241 ObjCPropertyDecl *PD = *PI; in checkAllAtProps() local
242 Attrs = PD->getPropertyAttributesAsWritten(); in checkAllAtProps()
243 TypeSourceInfo *TInfo = PD->getTypeSourceInfo(); in checkAllAtProps()
249 ATLs.push_back(std::make_pair(ATL, PD)); in checkAllAtProps()
305 ObjCPropertyDecl *PD = AllProps[i]; in checkAllProps() local
306 if (PD->getPropertyAttributesAsWritten() & in checkAllProps()
309 SourceLocation AtLoc = PD->getAtLoc(); in checkAllProps()
313 AtProps[RawAt].push_back(PD); in checkAllProps()
DTransZeroOutPropsInDealloc.cpp119 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl() local
120 ObjCMethodDecl *setterM = PD->getSetterMethodDecl(); in TraverseObjCMethodDecl()
123 PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
128 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
/external/autotest/server/site_tests/firmware_PDVbusRequest/
Dcontrol9 PURPOSE = "Servo based PD VBUS voltage level test"
18 - PD Dual role mode is operational in the DUT
19 - Ability to initiate new PD contract with 5/12/20 VBUS value.
/external/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp195 PerFunctionProfileData PD; in computeNumValueSiteCounts() local
196 PD.NumValueSites[ValueKind] = Index + 1; in computeNumValueSiteCounts()
197 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
298 PerFunctionProfileData PD; in getOrCreateRegionCounters() local
302 PD = It->second; in getOrCreateRegionCounters()
347 Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]); in getOrCreateRegionCounters()
361 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters()
362 PD.DataVar = Data; in getOrCreateRegionCounters()
363 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp903 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
989 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
1040 void GenerateProtocol(const ObjCProtocolDecl *PD) override;
1045 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
1051 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
1144 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override;
1150 llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) override;
1157 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1214 const ObjCProtocolDecl *PD) override;
1334 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override;
[all …]
/external/llvm/lib/Target/
DTargetSubtargetInfo.cpp24 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in TargetSubtargetInfo() argument
28 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
/external/autotest/client/site_tests/usbpd_GFU/
Dcontrol6 PURPOSE = 'Test USB-PD Google Firmware Update (GFU)'
8 Integration test for USB-PD Google Firmware Update (GFU).
/external/autotest/client/site_tests/usbpd_DisplayPortSink/
Dcontrol6 PURPOSE = 'Test USB-PD DisplayPort sink'
8 Integration test for USB-PD DisplayPort sink.
/external/clang/include/clang/AST/
DAttr.h161 inline const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
163 PD.AddTaggedVal(reinterpret_cast<intptr_t>(At),
165 return PD;
/external/llvm/test/TableGen/
DPaste.td10 def Vx#NAME#PD : Instr<1>;
12 def Vy#NAME#PD : Instr<3>;
/external/llvm/utils/TableGen/
DX86RecognizableInstr.cpp123 PS = 1, PD = 2, XS = 3, XD = 4 enumerator
296 if (OpPrefix == X86Local::PD) in insnContext()
310 if (OpPrefix == X86Local::PD) in insnContext()
325 if (OpPrefix == X86Local::PD) in insnContext()
339 if (OpPrefix == X86Local::PD) in insnContext()
354 if (OpPrefix == X86Local::PD) in insnContext()
368 else if (OpPrefix == X86Local::PD) in insnContext()
379 if (OpPrefix == X86Local::PD) in insnContext()
391 } else if (OpPrefix == X86Local::PD && HasVEX_LPrefix) in insnContext()
393 else if (OpPrefix == X86Local::PD && HasVEX_WPrefix) in insnContext()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
DREADME26 license: PD
39 license: PD

1234567