HomeSort by relevance Sort by last modified time
    Searched defs:PT (Results 1 - 25 of 50) sorted by null

1 2

  /external/clang/lib/Analysis/
CocoaConventions.cpp 42 const PointerType* PT = RetTy->getAs<PointerType>();
43 if (!(PT->getPointeeType().getUnqualifiedType()->isVoidType()))
63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
66 if (!PT)
71 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() ||
72 PT->isObjCClassType() || PT->isObjCQualifiedClassType())
77 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
FormatString.cpp 239 const PointerType *PT = argTy->getAs<PointerType>();
240 if (!PT)
244 if (PT->getPointeeType().isConstQualified())
247 argTy = PT->getPointeeType();
312 const PointerType *PT = argTy->getAs<PointerType>();
313 if (!PT)
315 QualType pointeeTy = PT->getPointeeType();
332 const PointerType *PT = argTy->getAs<PointerType>();
333 if (!PT)
336 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType()
    [all...]
BodyFarm.cpp 297 const PointerType *PT = TheValueTy->getAs<PointerType>();
298 if (!PT)
300 QualType PointeeTy = PT->getPointeeType();
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 16 typedef int *PT;
18 x = (PT()[(int){1}]); // expected-warning {{compound literals}}
  /external/oprofile/module/ia64/
IA64entry.h 21 #define PT(f) (IA64_PT_REGS_##f##_OFFSET)
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/llvm/lib/IR/
IRBuilder.cpp 43 PointerType *PT = cast<PointerType>(Ptr->getType());
44 if (PT->getElementType()->isIntegerTy(8))
48 PT = getInt8PtrTy(PT->getAddressSpace());
49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 53 unsigned long PT;
56 sessionDesc->getFormatType(index, &PT, &desc, &params);
APacketSource.cpp 414 unsigned long PT;
417 sessionDesc->getFormatType(index, &PT, &desc, &params);
431 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
463 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
516 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
ARTPWriter.cpp 35 #define PT 97
587 data[1] = (1 << 7) | PT; // M-bit
626 data[1] = (lastPacket ? (1 << 7) : 0x00) | PT; // M-bit
697 data[1] = (lastPacket ? 0x80 : 0x00) | PT; // M-bit
779 data[1] = PT;
MyTransmitter.h 42 #define PT 96
619 data[1] = (1 << 7) | PT; // M-bit
  /external/clang/lib/StaticAnalyzer/Checkers/
NSErrorChecker.cpp 281 const ObjCObjectPointerType* PT =
284 if (!PT)
287 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
CheckSecuritySyntaxOnly.cpp 310 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
311 if (!PT)
314 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
352 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
353 if (!PT)
356 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
394 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
395 if (!PT)
399 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
571 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i))
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 216 QualType PT = getContext().getPointerType(QualType(T, 0));
217 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC));
  /external/clang/test/Sema/
offsetof.c 5 typedef struct P { int i; float f; } PT;
10 PT X[100];
  /external/llvm/include/llvm/IR/
Instruction.h 456 typedef Instruction* PT;
458 static inline void *getAsVoidPointer(PT P) { return P; }
459 static inline PT getFromVoidPointer(void *P) {
460 return static_cast<PT>(P);
Value.h 400 typedef Value* PT;
402 static inline void *getAsVoidPointer(PT P) { return P; }
403 static inline PT getFromVoidPointer(void *P) {
404 return static_cast<PT>(P);
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 254 PointerType *PT = dyn_cast<PointerType>(I->getType());
255 assert(PT && "Global variable is not a pointer!");
257 unsigned AddressSpace = PT->getAddressSpace();
  /frameworks/compile/slang/
slang_rs_backend.cpp 226 const RSExportPrimitiveType *PT =
230 mLLVMContext, llvm::utostr_32(PT->getType())));
231 if (PT->isRSObjectType()) {
slang_rs_export_type.cpp 267 const clang::PointerType *PT =
269 const clang::Type *PointeeType = GET_POINTEE_TYPE(PT);
499 const clang::PointerType *PT =
501 const clang::Type *PointeeType = GET_POINTEE_TYPE(PT);
663 const clang::Type *PT = GET_POINTEE_TYPE(T);
665 if (NormalizeType(PT, PointeeName, NULL, NULL)) {
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 114 llvm::PointerType *PT = llvm::dyn_cast<llvm::PointerType>(T);
116 if (mEnableStepOpt && T != VoidPtrTy && PT) {
117 llvm::Type *ET = PT->getElementType();
  /external/clang/lib/AST/
ExprCXX.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 279 PointerType *PT = getMallocType(CI, TLI);
280 return PT ? PT->getElementType() : 0;
471 PointerType *PT = cast<PointerType>(A.getType());
472 APInt Size(IntTyBits, TD->getTypeAllocSize(PT->getElementType()));
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 127 Modifier(BasicBlock *Block, PieceTable *PT, Random *R):
128 BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {}
144 assert(PT->size());
145 return PT->at(Ran->Rand() % PT->size());
164 for (unsigned i=0; i<PT->size(); ++i) {
165 Value *V = PT->at((index + i) % PT->size());
197 for (unsigned i=0; i<PT->size(); ++i)
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 446 const PointerType *PT = BaseType->getAs<PointerType>();
447 if (PT && (!getLangOpts().ObjC1 ||
448 PT->getPointeeType()->isRecordType())) {
    [all...]
SemaPseudoObject.cpp 454 const ObjCObjectPointerType *PT =
458 if (PT->isObjCClassType() &&
469 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
473 if (const ObjCObjectPointerType *PT =
475 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
    [all...]

Completed in 633 milliseconds

1 2