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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAddressOps.java92 public static boolean lt(Address a1, Address a2) { method in class:AddressOps
118 return (lt(a1, a2) ? a1 : a2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java95 * Returns "[this]<<[right]"
122 JExpression lt(JExpression right); method in interface:JExpression
H A DJExpressionImpl.java113 public final JExpression lt(JExpression right) { method in class:JExpressionImpl
114 return JOp.lt(this, right);
H A DJOp.java196 public static JExpression lt(JExpression left, JExpression right) { method in class:JOp
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java204 protected boolean lt(File a, File b) { method in class:BasicDirectoryModel
/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java66 * A code representing the {@link Query#lt} query. This is chiefly
222 public static QueryExp lt(ValueExp v1, ValueExp v2) { method in class:Query
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java65 lt = Query.lt(intValue, floatValue), field in class:QueryExpStringTest
87 and = Query.and(gt, lt),
88 or = Query.or(gt, lt),
116 lt, "(12345678) < (2.5)",
260 return Query.lt(lhs, rhs);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DCompiler.java138 expr = lt(opPos); break;
323 protected Expression lt(int opPos) throws TransformerException method in class:Compiler
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java289 while ((lo < hi0) && lt((SortableFile)v.elementAt(lo), mid)) {
295 while ((hi > lo0) && lt(mid, (SortableFile)v.elementAt(hi))) {
328 protected abstract boolean lt(SortableFile a, SortableFile b); method in class:AquaFileSystemModel.QuickSort
332 protected boolean lt(final SortableFile a, final SortableFile b) { method in class:AquaFileSystemModel.QuickSortNames
340 protected boolean lt(final SortableFile a, final SortableFile b) { method in class:AquaFileSystemModel.QuickSortDates
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.hpp266 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::mask
275 bool is_canonical( ) const { return (_test == BoolTest::ne || _test == BoolTest::lt || _test == BoolTest::le); }
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp1091 BasicBlock *lt = builder()->CreateBlock(ip, "lcmp_lt"); local
1099 builder()->CreateCondBr(builder()->CreateICmpSLT(a, b), lt, gt);
1101 builder()->SetInsertPoint(lt);
1109 result->addIncoming(LLVMValue::jint_constant(-1), lt);
1130 BasicBlock *lt = builder()->CreateBlock(ip, "fcmp_lt"); local
1137 unordered_is_greater ? gt : lt, ordered);
1140 builder()->CreateCondBr(builder()->CreateFCmpULT(a, b), lt, ge);
1145 builder()->SetInsertPoint(lt);
1156 result->addIncoming(LLVMValue::jint_constant(-1), lt);
/openjdk7/jdk/test/java/net/URI/
H A DTest.java1391 static void lt(Comparable u, Comparable v) throws URISyntaxException { method in class:Test
1403 static void lt(String s, String t) throws URISyntaxException { method in class:Test
1404 lt(new URI(s), new URI(t));
1408 lt(v, u);
1419 lt(o, r);
1420 lt(s, o);
1421 lt(s, r);
1429 lt(s, new URI("http://jag:cafebabe@java.sun.com:94/b/c/d?r#f"));
1430 lt(s, new URI("http://jag:cafebabe@java.sun.com:94/b/c/d?q#g"));
1434 lt("
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp637 const Value l = x->x(); ValueType* lt = l->type(); local
640 if (l == r && !lt->is_float_kind()) {
656 if (lt->is_constant() && rt->is_constant()) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp2520 Condition lt = unordered_result == -1 ? f_unorderedOrLess : f_less; local
2534 //fb(lt, true, pn, done); delayed()->set( -1, Rresult );

Completed in 1240 milliseconds