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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAddressOps.java102 public static boolean gt(Address a1, Address a2) { method in class:AddressOps
113 return (gt(a1, a2) ? a1 : a2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java124 JExpression gt(JExpression right); method in interface:JExpression
H A DJExpressionImpl.java121 public final JExpression gt(JExpression right) { method in class:JExpressionImpl
122 return JOp.gt(this, right);
H A DJOp.java204 public static JExpression gt(JExpression left, JExpression right) { method in class:JOp
/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java60 * A code representing the {@link Query#gt} query. This is chiefly
168 public static QueryExp gt(ValueExp v1, ValueExp v2) { method in class:Query
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java62 gt = Query.gt(intValue, floatValue), field in class:QueryExpStringTest
87 and = Query.and(gt, lt),
88 or = Query.or(gt, lt),
89 not = Query.not(gt),
90 aPlusB_PlusC = Query.gt(Query.plus(Query.plus(aa, bb), cc), zero),
91 aPlus_BPlusC = Query.gt(Query.plus(aa, Query.plus(bb, cc)), zero);
113 gt, "(12345678) > (2.5)",
262 return Query.gt(lhs, rhs);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DCompiler.java142 expr = gt(opPos); break;
351 protected Expression gt(int opPos) throws TransformerException method in class:Compiler
/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
H A Dcompile.cpp1500 const TypeOopPtr *gt = atoop->cast_to_instance_id(TypeOopPtr::InstanceBot); local
1501 _general_index = Compile::current()->get_alias_index(gt);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp1092 BasicBlock *gt = builder()->CreateBlock(ip, "lcmp_gt"); local
1099 builder()->CreateCondBr(builder()->CreateICmpSLT(a, b), lt, gt);
1104 builder()->SetInsertPoint(gt);
1111 result->addIncoming(LLVMValue::jint_constant(1), gt);
1132 BasicBlock *gt = builder()->CreateBlock(ip, "fcmp_gt"); local
1137 unordered_is_greater ? gt : lt, ordered);
1143 builder()->CreateCondBr(builder()->CreateFCmpUGT(a, b), gt, eq);
1148 builder()->SetInsertPoint(gt);
1158 result->addIncoming(LLVMValue::jint_constant(1), gt);
/openjdk7/jdk/test/java/net/URI/
H A DTest.java1407 static void gt(Comparable u, Comparable v) throws URISyntaxException { method in class:Test
1423 gt(o, new URI("mailto:foo@bar.COM"));
1425 gt(r, new URI("reg://Some%20Registry/b/c/d?q#f"));
1426 gt(r, new URI("reg://some%20registry/b/c/D?q#f"));
1428 gt(s, new URI("http://jag:CafeBabe@java.sun.com:94/b/c/d?q#f"));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp2522 Condition gt = unordered_result == 1 ? f_unorderedOrGreater : f_greater; local
2528 movcc(gt, true, fcc0, 1, Rresult);
2536 fb( gt, true, pn, done); delayed()->set( 1, Rresult );

Completed in 682 milliseconds