/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 127 Modifier(BasicBlock *Block, PieceTable *PT, Random *R): in Modifier() 128 BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {} in Modifier() 144 assert(PT->size()); in getRandomVal() 145 return PT->at(Ran->Rand() % PT->size()); in getRandomVal() 164 for (unsigned i=0; i<PT->size(); ++i) { in getRandomValue() 165 Value *V = PT->at((index + i) % PT->size()); in getRandomValue() 197 for (unsigned i=0; i<PT->size(); ++i) { in getRandomPointerValue() 198 Value *V = PT->at((index + i) % PT->size()); in getRandomPointerValue() 208 for (unsigned i=0; i<PT->size(); ++i) { in getRandomVectorValue() 209 Value *V = PT->at((index + i) % PT->size()); in getRandomVectorValue() [all …]
|
/external/clang/lib/Analysis/ |
D | CocoaConventions.cpp | 42 const PointerType* PT = RetTy->getAs<PointerType>(); in isRefType() local 43 if (!(PT->getPointeeType().getUnqualifiedType()->isVoidType())) in isRefType() 63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>(); in isCocoaObjectRef() local 66 if (!PT) in isCocoaObjectRef() 71 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() || in isCocoaObjectRef() 72 PT->isObjCClassType() || PT->isObjCQualifiedClassType()) in isCocoaObjectRef() 77 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in isCocoaObjectRef()
|
D | FormatString.cpp | 239 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local 240 if (!PT) in matchesType() 244 if (PT->getPointeeType().isConstQualified()) in matchesType() 247 argTy = PT->getPointeeType(); in matchesType() 312 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local 313 if (!PT) in matchesType() 315 QualType pointeeTy = PT->getPointeeType(); in matchesType() 332 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local 333 if (!PT) in matchesType() 336 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType(); in matchesType() [all …]
|
D | ScanfFormatString.cpp | 381 QualType PT = QT->getPointeeType(); in fixType() local 387 const BuiltinType *BT = PT->getAs<BuiltinType>(); in fixType() 392 if (PT->isAnyCharacterType()) { in fixType() 394 if (PT->isWideCharType()) in fixType() 448 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11)) in fixType() 449 namedTypeToLengthModifier(PT, LM); in fixType() 459 if (PT->isRealFloatingType()) in fixType() 461 else if (PT->isSignedIntegerType()) in fixType() 463 else if (PT->isUnsignedIntegerType()) in fixType()
|
D | BodyFarm.cpp | 297 const PointerType *PT = TheValueTy->getAs<PointerType>(); in create_OSAtomicCompareAndSwap() local 298 if (!PT) in create_OSAtomicCompareAndSwap() 300 QualType PointeeTy = PT->getPointeeType(); in create_OSAtomicCompareAndSwap()
|
/external/chromium_org/components/autofill/core/browser/ |
D | autofill_regex_constants.cc.utf8 | 20 "|bairro|suburb"; // pt-BR, pt-PT 39 "|morada|endereço" // pt-BR, pt-PT 57 "|complemento|addrcomplement" // pt-BR, pt-PT 86 "|codigo|codpos|\\bcep\\b" // pt-BR, pt-PT 93 "|codpos2"; // pt-BR, pt-PT 102 "|cidade" // pt-BR, pt-PT 112 "|estado|provincia" // pt-BR, pt-PT 167 "|validade" // pt-BR, pt-PT 176 "|validade" // pt-BR, pt-PT 191 "|validade" // pt-BR, pt-PT [all …]
|
/external/oprofile/module/ia64/ |
D | IA64entry.h | 21 #define PT(f) (IA64_PT_REGS_##f##_OFFSET) macro 27 .spillsp rp, PT(CR_IIP)+16+(off); \ 28 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \ 29 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \ 30 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \ 31 .spillsp pr, PT(PR)+16+(off);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckSecuritySyntaxOnly.cpp | 309 const PointerType *PT = FPT->getArgType(0)->getAs<PointerType>(); in checkCall_gets() local 310 if (!PT) in checkCall_gets() 313 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) in checkCall_gets() 350 const PointerType *PT = FPT->getArgType(1)->getAs<PointerType>(); in checkCall_getpw() local 351 if (!PT) in checkCall_getpw() 354 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) in checkCall_getpw() 391 const PointerType *PT = FPT->getArgType(0)->getAs<PointerType>(); in checkCall_mktemp() local 392 if (!PT) in checkCall_mktemp() 396 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) in checkCall_mktemp() 567 const PointerType *PT = FPT->getArgType(i)->getAs<PointerType>(); in checkCall_strCommon() local [all …]
|
D | NSErrorChecker.cpp | 281 const ObjCObjectPointerType* PT = in IsNSError() local 284 if (!PT) in IsNSError() 287 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in IsNSError()
|
/external/llvm/lib/Support/ |
D | Host.cpp | 608 Triple PT(Triple::normalize(LLVM_HOST_TRIPLE)); in getProcessTriple() local 610 if (sizeof(void *) == 8 && PT.isArch32Bit()) in getProcessTriple() 611 PT = PT.get64BitArchVariant(); in getProcessTriple() 612 if (sizeof(void *) == 4 && PT.isArch64Bit()) in getProcessTriple() 613 PT = PT.get32BitArchVariant(); in getProcessTriple() 615 return PT.str(); in getProcessTriple()
|
/external/llvm/lib/IR/ |
D | IRBuilder.cpp | 43 PointerType *PT = cast<PointerType>(Ptr->getType()); in getCastedInt8PtrValue() local 44 if (PT->getElementType()->isIntegerTy(8)) in getCastedInt8PtrValue() 48 PT = getInt8PtrTy(PT->getAddressSpace()); in getCastedInt8PtrValue() 49 BitCastInst *BCI = new BitCastInst(Ptr, PT, ""); in getCastedInt8PtrValue()
|
/external/clang/test/Parser/ |
D | cxx-ambig-paren-expr.cpp | 16 typedef int *PT; in f() typedef 18 x = (PT()[(int){1}]); // expected-warning {{compound literals}} in f()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 456 typedef Instruction* PT; typedef 458 static inline void *getAsVoidPointer(PT P) { return P; } in getAsVoidPointer() 459 static inline PT getFromVoidPointer(void *P) { in getFromVoidPointer() 460 return static_cast<PT>(P); in getFromVoidPointer()
|
D | Value.h | 412 typedef Value* PT; 414 static inline void *getAsVoidPointer(PT P) { return P; } 415 static inline PT getFromVoidPointer(void *P) { 416 return static_cast<PT>(P);
|
/external/clang/test/Sema/ |
D | offsetof.c | 5 typedef struct P { int i; float f; } PT; typedef 10 PT X[100];
|
/external/llvm/runtime/libprofile/ |
D | CommonProfiling.c | 160 void write_profiling_data(enum ProfilingType PT, unsigned *Start, in write_profiling_data() argument 166 PTy = PT; in write_profiling_data()
|
D | Profiling.h | 33 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false); 216 const PointerType *PT = dyn_cast<PointerType>(arg->getType()); in dumpAllIntoArena() local 217 if (!PT) { in dumpAllIntoArena() 220 Type *DereferencedType = PT->getElementType(); in dumpAllIntoArena() 1251 size_t AMDGPUPeepholeOpt::getTypeSize(PointerType * const PT, in getTypeSize() argument 1253 if (!PT) { in getTypeSize() 1256 Type *CT = PT->getElementType(); in getTypeSize() 1258 PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) { in getTypeSize() 1262 for (size_t x = 0, y = PT->getNumContainedTypes(); x < y; ++x) { in getTypeSize() 1263 size += getTypeSize(PT->getContainedType(x), dereferencePtr); in getTypeSize()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false); 216 const PointerType *PT = dyn_cast<PointerType>(arg->getType()); in dumpAllIntoArena() local 217 if (!PT) { in dumpAllIntoArena() 220 Type *DereferencedType = PT->getElementType(); in dumpAllIntoArena() 1251 size_t AMDGPUPeepholeOpt::getTypeSize(PointerType * const PT, in getTypeSize() argument 1253 if (!PT) { in getTypeSize() 1256 Type *CT = PT->getElementType(); in getTypeSize() 1258 PT->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) { in getTypeSize() 1262 for (size_t x = 0, y = PT->getNumContainedTypes(); x < y; ++x) { in getTypeSize() 1263 size += getTypeSize(PT->getContainedType(x), dereferencePtr); in getTypeSize()
|
/external/chromium_org/media/cast/rtcp/ |
D | rtcp_utility.cc | 110 switch (header.PT) { in IterateTopLevel() 274 parsed_header->PT = data_begin[1]; in RtcpParseCommonHeader() 618 DCHECK((header.PT == kPacketTypeGenericRtpFeedback) || in ParseFeedBackCommon() 619 (header.PT == kPacketTypePayloadSpecific)) << "Invalid state"; in ParseFeedBackCommon() 637 if (header.PT == kPacketTypeGenericRtpFeedback) { in ParseFeedBackCommon() 670 } else if (header.PT == kPacketTypePayloadSpecific) { in ParseFeedBackCommon()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GlobalMerge.cpp | 249 PointerType *PT = dyn_cast<PointerType>(I->getType()); in doInitialization() local 250 assert(PT && "Global variable is not a pointer!"); in doInitialization() 252 unsigned AddressSpace = PT->getAddressSpace(); in doInitialization()
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 58 if (const PointerType *PT = T->getAs<PointerType>()) { in CheckSpecifiedExceptionType() local 59 PointeeT = PT->getPointeeType(); in CheckSpecifiedExceptionType() 99 if (const PointerType *PT = T->getAs<PointerType>()) in CheckDistantExceptionSpec() local 100 T = PT->getPointeeType(); in CheckDistantExceptionSpec() 101 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>()) in CheckDistantExceptionSpec() local 102 T = PT->getPointeeType(); in CheckDistantExceptionSpec() 809 } else if (const PointerType *PT = T->getAs<PointerType>()) in canCalleeThrow() local 810 FT = PT->getPointeeType()->getAs<FunctionProtoType>(); in canCalleeThrow()
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-myanmar-machine.rl | 54 PT = 25; 73 pwo_tone_group = PT A* (DB As?)?;
|
/external/chromium_org/chrome/ |
D | chrome_android_paks.gypi | 40 '<(PRODUCT_DIR)/locales/pt-PT.pak', 88 '<(chrome_android_pak_output_folder)/pt-PT.pak',
|
/external/icu4c/data/zone/ |
D | es_419.txt | 38 sg{"PT"}
|