HomeSort by relevance Sort by last modified time
    Searched refs:getPointeeType (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 47 QualType OrigPointeeTy = OrigPTy->getPointeeType();
48 QualType ToPointeeTy = ToPTy->getPointeeType();
CastSizeChecker.cpp 41 QualType ToPointeeTy = ToPTy->getPointeeType();
MallocSizeofChecker.cpp 149 A = ptrA->getPointeeType();
150 B = ptrB->getPointeeType();
184 QualType PointeeType = CastedType->getAs<PointerType>()->getPointeeType();
NSErrorChecker.cpp 298 PPT->getPointeeType()->getAs<ObjCObjectPointerType>();
316 const TypedefType* TT = PPT->getPointeeType()->getAs<TypedefType>();
CheckSecuritySyntaxOnly.cpp 320 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
362 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
405 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
582 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
611 if (! PT->getPointeeType()->isIntegerType())
ObjCContainersASTChecker.cpp 51 QualType PointeeT = TP->getPointeeType();
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 37 QualType Pointee = MPT->getPointeeType();
MicrosoftCXXABI.cpp 56 QualType Pointee = MPT->getPointeeType();
Type.cpp 49 return ty->getPointeeType().getBaseTypeIdentifier();
373 return PT->getPointeeType()->isVoidType();
401 QualType Type::getPointeeType() const {
403 return PT->getPointeeType();
405 return OPT->getPointeeType();
407 return BPT->getPointeeType();
409 return RT->getPointeeType();
510 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>())
543 return Visit(T->getPointeeType());
546 return Visit(T->getPointeeType());
    [all...]
TypePrinter.cpp 324 printBefore(T->getPointeeType(), OS);
327 if (isa<ArrayType>(T->getPointeeType()))
336 if (isa<ArrayType>(T->getPointeeType()))
338 printAfter(T->getPointeeType(), OS);
344 printBefore(T->getPointeeType(), OS);
350 printAfter(T->getPointeeType(), OS);
401 printBefore(T->getPointeeType(), OS);
404 if (isa<ArrayType>(T->getPointeeType()))
419 if (isa<ArrayType>(T->getPointeeType()))
421 printAfter(T->getPointeeType(), OS)
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 404 T1 = T1PtrType->getPointeeType();
405 T2 = T2PtrType->getPointeeType();
414 T1 = T1ObjCPtrType->getPointeeType();
415 T2 = T2ObjCPtrType->getPointeeType();
419 T1 = T1ObjCPtrType->getPointeeType();
420 T2 = T2PtrType->getPointeeType();
426 T2 = T2ObjCPtrType->getPointeeType();
427 T1 = T1PtrType->getPointeeType();
435 T1 = T1MPType->getPointeeType();
436 T2 = T2MPType->getPointeeType();
    [all...]
SemaExceptionSpec.cpp 30 T = PtrTy->getPointeeType();
32 T = RefTy->getPointeeType();
34 T = MPTy->getPointeeType();
63 T = IT->getPointeeType();
66 T = IT->getPointeeType();
88 T = PT->getPointeeType();
90 T = PT->getPointeeType();
598 CanonicalSubT = RefTy->getPointeeType();
600 CanonicalSubT = PtrTy->getPointeeType();
618 CanonicalSuperT = RefTy->getPointeeType();
    [all...]
SemaFixItUtils.cpp 37 (cast<PointerType>(From))->getPointeeType());
39 (cast<PointerType>(To))->getPointeeType());
98 S.Context.getCanonicalType(FromPtrTy->getPointeeType()), ToQTy,
SemaOverload.cpp 257 return ToPtrType->getPointeeType()->isVoidType();
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaExprMember.cpp 456 PT->getPointeeType()->isRecordType())) {
655 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
739 objectType = ptr->getPointeeType();
763 baseQuals = ThisTy->castAs<PointerType>()->getPointeeType().getQualifiers();
841 BaseType = BaseType->castAs<PointerType>()->getPointeeType();
    [all...]
  /external/clang/include/clang/AST/
CanonicalType.h 484 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
490 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
495 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
501 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
507 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
513 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
696 LLVM_CLANG_CANPROXY_TYPE_ACCESSOR(getPointeeType)
722 return RefType->getPointeeType();
  /external/clang/lib/Analysis/
CocoaConventions.cpp 43 if (!(PT->getPointeeType().getUnqualifiedType()->isVoidType()))
FormatString.cpp 244 if (PT->getPointeeType().isConstQualified())
247 argTy = PT->getPointeeType();
315 QualType pointeeTy = PT->getPointeeType();
336 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType();
373 QualType pointee = PT->getPointeeType();
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 108 if (QT->isPointerType() && QT->getPointeeType().isConstQualified()) {
117 if (QT->isPointerType() && !QT->getPointeeType().isConstQualified()) {
137 if (QT->isPointerType() && QT->getPointeeType().isConstQualified()) {
414 QT->getPointeeType().isConstQualified());
417 if (QT->getPointeeType().getCanonicalType().getUnqualifiedType() ==
436 QT->getPointeeType(),
  /external/clang/lib/ARCMigrate/
TransAPIUses.cpp 74 QualType pointee = parm->getType()->getPointeeType();
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 387 QualType ETy = RTy->getPointeeType();
395 QualType ETy = PTy->getPointeeType();
528 ConvertTypeForMem(cast<ObjCObjectPointerType>(Ty)->getPointeeType());
545 const QualType FTy = cast<BlockPointerType>(Ty)->getPointeeType();
CGCXXABI.cpp 49 MPT->getPointeeType()->getAs<FunctionProtoType>();
62 llvm::Type *Ty = CGF.ConvertType(MPT->getPointeeType())->getPointerTo();
  /external/clang/tools/libclang/
CXType.cpp 306 T = cast<PointerType>(TP)->getPointeeType();
309 T = cast<BlockPointerType>(TP)->getPointeeType();
313 T = cast<ReferenceType>(TP)->getPointeeType();
316 T = cast<ObjCObjectPointerType>(TP)->getPointeeType();
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 95 QualType PointeeTy = CastToTy->getPointeeType();
252 T = Ctx.getPointerType(RT->getPointeeType());

Completed in 368 milliseconds

1 2 3 4 5