Searched refs:PT (Results 76 - 86 of 86) sorted by relevance

1234

/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp285 if (const PointerType *PT = T->getAs<PointerType>()) {
286 T = PT->getPointeeType();
H A DSemaDeclCXX.cpp4469 if (const PointerType *PT = T->getAs<PointerType>()) {
4471 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
4472 PT = T;
4474 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
11775 const PointerType *PT = T->getAs<PointerType>(); local
11776 if (!PT)
11778 T = PT->getPointeeType();
H A DSemaOverload.cpp4757 if (const PointerType *PT = FromType->getAs<PointerType>()) {
4758 FromType = PT->getPointeeType();
4863 if (const PointerType *PT = From->getType()->getAs<PointerType>()) {
4864 FromRecordType = PT->getPointeeType();
H A DSemaChecking.cpp2656 } else if (const PointerType *PT = T->getAs<PointerType>()) {
2658 PT->getPointeeType().isConstant(S.Context);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatTest.java360 "1997", "2450674", "52452513", "-0700", "PT", "4", "8", "3", "3", "uslax",
428 TimeZone PT = TimeZone.getTimeZone("America/Los_Angeles");
432 df.setTimeZone(PT);
586 "y/M/d H:mm v", "F", "2004 01 01 01:00 PST", "2004/1/1 1:00 PT",
593 "y/M/d H:mm zzz", "pf", "2004/1/1 1:00 PT", "2004 01 01 01:00 PST", "2004/1/1 1:00 PST",
594 "y/M/d H:mm vvvv", "pf", "2004/1/1 1:00 PT", "2004 01 01 01:00 PST", "2004/1/1 1:00 Pacific Time",
595 "y/M/d H:mm zzz", "pf", "2004/7/1 1:00 PT", "2004 07 01 01:00 PDT", "2004/7/1 1:00 PDT",
596 "y/M/d H:mm vvvv", "pf", "2004/7/1 1:00 PT", "2004 07 01 01:00 PDT", "2004/7/1 1:00 Pacific Time",
598 // time to parse does not really exist, PT interpreted as earlier time
599 "y/M/d H:mm zzz", "pf", "2005/4/3 2:30 PT", "200
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp2609 PointerType *PT = cast<PointerType>(GEP->getOperand(0)->getType());
2610 ArrayType *AT = dyn_cast<ArrayType>(PT->getElementType());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2342 } else if (PointerType *PT = dyn_cast<PointerType>(OpTy)) {
2344 = getDataLayout()->getPointerSizeInBits(PT->getAddressSpace());
H A DSelectionDAGBuilder.cpp5531 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
5532 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp2297 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); local
2298 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1407 PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType()); local
1408 Constant *Null = Constant::getNullValue(PT->getElementType());
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1388 if (auto PT = DestTy->getAs<PointerType>())
1389 CGF.EmitVTablePtrCheckForCast(PT->getPointeeType(), Src,

Completed in 405 milliseconds

1234