HomeSort by relevance Sort by last modified time
    Searched defs:PT (Results 1 - 25 of 46) 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...]
  /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/VMCore/
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/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/clang/lib/StaticAnalyzer/Checkers/
NSErrorChecker.cpp 297 const ObjCObjectPointerType* PT =
300 if (!PT)
303 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
CheckSecuritySyntaxOnly.cpp 316 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
317 if (!PT)
320 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
358 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
359 if (!PT)
362 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
400 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
401 if (!PT)
405 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
577 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i))
    [all...]
BasicObjCFoundationChecks.cpp 665 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
666 if (!PT)
669 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
  /external/llvm/include/llvm/
Instruction.h 397 typedef Instruction* PT;
399 static inline void *getAsVoidPointer(PT P) { return P; }
400 static inline PT getFromVoidPointer(void *P) {
401 return static_cast<PT>(P);
Value.h 404 typedef Value* PT;
406 static inline void *getAsVoidPointer(PT P) { return P; }
407 static inline PT getFromVoidPointer(void *P) {
408 return static_cast<PT>(P);
  /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 269 const clang::PointerType *PT =
271 const clang::Type *PointeeType = GET_POINTEE_TYPE(PT);
501 const clang::PointerType *PT =
503 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...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 275 PointerType *PT = getMallocType(CI, TLI);
276 return PT ? PT->getElementType() : NULL;
440 PointerType *PT = cast<PointerType>(A.getType());
441 APInt Size(IntTyBits, TD->getTypeAllocSize(PT->getElementType()));
  /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/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
  /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()) {}
140 assert(PT->size());
141 return PT->at(Ran->Rand() % PT->size());
160 for (unsigned i=0; i<PT->size(); ++i) {
161 Value *V = PT->at((index + i) % PT->size());
193 for (unsigned i=0; i<PT->size(); ++i)
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 454 const PointerType *PT = BaseType->getAs<PointerType>();
455 if (PT && (!getLangOpts().ObjC1 ||
456 PT->getPointeeType()->isRecordType())) {
    [all...]
SemaPseudoObject.cpp 443 const ObjCObjectPointerType *PT =
447 if (PT->isObjCClassType() &&
458 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
462 if (const ObjCObjectPointerType *PT =
464 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
    [all...]

Completed in 896 milliseconds

1 2