Home
last modified time | relevance | path

Searched refs:pointerType (Results 1 – 8 of 8) sorted by relevance

/minix3/minix/llvm/passes/magic/support/
H A DTypeUtil.cpp105 TYPECONST PointerType* pointerType = dyn_cast<PointerType>(type); in getRecursiveElementType() local
106 if(!pointerType) { in getRecursiveElementType()
109 return getRecursiveElementType(pointerType->getElementType()); in getRecursiveElementType()
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dxcore-stringtype.c66 int* pointerType(int *I, int * (*FP)(int *)) { in pointerType() function
/minix3/external/bsd/llvm/dist/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp800 pointerType(pointee(builtinType())))))); in TEST()
806 qualType(asString("int ***"), forEachDescendant(pointerType().bind("x"))), in TEST()
827 varDecl(hasName("i"), hasType(qualType(has(pointerType())))))); in TEST()
4005 loc(pointerType(pointee(qualType()))))); in TEST()
4008 loc(pointerType(pointee(pointerType()))))); in TEST()
4011 loc(qualType(isConstQualified(), pointerType())))); in TEST()
4019 hasType(pointerType())))); in TEST()
4033 hasType(pointerType())))); in TEST()
4043 hasType(pointerType())))); in TEST()
4057 hasType(pointerType())))); in TEST()
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp1696 const ObjCObjectPointerType *pointerType = in CheckObjCForCollectionOperand() local
1698 if (!pointerType) in CheckObjCForCollectionOperand()
1704 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
1735 method = LookupMethodInQualifiedType(selector, pointerType, in CheckObjCForCollectionOperand()
3204 const PointerType *pointerType = type->getAs<PointerType>(); in ActOnObjCAtSynchronizedOperand() local
3205 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) { in ActOnObjCAtSynchronizedOperand()
H A DSemaChecking.cpp670 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in CheckARMBuiltinExclusiveCall() local
671 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
680 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
1310 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); in SemaAtomicOpsOverloaded() local
1311 if (!pointerType) { in SemaAtomicOpsOverloaded()
1318 QualType AtomTy = pointerType->getPointeeType(); // 'A' in SemaAtomicOpsOverloaded()
1565 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>(); in SemaBuiltinAtomicOverloaded() local
1566 if (!pointerType) { in SemaBuiltinAtomicOverloaded()
1572 QualType ValType = pointerType->getPointeeType(); in SemaBuiltinAtomicOverloaded()
/minix3/external/bsd/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp287 REGISTER_MATCHER(pointerType); in RegistryMaps()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp2404 const PointerType *pointerType in emitPointerArithmetic() local
2406 if (!pointerType) { in emitPointerArithmetic()
2420 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()
/minix3/external/bsd/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3481 AST_TYPE_MATCHER(PointerType, pointerType);