Home
last modified time | relevance | path

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

/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp815 pointerType(pointee(builtinType())))))); in TEST()
821 qualType(asString("int ***"), forEachDescendant(pointerType().bind("x"))), in TEST()
842 varDecl(hasName("i"), hasType(qualType(has(pointerType())))))); in TEST()
4036 loc(pointerType(pointee(qualType()))))); in TEST()
4039 loc(pointerType(pointee(pointerType()))))); in TEST()
4042 loc(qualType(isConstQualified(), pointerType())))); in TEST()
4050 hasType(pointerType())))); in TEST()
4064 hasType(pointerType())))); in TEST()
4074 hasType(pointerType())))); in TEST()
4088 hasType(pointerType())))); in TEST()
[all …]
/external/clang/test/CodeGen/
Dxcore-stringtype.c66 int* pointerType(int *I, int * (*FP)(int *)) { in pointerType() function
/external/clang/lib/Sema/
DSemaStmt.cpp1692 const ObjCObjectPointerType *pointerType = in CheckObjCForCollectionOperand() local
1694 if (!pointerType) in CheckObjCForCollectionOperand()
1700 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
1731 method = LookupMethodInQualifiedType(selector, pointerType, in CheckObjCForCollectionOperand()
3364 const PointerType *pointerType = type->getAs<PointerType>(); in ActOnObjCAtSynchronizedOperand() local
3365 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) { in ActOnObjCAtSynchronizedOperand()
DSemaChecking.cpp736 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in CheckARMBuiltinExclusiveCall() local
737 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
746 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
1481 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); in SemaAtomicOpsOverloaded() local
1482 if (!pointerType) { in SemaAtomicOpsOverloaded()
1489 QualType AtomTy = pointerType->getPointeeType(); // 'A' in SemaAtomicOpsOverloaded()
1736 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>(); in SemaBuiltinAtomicOverloaded() local
1737 if (!pointerType) { in SemaBuiltinAtomicOverloaded()
1743 QualType ValType = pointerType->getPointeeType(); in SemaBuiltinAtomicOverloaded()
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/
Dpolymer.js408 e.pointerType = inDict.pointerType || '';
1010 e.pointerType = this.POINTER_TYPE;
1204 e.pointerType = this.POINTER_TYPE;
1435 e.pointerType = this.POINTER_TYPES[inEvent.pointerType];
1716 pointerType: inEvent.pointerType, property
1742 if (inEvent.isPrimary && (inEvent.pointerType === 'mouse' ? inEvent.buttons === 1 : true)) {
1894 pointerType: this.heldPointer.pointerType, property
1963 if (e.pointerType === 'mouse') {
1981 pointerType: inEvent.pointerType, property
Dpolymer.min.js11pointerType=d.pointerType||"",f.hwTimestamp=d.hwTimestamp||0,f.isPrimary=d.isPrimary||!1,f._source… property
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp295 REGISTER_MATCHER(pointerType); in RegistryMaps()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2453 const PointerType *pointerType in emitPointerArithmetic() local
2455 if (!pointerType) { in emitPointerArithmetic()
2469 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3613 AST_TYPE_MATCHER(PointerType, pointerType);