Searched refs:exprType (Results 1 – 6 of 6) sorted by relevance
/external/javassist/src/main/javassist/compiler/ |
D | TypeChecker.java | 35 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in TypeChecker 149 exprType = CLASS; in atNewExpr() 170 exprType = type; in atNewArrayExpr() 203 exprType = type; in atMultiNewArray() 249 exprType = varType; in atVariableAssign() 258 int aType = exprType; in atArrayAssign() 262 exprType = aType; in atArrayAssign() 272 int fType = exprType; in atFieldAssign() 276 exprType = fType; in atFieldAssign() 284 int type1 = exprType; in atCondExpr() [all …]
|
D | JvstTypeChecker.java | 36 if (exprType == VOID) { in addNullIfVoid() 37 exprType = CLASS; in addNullIfVoid() 49 exprType = CLASS; in atMember() 54 exprType = CLASS; in atMember() 60 exprType = CLASS; in atMember() 113 if (exprType == VOID || CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToRtype() 118 exprType = destType; in atCastToRtype() 126 if (CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToWrapper() 129 CtClass clazz = resolver.lookupClass(exprType, arrayDim, className); in atCastToWrapper() 131 exprType = CLASS; in atCastToWrapper() [all …]
|
D | JvstCodeGen.java | 69 if (exprType == VOID) { in addNullIfVoid() 71 exprType = CLASS; in addNullIfVoid() 84 exprType = CLASS; in atMember() 92 exprType = CLASS; in atMember() 117 exprType = CLASS; in callGetType() 131 if (arrayDim != 1 || exprType != CLASS) in atFieldAssign() 156 varNo += is2word(exprType, arrayDim) ? 2 : 1; in atAssignParamList() 186 if (exprType == VOID || isRefType(exprType) || arrayDim > 0) in atCastToRtype() 191 atNumCastExpr(exprType, destType); in atCastToRtype() 192 exprType = destType; in atCastToRtype() [all …]
|
D | CodeGen.java | 78 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in CodeGen 338 if (is2word(exprType, arrayDim)) in atStmnt() 340 else if (exprType != VOID) in atStmnt() 601 int type = exprType; in atReturnStmnt2() 628 if (exprType != CLASS || arrayDim > 0) in atThrowStmnt() 646 if (exprType != CLASS && arrayDim == 0) in atSyncStmnt() 813 exprType = varType; in atVariableAssign() 828 bytecode.addOpcode(getArrayReadOp(exprType, arrayDim)); in atArrayAssign() 831 int aType = exprType; in atArrayAssign() 844 exprType = aType; in atArrayAssign() [all …]
|
D | MemberCodeGen.java | 304 exprType = CLASS; in atNewExpr() 394 atNumCastExpr(exprType, type); in atNewArrayExpr2() 401 exprType = type; in atNewArrayExpr2() 431 if (exprType != INT) in atMultiNewArray() 436 exprType = type; in atMultiNewArray() 503 exprType = CLASS; in atCallExpr() 512 else if (exprType == CLASS /* && arrayDim == 0 */) in atCallExpr() 720 types[i] = exprType; in atMethodArgs() 748 exprType = CLASS; in setReturnType() 752 exprType = MemberResolver.descToType(c); in setReturnType() [all …]
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 4197 QualType exprType) { in CheckObjCARCUnavailableWeakConversion() argument 4201 Context.getCanonicalType(exprType).getUnqualifiedType(); in CheckObjCARCUnavailableWeakConversion()
|