HomeSort by relevance Sort by last modified time
    Searched refs:PT (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 665 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
666 if (!PT)
669 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
  /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/ARCMigrate/
TransGCAttrs.cpp 75 } else if (const PointerTypeLoc *PT = dyn_cast<PointerTypeLoc>(&TL)) {
76 TL = PT->getPointeeLoc();
Transforms.cpp 362 else if (const PointerType *PT = T->getAs<PointerType>())
363 T = PT->getPointeeType();
  /external/clang/lib/AST/
Type.cpp 286 while (const ParenType *PT = T->getAs<ParenType>())
287 T = PT->getInnerType();
372 if (const PointerType *PT = getAs<PointerType>())
373 return PT->getPointeeType()->isVoidType();
402 if (const PointerType *PT = getAs<PointerType>())
403 return PT->getPointeeType();
509 if (const PointerType *PT = getAs<PointerType>())
510 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>())
    [all...]
ASTDiagnostic.cpp 40 if (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
41 QT = PT->desugar();
    [all...]
DeclPrinter.cpp 413 while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
415 Ty = PT->getInnerType();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 216 QualType PT = getContext().getPointerType(QualType(T, 0));
217 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC));
MemRegion.cpp 298 const PointerType *PT,
301 ID.AddPointer(PT);
930 const PointerType *PT = thisPointerTy->getAs<PointerType>();
931 assert(PT);
932 return getSubRegion<CXXThisRegion>(PT, getStackArgumentsRegion(STC));
    [all...]
  /frameworks/compile/slang/
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...]
slang_rs_export_type.h 344 // @PT was normalized by calling RSExportType::NormalizeType() before calling
347 const clang::PointerType *PT,
  /external/clang/include/clang/AST/
DeclBase.h 55 typedef clang::DeclContext* PT;
57 static inline void *getAsVoidPointer(PT P) { return P; }
58 static inline PT getFromVoidPointer(void *P) {
59 return static_cast<PT>(P);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 122 if (const PointerType *PT = dyn_cast<PointerType>(Src->getType())) {
123 switch (PT->getAddressSpace()) {
633 if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
634 return (PT->getAddressSpace() == spN);
  /external/stlport/src/
num_put_float.cpp 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf)
217 { return ecvtbuf(x, n, pt, sign, buf); }
218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf)
219 { return fcvtbuf(x, n, pt, sign, buf); }
224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf)
225 { return ecvtbuf(x, n, pt, sign, buf); }
226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf)
227 { return fcvtbuf(x, n, pt, sign, buf); }
231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf)
217 { return ecvtbuf(x, n, pt, sign, buf); }
218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf)
219 { return fcvtbuf(x, n, pt, sign, buf); }
224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf)
225 { return ecvtbuf(x, n, pt, sign, buf); }
226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf)
227 { return fcvtbuf(x, n, pt, sign, buf); }
231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0;
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 511 if (const PointerType *PT = OCT->getAs<PointerType>()) {
512 if (isa<ObjCInterfaceType>(PT->getPointeeType()) ||
513 PT->getPointeeType()->isObjCQualifiedIdType())
575 const PointerType *PT = funcType->getAs<PointerType>();
576 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
577 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [all...]
RewriteObjC.cpp 464 if (const PointerType *PT = OCT->getAs<PointerType>()) {
465 if (isa<ObjCInterfaceType>(PT->getPointeeType()) ||
466 PT->getPointeeType()->isObjCQualifiedIdType())
560 const PointerType *PT = funcType->getAs<PointerType>();
561 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
562 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND);
    [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...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 631 PointerType* PT = cast<PointerType>(Ty);
632 Type* ET = PT->getElementType();
638 << ", " << utostr(PT->getAddressSpace()) << ");";
644 VectorType* PT = cast<VectorType>(Ty);
645 Type* ET = PT->getElementType();
651 << ", " << utostr(PT->getNumElements()) << ");";
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp     [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 622 if (const PointerType *PT = T->getAs<PointerType>()) {
624 T = PT->getPointeeType();
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 166 if (PointerType *PT = dyn_cast<PointerType>(V->getType()))
167 return TD.getABITypeAlignment(PT->getElementType());
  /frameworks/av/media/libstagefright/rtsp/
MyTransmitter.h 42 #define PT 96
619 data[1] = (1 << 7) | PT; // M-bit

Completed in 1179 milliseconds

12 3 4