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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java820 private OperatorSymbol binaryAccessOperator(int acode) { argument
826 if (accessCode(op.opcode) == acode) return op;
873 /** The name of the access method with number `anum' and access code `acode'.
875 Name accessName(int anum, int acode) { argument
877 "access" + target.syntheticNameChar() + anum + acode / 10 + acode % 10);
916 int acode; // The access code of the access method.
922 acode = accessCode(tree, enclOp);
923 if (acode >= FIRSTASGOPcode) {
924 OperatorSymbol operator = binaryAccessOperator(acode);
1229 accessDef(int pos, Symbol vsym, MethodSymbol accessor, int acode) argument
[all...]

Completed in 42 milliseconds