Searched refs:comparison (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp719 // value as the comparison value when doing the cas to acquire the
1376 /* comparison operators */
1379 #define COMPARISON_OP(name, comparison) \
1381 int skip = (STACK_INT(-2) comparison STACK_INT(-1)) \
1389 int skip = (STACK_INT(-1) comparison 0) \
1397 #define COMPARISON_OP2(name, comparison) \
1398 COMPARISON_OP(name, comparison) \
1400 int skip = (STACK_OBJECT(-2) comparison STACK_OBJECT(-1)) \
1431 COMPARISON_OP2(eq, ==); /* include ref comparison */
1432 COMPARISON_OP2(ne, !=); /* include ref comparison */
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java1532 int comparison = files[shouldIndex].compareTo((File)selectedObjects[actuallyIndex]);
1533 if (comparison < 0) {
1535 } else if (comparison > 0) {

Completed in 41 milliseconds