Home
last modified time | relevance | path

Searched refs:pointee (Results 1 – 20 of 20) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransAPIUses.cpp73 QualType pointee = parm->getType()->getPointeeType(); in VisitObjCMessageExpr() local
74 if (pointee.isNull()) in VisitObjCMessageExpr()
77 if (pointee.getObjCLifetime() > Qualifiers::OCL_ExplicitNone) in VisitObjCMessageExpr()
DTransAutoreleasePool.cpp394 QualType pointee = Ty->getPointeeType(); in isNSAutoreleasePool() local
395 if (pointee.isNull()) in isNSAutoreleasePool()
397 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
/external/lldb/test/python_api/watchpoint/watchlocation/
DTestTargetWatchAddress.py83 pointee = value.CreateValueFromAddress("pointee",
92 self.DebugSBValue(pointee)
109 self.DebugSBValue(pointee)
142 pointee = value.CreateValueFromAddress("pointee",
DTestSetWatchlocation.py68 pointee = value.CreateValueFromAddress("pointee",
77 self.DebugSBValue(pointee)
94 self.DebugSBValue(pointee)
/external/lldb/examples/summaries/cocoa/
DCFString.py34 pointee = valobj.GetValueAsUnsigned(0)
36 if pointee != None and pointee != 0:
37 pointee = pointee + offset
38 child_ptr = valobj.CreateValueFromAddress("string_ptr",pointee,valobj.GetType())
/external/clang/lib/Analysis/
DFormatString.cpp394 QualType pointee = PT->getPointeeType(); in matchesType() local
395 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
/external/ltrace/
Dlens_default.c290 struct arg_type_info *pointee = value->type->u.ptr_info.info; in format_pointer() local
291 if (pointee->type == ARGTYPE_STRUCT) { in format_pointer()
299 if (old_pointee == pointee) in format_pointer()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp744 pointerType(pointee(builtinType())))))); in TEST()
3802 loc(pointerType(pointee(qualType()))))); in TEST()
3805 loc(pointerType(pointee(pointerType()))))); in TEST()
3895 referenceType(pointee(builtinType())))); in TEST()
3896 EXPECT_TRUE(matches("int *a;", pointerType(pointee(builtinType())))); in TEST()
3899 loc(pointerType(pointee(builtinType()))))); in TEST()
3903 pointerType(pointee(isConstQualified(), builtinType())))); in TEST()
3906 pointerType(pointee(isConstQualified(), builtinType())))); in TEST()
3916 loc(pointerType(pointee(builtinType()))))); in TEST()
3919 pointerType(pointee(builtinType())))); in TEST()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc1085 const clang::TagType* pointee = in IsRawPointerType() local
1087 if (pointee == NULL) return false; in IsRawPointerType()
1090 llvm::dyn_cast_or_null<clang::CXXRecordDecl>(pointee->getDecl()); in IsRawPointerType()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp271 REGISTER_MATCHER(pointee); in RegistryMaps()
/external/clang/docs/
DAutomaticReferenceCounting.rst833 * 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 …]
DAttributeReference.rst1026 determines the pointee type of some other pointer argument.
DInternalsManual.rst889 operator is the pointee type of the subexpression. In order to determine the
/external/clang/lib/AST/
DMicrosoftMangle.cpp1964 QualType pointee = T->getPointeeType(); in mangleType() local
1965 mangleFunctionType(pointee->castAs<FunctionProtoType>()); in mangleType()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3291 pointee, getPointee,
/external/llvm/docs/
DBitCodeFormat.rst954 ``[POINTER, pointee type, address space]``
959 * *pointee type*: The type index of the pointed-to type
DLangRef.rst871 the pointee is made between the caller and the callee, so the callee
4990 when they may see multiple atomic stores. The type of the pointee must
4995 least the size in bytes of the pointee. ``!nontemporal`` does not have
5075 when they may see multiple atomic stores. The type of the pointee must
5080 at least the size in bytes of the pointee. ``!nontemporal`` does not
6397 parameters or return types may differ in pointee type, but not
/external/clang/lib/Sema/
DSemaType.cpp4028 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local
4029 if (pointee->isObjCRetainableType() || pointee->isPointerType()) in handleObjCOwnershipTypeAttr()
/external/clang/test/Analysis/
Dmisc-ps.m1074 // PR 8050 - crash in CastSizeChecker when pointee is an incomplete type
/external/clang/include/clang/Basic/
DAttrDocs.td797 determines the pointee type of some other pointer argument.