Searched refs:isRefType (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/Analysis/ |
D | CocoaConventions.cpp | 66 bool cocoa::isRefType(QualType RetTy, llvm::StringRef Prefix, in isRefType() function in cocoa 90 return cocoa::isRefType(T, "CF") || // Core Foundation. in isCFObjectRef() 91 cocoa::isRefType(T, "CG") || // Core Graphics. in isCFObjectRef() 92 cocoa::isRefType(T, "DADisk") || // Disk Arbitration API. in isCFObjectRef() 93 cocoa::isRefType(T, "DADissenter") || in isCFObjectRef() 94 cocoa::isRefType(T, "DASessionRef"); in isCFObjectRef()
|
/external/clang/include/clang/Analysis/DomainSpecific/ |
D | CocoaConventions.h | 36 bool isRefType(QualType RetTy, llvm::StringRef Prefix,
|
/external/javassist/src/main/javassist/compiler/ |
D | JvstTypeChecker.java | 113 if (exprType == VOID || CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToRtype() 126 if (CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToWrapper()
|
D | JvstCodeGen.java | 186 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()
|
D | CodeGen.java | 608 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()
|
D | MemberCodeGen.java | 393 if (!isRefType(type)) in atNewArrayExpr2()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 118 ento::cocoa::isRefType(E->getSubExpr()->getType(), "CF", in transformNonObjCToObjCCast()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CFRefCount.cpp | 1054 if (cocoa::isRefType(RetTy, "CF", FName)) { in getSummary() 1066 if (cocoa::isRefType(RetTy, "CG", FName)) { in getSummary() 1076 if (cocoa::isRefType(RetTy, "DADisk") || in getSummary() 1077 cocoa::isRefType(RetTy, "DADissenter") || in getSummary() 1078 cocoa::isRefType(RetTy, "DASessionRef")) { in getSummary()
|