Searched refs:obj2 (Results 1 - 25 of 76) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBooleanStatic.java52 * @param obj2 Object to compare to this
58 public boolean equals(XObject obj2) argument
62 return m_val == obj2.bool();
H A DXBoolean.java143 * @param obj2 Object to compare to this
149 public boolean equals(XObject obj2) argument
155 if (obj2.getType() == XObject.CLASS_NODESET)
156 return obj2.equals(this);
160 return m_val == obj2.bool();
H A DXObject.java531 * @param obj2 Object to compare this to
537 public boolean lessThan(XObject obj2) argument
546 if (obj2.getType() == XObject.CLASS_NODESET)
547 return obj2.greaterThan(this);
549 return this.num() < obj2.num();
555 * @param obj2 Object to compare this to
561 public boolean lessThanOrEqual(XObject obj2) argument
570 if (obj2.getType() == XObject.CLASS_NODESET)
571 return obj2.greaterThanOrEqual(this);
573 return this.num() <= obj2
585 greaterThan(XObject obj2) argument
609 greaterThanOrEqual(XObject obj2) argument
633 equals(XObject obj2) argument
661 notEquals(XObject obj2) argument
[all...]
H A DXNull.java122 * @param obj2 Object to compare this to
126 public boolean equals(XObject obj2) argument
128 return obj2.getType() == CLASS_NULL;
H A DXRTreeFrag.java249 * @param obj2 Object to compare this to
255 public boolean equals(XObject obj2) argument
260 if (XObject.CLASS_NODESET == obj2.getType())
266 return obj2.equals(this);
268 else if (XObject.CLASS_BOOLEAN == obj2.getType())
270 return bool() == obj2.bool();
272 else if (XObject.CLASS_NUMBER == obj2.getType())
274 return num() == obj2.num();
276 else if (XObject.CLASS_NODESET == obj2.getType())
278 return xstr().equals(obj2
[all...]
H A DXString.java285 * @param obj2 Object to compare this to
291 public boolean equals(XObject obj2) argument
297 int t = obj2.getType();
301 return obj2.equals(this);
306 return obj2.bool() == bool();
310 return obj2.num() == num();
319 return xstr().equals(obj2.xstr());
328 * @param obj2 the object to compare this <code>String</code> against.
334 public boolean equals(String obj2) { argument
335 return str().equals(obj2);
351 equals(XMLString obj2) argument
376 equals(Object obj2) argument
[all...]
H A DXStringForFSB.java281 * @param obj2 the object to compare this <code>String</code>
289 public boolean equals(XMLString obj2) argument
292 if (this == obj2)
299 if (n == obj2.length())
307 if (fsb.charAt(i) != obj2.charAt(j))
325 * @param obj2 Object to compare this to
331 public boolean equals(XObject obj2) argument
334 if (this == obj2)
338 if(obj2.getType() == XObject.CLASS_NUMBER)
339 return obj2
418 equals(Object obj2) argument
[all...]
H A DXNodeSet.java465 * @param obj2 Object to compare this nodeset to
472 public boolean compare(XObject obj2, Comparator comparator) argument
477 int type = obj2.getType();
495 DTMIterator list2 = ((XNodeSet) obj2).iterRaw();
552 double num2 = obj2.num();
567 double num2 = obj2.num();
585 XMLString s2 = obj2.xstr();
611 XMLString s2 = obj2.xstr();
629 result = comparator.compareNumbers(this.num(), obj2.num());
638 * @param obj2 objec
644 lessThan(XObject obj2) argument
658 lessThanOrEqual(XObject obj2) argument
672 greaterThan(XObject obj2) argument
686 greaterThanOrEqual(XObject obj2) argument
701 equals(XObject obj2) argument
722 notEquals(XObject obj2) argument
[all...]
H A DXNumber.java387 * @param obj2 Object to compare this to
393 public boolean equals(XObject obj2) argument
399 int t = obj2.getType();
403 return obj2.equals(this);
405 return obj2.bool() == bool();
407 return m_val == obj2.num();
/external/jdiff/src/jdiff/
H A DCompareClassPdiffs.java16 public int compare(Object obj1, Object obj2){ argument
18 ClassDiff c2 = (ClassDiff)obj2;
H A DComparePkgPdiffs.java16 public int compare(Object obj1, Object obj2){ argument
18 PackageDiff p2 = (PackageDiff)obj2;
/external/mockito/src/test/java/org/mockito/internal/matchers/apachecommons/
H A DEqualsBuilderTest.java387 TestObject[] obj2 = new TestObject[3];
388 obj2[0] = new TestObject(4);
389 obj2[1] = new TestObject(5);
390 obj2[2] = null;
393 assertTrue(new EqualsBuilder().append(obj2, obj2).isEquals());
394 assertTrue(new EqualsBuilder().append(obj1, obj2).isEquals());
396 assertTrue(!new EqualsBuilder().append(obj1, obj2).isEquals());
398 assertTrue(new EqualsBuilder().append(obj1, obj2).isEquals());
400 assertTrue(!new EqualsBuilder().append(obj1, obj2)
[all...]
/external/pdfium/core/fxcrt/
H A Dcfx_retain_ptr_unittest.cpp92 PseudoRetainable obj2; local
95 ptr.Reset(&obj2);
98 EXPECT_EQ(1, obj2.retain_count());
99 EXPECT_EQ(0, obj2.release_count());
103 EXPECT_EQ(1, obj2.retain_count());
104 EXPECT_EQ(1, obj2.release_count());
109 PseudoRetainable obj2; local
113 CFX_RetainPtr<PseudoRetainable> ptr2(&obj2);
117 EXPECT_EQ(1, obj2.retain_count());
118 EXPECT_EQ(0, obj2
190 PseudoRetainable obj2; local
211 PseudoRetainable obj2; local
[all...]
H A Dcfx_observable_unittest.cpp140 PseudoObservable obj2; local
143 PseudoObservable::ObservedPtr obj2_ptr1(&obj2);
151 PseudoObservable::ObservedPtr obj2_ptr2(&obj2);
161 PseudoObservable obj2; local
164 PseudoObservable::ObservedPtr obj2_ptr1(&obj2);
168 PseudoObservable::ObservedPtr obj2_ptr2(&obj2);
/external/apache-http/src/org/apache/http/util/
H A DLangUtils.java68 public static boolean equals(final Object obj1, final Object obj2) { argument
69 return obj1 == null ? obj2 == null : obj1.equals(obj2);
/external/autotest/frontend/
H A Ddb_router.py95 def allow_relation(self, obj1, obj2, **hints):
100 @param obj2: Second object involved in the relation.
107 self._should_be_in_server_db(type(obj2))):
110 self._should_be_in_global(type(obj2))):
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
H A DListOrganizerTest.java56 Object obj2 = new Object();
61 list.add(obj2);
71 assertEquals(obj2, list.getLast());
/external/boringssl/src/crypto/x509v3/
H A Dv3_pmaps.c118 ASN1_OBJECT *obj1, *obj2;
136 obj2 = OBJ_txt2obj(val->value, 0);
137 if (!obj1 || !obj2) {
150 pmap->subjectDomainPolicy = obj2;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DYamlStream.java63 Object obj2 = piterator.next();
68 Map<Object, Object> map2 = (Map<Object, Object>) obj2;
82 if (!obj1.equals(obj2)) {
83 throw new AssertionFailedError("Expected: " + obj1 + "; but was: " + obj2);
/external/fonttools/Lib/fontTools/misc/
H A DpsOperators.py238 obj2 = self.pop()
240 self.push(obj2)
415 obj2 = self.pop()
419 obj3.value[obj2.value] = obj1
421 obj3.value[obj2.value] = obj1
423 index = obj2.value
430 obj2 = self.pop('arraytype', 'dicttype', 'stringtype', 'proceduretype', 'fonttype')
431 tp = obj2.type
433 self.push(obj2.value[obj1.value])
435 self.push(obj2
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DpsOperators.py238 obj2 = self.pop()
240 self.push(obj2)
415 obj2 = self.pop()
419 obj3.value[obj2.value] = obj1
421 obj3.value[obj2.value] = obj1
423 index = obj2.value
430 obj2 = self.pop('arraytype', 'dicttype', 'stringtype', 'proceduretype', 'fonttype')
431 tp = obj2.type
433 self.push(obj2.value[obj1.value])
435 self.push(obj2
[all...]
/external/junit-params/src/test/java/junitparams/
H A DObjectStringificationTest.java32 ClassWithToString obj2 = new ClassWithToString("two");
34 assertThat(stringify(new Object[]{obj1, obj2}, 0)).isEqualTo("[0] one, two");
/external/libchrome/base/
H A Did_map_unittest.cc31 TestObject obj2; local
38 int32_t id2 = map.Add(&obj2);
43 EXPECT_EQ(&obj2, map.Lookup(id2));
54 map.AddWithID(&obj2, 2);
56 EXPECT_EQ(&obj2, map.Lookup(2));
58 EXPECT_EQ(&obj2, map.Replace(2, &obj1));
68 TestObject obj2; local
72 map.Add(&obj2);
153 TestObject obj2; local
157 map.Add(&obj2);
181 TestObject obj2; local
[all...]
/external/clang/test/CXX/special/class.copy/
H A Dp15-0x.cpp17 bar obj2(obj);
/external/libxml2/os400/iconv/bldcsndfa/
H A Dbldcsndfa.c1020 xmlXPathObjectPtr obj2; local
1087 obj2 = xmlXPathEval(utf8_getmibenum, ctxt);
1089 if (!obj2 || obj2->type != XPATH_NUMBER) {
1094 if (xmlXPathIsNaN(obj2->floatval) ||
1095 obj2->floatval < 1.0 || obj2->floatval > 65535.0 ||
1096 ((unsigned int) obj2->floatval) != obj2->floatval) {
1098 xmlXPathFreeObject(obj2);
[all...]

Completed in 1263 milliseconds

1234