Searched defs:eq (Results 26 - 35 of 35) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java1091 private static boolean eq(Object x, Object y) { method in class:MethodType.WeakInternSet
1161 if (e.hash == h && eq(value, g = e.get()))
1183 if (h == e.hash && eq(value, g = e.get())) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstantPool.java159 public boolean eq(Entry that) { // same reference method in class:ConstantPool.Entry
313 ((StringEntry)o).ref.eq(ref));
345 && ((ClassEntry) o).ref.eq(ref));
386 return this.nameRef.eq(that.nameRef)
387 && this.typeRef.eq(that.typeRef);
447 return this.classRef.eq(that.classRef)
448 && this.descRef.eq(that.descRef);
H A DPackage.java969 return eq(this.thisClass, that.thisClass)
970 && eq(this.outerClass, that.outerClass)
971 && eq(this.name, that.name)
974 private static boolean eq(Object x, Object y) { method in class:Package.InnerClass
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java645 EventQueue eq = (EventQueue)appContext.get(AppContext.EVENT_QUEUE_KEY);
648 return accessor.isDispatchThreadImpl(eq);
2034 PostEventQueue(EventQueue eq) { argument
2035 eventQueue = eq;
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java933 if (!eq(target.get(i), source.get(j)))
943 if (!eq(ti.next(), si.next())) {
986 if (!eq(target.get(i), source.get(j)))
998 if (!eq(ti.next(), si.next())) {
1497 return eq(e.getKey(), t.getKey()) &&
1498 eq(e.getValue(), t.getValue());
3337 public boolean contains(Object o) {return eq(o, element);}
3371 public boolean contains(Object obj) {return eq(obj, element);}
3414 public boolean containsKey(Object key) {return eq(key, k);}
3416 public boolean containsValue(Object value) {return eq(valu
3695 static boolean eq(Object o1, Object o2) { method in class:Collections
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp1177 Node* eq = __ IfFalse(iff); local
1186 kit.set_control(eq);
H A Dtype.cpp196 assert(t1 != t2 || t1->eq(t2), "eq must be reflexive");
197 return !t1->eq(t2); // Return ZERO if equal
501 assert( eq(dual_dual), "xdual(xdual()) should be identity" );
507 //------------------------------eq---------------------------------------------
509 bool Type::eq( const Type * ) const { function in class:Type
901 //------------------------------eq---------------------------------------------
903 bool TypeF::eq( const Type *t ) const { function in class:TypeF
1014 //------------------------------eq---------------------------------------------
1016 bool TypeD::eq( cons function in class:TypeD
1267 bool TypeInt::eq( const Type *t ) const { function in class:TypeInt
1526 bool TypeLong::eq( const Type *t ) const { function in class:TypeLong
1759 bool TypeTuple::eq( const Type *t ) const { function in class:TypeTuple
1875 bool TypeAry::eq( const Type *t ) const { function in class:TypeAry
2023 bool TypeVect::eq(const Type *t) const { function in class:TypeVect
2194 bool TypePtr::eq( const Type *t ) const { function in class:TypePtr
2344 bool TypeRawPtr::eq( const Type *t ) const { function in class:TypeRawPtr
2751 bool TypeOopPtr::eq( const Type *t ) const { function in class:TypeOopPtr
3269 bool TypeInstPtr::eq( const Type *t ) const { function in class:TypeInstPtr
3436 bool TypeAryPtr::eq( const Type *t ) const { function in class:TypeAryPtr
3730 bool TypeNarrowOop::eq( const Type *t ) const { function in class:TypeNarrowOop
3858 bool TypeKlassPtr::eq( const Type *t ) const { function in class:TypeKlassPtr
4242 bool TypeFunc::eq( const Type *t ) const { function in class:TypeFunc
[all...]
H A Dlibrary_call.cpp919 BoolTest::mask le_or_eq = (never_negative ? BoolTest::eq : BoolTest::le);
1086 Node* bol = _gvn.transform(new (C) BoolNode(cmp, BoolTest::eq));
1272 __ if_then(src, BoolTest::eq, lastChar, unlikely); {
1279 __ if_then(__ AndI(cache, __ LShiftI(one, src2)), BoolTest::eq, zero); { member in class:BoolTest
1293 __ if_then(__ AndI(cache, __ LShiftI(one, src)), BoolTest::eq, zero, likely); { member in class:BoolTest
1364 bol = _gvn.transform( new(C) BoolNode(cmp, BoolTest::eq) );
1590 Node* bolisnum = _gvn.transform(new (C) BoolNode(cmpisnan, BoolTest::eq));
1737 Node *bolyplus1 = _gvn.transform( new (C) BoolNode( cmpyplus1, BoolTest::eq ) );
1959 case BoolTest::eq:
1986 if (btest == BoolTest::eq || btes
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp931 const char* eq = strchr(prop, '='); local
937 size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
942 if (eq != NULL) {
951 if (eq != NULL) {
964 if (eq != NULL) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp2521 Condition eq = f_equal; local
2527 movcc(eq, true, fcc0, 0, Rresult);
2535 fb( eq, true, pn, done); delayed()->set( 0, Rresult );

Completed in 89 milliseconds

12