Searched defs:exprType (Results 1 - 4 of 4) sorted by relevance

/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java35 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in class:TypeChecker
50 * Converts an array of tuples of exprType, arrayDim, and className
74 * Converts a tuple of exprType, arrayDim, and className
149 exprType = CLASS;
170 exprType = type;
203 exprType = type;
249 exprType = varType;
258 int aType = exprType;
262 exprType = aType;
272 int fType = exprType;
[all...]
H A DCodeGen.java78 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in class:CodeGen
338 if (is2word(exprType, arrayDim))
340 else if (exprType != VOID)
601 int type = exprType;
628 if (exprType != CLASS || arrayDim > 0)
646 if (exprType != CLASS && arrayDim == 0)
813 exprType = varType;
828 bytecode.addOpcode(getArrayReadOp(exprType, arrayDim));
831 int aType = exprType;
844 exprType
[all...]
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp2071 QualType exprType) {
2075 Context.getCanonicalType(exprType).getUnqualifiedType();
2070 CheckObjCARCUnavailableWeakConversion(QualType castType, QualType exprType) argument
H A DSemaExpr.cpp1398 QualType exprType = var->getType().getNonReferenceType(); local
1404 bool constAdded = !exprType.isConstQualified();
1405 exprType.addConst();
1407 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue,
1411 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue,

Completed in 189 milliseconds