Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DCocoaConventions.cpp25 bool cocoa::isRefType(QualType RetTy, StringRef Prefix, in isRefType() function in cocoa
51 return cocoa::isRefType(T, "CF") || // Core Foundation. in isCFObjectRef()
52 cocoa::isRefType(T, "CG") || // Core Graphics. in isCFObjectRef()
53 cocoa::isRefType(T, "DADisk") || // Disk Arbitration API. in isCFObjectRef()
54 cocoa::isRefType(T, "DADissenter") || in isCFObjectRef()
55 cocoa::isRefType(T, "DASessionRef"); in isCFObjectRef()
/external/clang/include/clang/Analysis/DomainSpecific/
DCocoaConventions.h27 bool isRefType(QualType RetTy, StringRef Prefix,
/external/javassist/src/main/javassist/compiler/
DJvstTypeChecker.java113 if (exprType == VOID || CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToRtype()
126 if (CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToWrapper()
DJvstCodeGen.java186 if (exprType == VOID || isRefType(exprType) || arrayDim > 0) in atCastToRtype()
202 if (isRefType(exprType) || arrayDim > 0) in atCastToWrapper()
700 if (arrayDim == 0 && !isRefType(exprType)) in doNumCast()
DCodeGen.java608 else if (isRefType(type)) in atReturnStmnt2()
808 else if (isRefType(varType)) in atVariableAssign()
874 if (op != '=' || (dim == 0 && !isRefType(type))) in atAssignCore()
1064 if (isRefType(type) || dim > 0) in convToString()
1264 protected static boolean isRefType(int type) { in isRefType() method in CodeGen
1275 else if (isRefType(type)) in typePrecedence()
1396 if (!isRefType(srcType)) in checkCastExpr()
DMemberCodeGen.java393 if (!isRefType(type)) in atNewArrayExpr2()
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp1156 if (cocoa::isRefType(RetTy, "CF", FName)) { in getFunctionSummary()
1175 if (cocoa::isRefType(RetTy, "CG", FName)) { in getFunctionSummary()
1185 if (cocoa::isRefType(RetTy, "DADisk") || in getFunctionSummary()
1186 cocoa::isRefType(RetTy, "DADissenter") || in getFunctionSummary()
1187 cocoa::isRefType(RetTy, "DASessionRef")) { in getFunctionSummary()
3379 if (cocoa::isRefType(ResultTy, "CF", FName) || in evalCall()
3380 cocoa::isRefType(ResultTy, "CG", FName)) { in evalCall()
/external/clang/lib/ARCMigrate/
DTransUnbridgedCasts.cpp147 ento::cocoa::isRefType(E->getSubExpr()->getType(), "CF", in transformNonObjCToObjCCast()
DTransforms.cpp100 ento::cocoa::isRefType(callE->getType(), "CF", in isPlusOne()