Searched defs:env (Results 251 - 275 of 948) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DNameAndTypeConstantData.java57 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
H A DNumberConstantData.java53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
H A DStringConstantData.java53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
H A DStringExpressionConstantData.java56 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DAssignAddExpression.java49 public int costInline(int thresh, Environment env, Context ctx) { argument
50 return type.isType(TC_CLASS) ? 25 : super.costInline(thresh, env, ctx);
56 void code(Environment env, Context ctx, Assembler asm, boolean valNeeded) { argument
63 env.getClassDeclaration(idJavaLangStringBuffer);
72 int depth = left.codeLValue(env, ctx, asm);
73 codeDup(env, ctx, asm, depth, 2); // copy past 2 string buffers
78 left.codeLoad(env, ctx, asm);
79 left.ensureString(env, ctx, asm); // Why is this needed?
83 MemberDefinition f = c.getClassDefinition(env)
84 .matchMethod(env, sourceClas
146 codeOperation(Environment env, Context ctx, Assembler asm) argument
[all...]
H A DAssignBitAndExpression.java49 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignBitOrExpression.java49 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignBitXorExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignDivideExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignMultiplyExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignRemainderExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignShiftLeftExpression.java49 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignShiftRightExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignSubtractExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DAssignUnsignedShiftRightExpression.java48 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DBinaryArithmeticExpression.java47 void selectType(Environment env, Context ctx, int tm) { argument
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
H A DBinaryBitExpression.java49 void selectType(Environment env, Context ctx, int tm) { argument
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
64 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
65 left.codeValue(env, ctx, asm);
66 right.codeValue(env, ctx, asm);
67 codeOperation(env, ctx, asm);
H A DBinaryCompareExpression.java47 void selectType(Environment env, Context ctx, int tm) { argument
56 left = convert(env, ctx, t, left);
57 right = convert(env, ctx, t, right);
H A DBinaryEqualityExpression.java47 void selectType(Environment env, Context ctx, int tm) { argument
54 if (env.explicitCast(left.type, right.type) ||
55 env.explicitCast(right.type, left.type)) {
58 env.error(where, "incompatible.type",
61 env.error(where, "class.not.found", e.name, opNames[op]);
75 left = convert(env, ctx, t, left);
76 right = convert(env, ctx, t, right);
H A DBinaryLogicalExpression.java48 public Vset checkValue(Environment env, Context ctx, argument
53 checkCondition(env, ctx, vset, exp, cvars);
63 public void checkCondition(Environment env, Context ctx, Vset vset, argument
70 public Expression inline(Environment env, Context ctx) { argument
71 left = left.inlineValue(env, ctx);
72 right = right.inlineValue(env, ctx);
H A DBinaryShiftExpression.java65 void selectType(Environment env, Context ctx, int tm) { argument
70 left = convert(env, ctx, type, left);
77 right = convert(env, ctx, Type.tInt, right);
H A DBitAndExpression.java76 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DBitNotExpression.java48 void selectType(Environment env, Context ctx, int tm) { argument
54 right = convert(env, ctx, type, right);
80 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
81 right.codeValue(env, ctx, asm);
H A DBitOrExpression.java76 void codeOperation(Environment env, Context ctx, Assembler asm) { argument
H A DBitXorExpression.java81 void codeOperation(Environment env, Context ctx, Assembler asm) { argument

Completed in 84 milliseconds

<<11121314151617181920>>