/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...] |
/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 41 if (const ParenType *PT = dyn_cast<ParenType>(Ty)) { 42 QT = PT->desugar(); 85 QualType PT = Desugar(Context, SugarPT, DesugarArgument); 88 PT = Context.getAttributedType( 89 AttributedType::getNullabilityAttrKind(*nullability), PT, PT); 91 Args.push_back(PT); [all...] |
Type.cpp | 300 while (const ParenType *PT = T->getAs<ParenType>()) 301 T = PT->getInnerType(); 386 if (const PointerType *PT = getAs<PointerType>()) 387 return PT->getPointeeType()->isVoidType(); 416 if (const PointerType *PT = getAs<PointerType>()) 417 return PT->getPointeeType(); [all...] |
/external/clang/lib/Parse/ |
ParseExpr.cpp | [all...] |
/external/opencv3/modules/core/src/ |
rand.cpp | 409 template<typename T, typename PT> static void 410 randnScale_( const float* src, T* dst, int len, int cn, const PT* mean, const PT* stddev, bool stdmtx ) 417 PT b = mean[0], a = stddev[0]; 434 PT s = mean[j];
|
/external/clang/lib/ARCMigrate/ |
Transforms.cpp | 373 else if (const PointerType *PT = T->getAs<PointerType>()) 374 T = PT->getPointeeType();
|
ObjCMT.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
SValBuilder.cpp | 242 QualType PT = getContext().getPointerType(QualType(T, 0)); 243 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC));
|
CallEvent.cpp | 78 if (const PointerType *PT = T->getAs<PointerType>()) { 79 QualType PointeeTy = PT->getPointeeType(); [all...] |
/external/clang/lib/Frontend/Rewrite/ |
RewriteObjC.cpp | 458 if (const PointerType *PT = OCT->getAs<PointerType>()) { 459 if (isa<ObjCInterfaceType>(PT->getPointeeType()) || 460 PT->getPointeeType()->isObjCQualifiedIdType()) 559 const PointerType *PT = funcType->getAs<PointerType>(); 560 if (PT && PointerTypeTakesAnyBlockArguments(funcType)) 561 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND); [all...] |
RewriteModernObjC.cpp | 558 if (const PointerType *PT = OCT->getAs<PointerType>()) { 559 if (isa<ObjCInterfaceType>(PT->getPointeeType()) || 560 PT->getPointeeType()->isObjCQualifiedIdType()) 628 const PointerType *PT = funcType->getAs<PointerType>(); 629 if (PT && PointerTypeTakesAnyBlockArguments(funcType)) 630 RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND); [all...] |
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
IndirectionUtils.h | 348 GlobalVariable* createImplPointer(PointerType &PT, Module &M,
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSKernelExpand.cpp | 167 llvm::PointerType *PT = llvm::dyn_cast<llvm::PointerType>(AllocType); 178 if (!PT) { 217 llvm::PointerType *PT = llvm::dyn_cast<llvm::PointerType>(AllocType); 219 llvm::Type *ET = PT->getElementType(); [all...] |
/frameworks/compile/slang/ |
slang_backend.cpp | 536 const RSExportPrimitiveType *PT = 540 mLLVMContext, llvm::utostr_32(PT->getType()))); 541 if (PT->isRSObjectType()) {
|
slang_rs_export_type.h | 411 // @PT was normalized by calling RSExportType::NormalizeType() before calling 414 const clang::PointerType *PT,
|
/external/clang/lib/Sema/ |
SemaExprMember.cpp | 460 const PointerType *PT = BaseType->getAs<PointerType>(); 461 if (PT && (!getLangOpts().ObjC1 || 462 PT->getPointeeType()->isRecordType())) { [all...] |
SemaPseudoObject.cpp | 545 const ObjCObjectPointerType *PT = 549 if (PT->isObjCClassType() && 560 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true); 564 if (const ObjCObjectPointerType *PT = 566 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true); [all...] |
/external/llvm/lib/IR/ |
Verifier.cpp | [all...] |
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 656 PointerType* PT = cast<PointerType>(Ty); 657 Type* ET = PT->getElementType(); 662 << elemName << ", " << PT->getAddressSpace() << ");"; 668 VectorType* PT = cast<VectorType>(Ty); 669 Type* ET = PT->getElementType(); 674 << elemName << ", " << PT->getNumElements() << ");"; [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
BasicObjCFoundationChecks.cpp | 861 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>(); 862 if (!PT) 865 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); [all...] |
LocalizationChecker.cpp | 738 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>(); 739 if (!PT) 742 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); [all...] |
/external/llvm/lib/Analysis/ |
LazyValueInfo.cpp | 591 PointerType *PT = dyn_cast<PointerType>(BBI->getType()); 592 if (PT && isKnownNonNull(BBI)) { 593 Res = LVILatticeVal::getNot(ConstantPointerNull::get(PT)); [all...] |
/external/clang/lib/Index/ |
USRGeneration.cpp | 652 if (const PointerType *PT = T->getAs<PointerType>()) { 654 T = PT->getPointeeType();
|
/external/opencv3/modules/imgproc/src/ |
approx.cpp | 49 CvPoint pt; member in struct:_CvPtInfo 72 CvPoint pt = chain->origin; local 82 CV_WRITE_SEQ_ELEM( pt, writer ); 100 CV_READ_CHAIN_POINT( pt, reader ); 109 CV_WRITE_SEQ_ELEM( pt, writer ); 117 array[i].pt = pt; 121 //assert( pt.x == chain->origin.x && pt.y == chain->origin.y ); 141 pt0 = array[i].pt; [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
MyTransmitter.h | 43 #define PT 96 622 data[1] = (1 << 7) | PT; // M-bit
|