/external/clang/lib/ARCMigrate/ |
D | TransAPIUses.cpp | 74 QualType pointee = parm->getType()->getPointeeType(); in VisitObjCMessageExpr() local 75 if (pointee.isNull()) in VisitObjCMessageExpr() 78 if (pointee.getObjCLifetime() > Qualifiers::OCL_ExplicitNone) { in VisitObjCMessageExpr()
|
D | TransAutoreleasePool.cpp | 394 QualType pointee = Ty->getPointeeType(); in isNSAutoreleasePool() local 395 if (pointee.isNull()) in isNSAutoreleasePool() 397 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
|
/external/clang/lib/Analysis/ |
D | FormatString.cpp | 373 QualType pointee = PT->getPointeeType(); in matchesType() local 374 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersTest.cpp | 714 pointerType(pointee(builtinType())))))); in TEST() 3644 loc(pointerType(pointee(qualType()))))); in TEST() 3647 loc(pointerType(pointee(pointerType()))))); in TEST() 3737 referenceType(pointee(builtinType())))); in TEST() 3738 EXPECT_TRUE(matches("int *a;", pointerType(pointee(builtinType())))); in TEST() 3741 loc(pointerType(pointee(builtinType()))))); in TEST() 3745 pointerType(pointee(isConstQualified(), builtinType())))); in TEST() 3748 pointerType(pointee(isConstQualified(), builtinType())))); in TEST() 3758 loc(pointerType(pointee(builtinType()))))); in TEST() 3761 pointerType(pointee(builtinType())))); in TEST()
|
/external/chromium_org/v8/tools/gcmole/ |
D | gcmole.cc | 1101 const clang::TagType* pointee = in IsRawPointerType() local 1103 if (pointee == NULL) return false; in IsRawPointerType() 1106 dyn_cast_or_null<clang::CXXRecordDecl>(pointee->getDecl()); in IsRawPointerType()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 1103 const clang::TagType* pointee = in IsRawPointerType() local 1105 if (pointee == NULL) return false; in IsRawPointerType() 1108 dyn_cast_or_null<clang::CXXRecordDecl>(pointee->getDecl()); in IsRawPointerType()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 354 REGISTER_MATCHER(pointee); in RegistryMaps()
|
/external/chromium/testing/gmock/test/ |
D | gmock-generated-actions_test.cc | 1111 AND_1_VALUE_PARAMS(pointee)) { in ACTION_TEMPLATE() argument 1112 return Pointer<pointee_type>(new pointee_type(pointee)); in ACTION_TEMPLATE()
|
/external/clang/docs/ |
D | AutomaticReferenceCounting.rst | 833 * For ``__weak`` objects, the current pointee is retained and then released at 835 respect to assignments and to the final release of the pointee. 841 * For ``__strong`` objects, the new pointee is first retained; second, the 842 lvalue is loaded with primitive semantics; third, the new pointee is stored 843 into the lvalue with primitive semantics; and finally, the old pointee is 846 * For ``__weak`` objects, the lvalue is updated to point to the new pointee, 847 unless the new pointee is an object currently undergoing deallocation, in 850 object, and to the final release of the new pointee. 851 * For ``__unsafe_unretained`` objects, the new pointee is stored into the 853 * For ``__autoreleasing`` objects, the new pointee is retained, autoreleased, [all …]
|
D | LanguageExtensions.rst | 2082 determines the pointee type of some other pointer argument.
|
D | InternalsManual.rst | 886 operator is the pointee type of the subexpression. In order to determine the
|
/external/clang/lib/AST/ |
D | MicrosoftMangle.cpp | 1680 QualType pointee = T->getPointeeType(); in mangleType() local 1681 mangleFunctionType(pointee->castAs<FunctionProtoType>(), NULL, false, false); in mangleType()
|
/external/llvm/docs/ |
D | BitCodeFormat.rst | 934 ``[POINTER, pointee type, address space]`` 939 * *pointee type*: The type index of the pointed-to type
|
D | LangRef.rst | 682 the pointee is made between the caller and the callee, so the callee 4642 when they may see multiple atomic stores. The type of the pointee must 4647 least the size in bytes of the pointee. ``!nontemporal`` does not have 4727 when they may see multiple atomic stores. The type of the pointee must 4732 at least the size in bytes of the pointee. ``!nontemporal`` does not
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 3236 pointee, getPointee,
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 3922 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local 3923 if (pointee->isObjCRetainableType() || pointee->isPointerType()) in handleObjCOwnershipTypeAttr()
|
/external/clang/test/Analysis/ |
D | misc-ps.m | 1074 // PR 8050 - crash in CastSizeChecker when pointee is an incomplete type
|