HomeSort by relevance Sort by last modified time
    Searched refs:obj2 (Results 51 - 75 of 211) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ObjectTest.java 26 Object obj2 = new Object(); field in class:ObjectTest
49 assertTrue("Different objects should not be equal", !obj1.equals(obj2));
82 obj2.hashCode() == obj2.hashCode());
StringBuffer2Test.java 176 Object obj2 = new Object(); local
178 sb.append(obj2);
180 obj1.toString() + obj2.toString()));
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 159 * @param obj2 the object to compare this <code>String</code> against.
165 public boolean equals(String obj2) {
166 return m_str.equals(obj2);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Sequence.java 325 ASN1Encodable obj2 = getNext(s2); local
328 ASN1Primitive o2 = obj2.toASN1Primitive();
ASN1Set.java 440 ASN1Encodable obj2 = getNext(s2); local
443 ASN1Primitive o2 = obj2.toASN1Primitive();
  /external/python/cpython2/Lib/plat-mac/
aetypes.py 167 def __init__(self, obj1, relo, obj2):
170 self.obj2 = obj2
173 return "Comparison(%r, %r, %r)" % (self.obj1, self.relo, self.obj2)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
181 'obj2': self.obj2},
190 def __init__(self, obj1, obj2):
191 Comparison.__init__(obj1, self.relo, obj2)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetypes.py 167 def __init__(self, obj1, relo, obj2):
170 self.obj2 = obj2
173 return "Comparison(%r, %r, %r)" % (self.obj1, self.relo, self.obj2)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
181 'obj2': self.obj2},
190 def __init__(self, obj1, obj2):
191 Comparison.__init__(obj1, self.relo, obj2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 167 def __init__(self, obj1, relo, obj2):
170 self.obj2 = obj2
173 return "Comparison(%r, %r, %r)" % (self.obj1, self.relo, self.obj2)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
181 'obj2': self.obj2},
190 def __init__(self, obj1, obj2):
191 Comparison.__init__(obj1, self.relo, obj2)
  /frameworks/data-binding/extensions/library/src/androidTest/java/android/databinding/
ObservableParcelTest.java 45 ObservableBoolean obj2 = new ObservableBoolean(true); local
46 ObservableBoolean read2 = parcelAndUnparcel(obj2, ObservableBoolean.class);
105 ObservableBoolean obj2 = new ObservableBoolean(true); local
106 ObservableBoolean read2 = serializeAndDeserialize(obj2, ObservableBoolean.class);
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 164 MyIter obj2; local
165 S2.foreach<MyIter>(obj2);
167 ASSERT_EQ(3, obj2.counter);
HashingTest.cpp 100 NonPOD obj1(1, 2), obj2(3, 4), obj3(5, 6);
101 EXPECT_EQ(hash_combine(obj1, hash_combine(obj2, obj3)),
102 hash_value(std::make_pair(obj1, std::make_pair(obj2, obj3))));
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ImmutableSetTest.cpp 164 MyIter obj2; local
165 S2.foreach<MyIter>(obj2);
167 ASSERT_EQ(3, obj2.counter);
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_unittest.cpp 110 bool Equal(const CPDF_Object* obj1, const CPDF_Object* obj2) {
111 if (obj1 == obj2)
113 if (!obj1 || !obj2 || obj1->GetType() != obj2->GetType())
117 return obj1->GetInteger() == obj2->GetInteger();
119 return obj1->AsNumber()->IsInteger() == obj2->AsNumber()->IsInteger() &&
120 obj1->GetInteger() == obj2->GetInteger();
123 return obj1->GetString() == obj2->GetString();
126 const CPDF_Array* array2 = obj2->AsArray();
137 const CPDF_Dictionary* dict2 = obj2->AsDictionary()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 300 * @param obj2 A reference to the second object, or null.
303 * because obj2.equals(obj1) returns true.
305 private static boolean equalsMayBeNull(Object obj1, Object obj2)
307 return (obj2 == obj1)
308 || ((null != obj1) && (null != obj2) && obj2.equals(obj1));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 206 Object obj2 = "b"; local
207 assertEquals(-1, coll.compare(obj1, obj2));
  /external/libmojo/mojo/public/cpp/bindings/tests/
union_unittest.cc 765 ObjectUnionPtr obj2; local
766 mojo::internal::Deserialize<ObjectUnionPtr>(data, &obj2, nullptr);
767 EXPECT_EQ(8, obj2->get_f_dummy()->f_int8);
864 ObjectUnionPtr obj2; local
865 mojo::internal::Deserialize<ObjectUnionPtr>(data, &obj2, nullptr);
867 EXPECT_EQ(8, obj2->get_f_array_int8()[0]);
868 EXPECT_EQ(9, obj2->get_f_array_int8()[1]);
923 ObjectUnionPtr obj2; local
924 mojo::internal::Deserialize<ObjectUnionPtr>(data, &obj2, &context);
926 EXPECT_EQ(1, obj2->get_f_map_int8()["one"])
981 ObjectUnionPtr obj2; local
    [all...]
  /external/skia/tests/
SerializationTest.cpp 175 T obj2; local
176 SerializationUtils<T>::Read(buffer2, &obj2);
213 T* obj2 = nullptr; local
214 SerializationUtils<T>::Read(buffer2, &obj2);
220 REPORTER_ASSERT(reporter, obj2);
224 REPORTER_ASSERT(reporter, nullptr == obj2);
227 return obj2; // Return object to perform further validity tests on it
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
CallbackTest.java 219 final CallbackBindingObject obj2 = mock(CallbackBindingObject.class); local
220 mBinding.setObj2(obj2);
235 verify(obj2).onScrolled();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 240 #define setobj(L,obj1,obj2) \
241 { const TValue *io2=(obj2); TValue *io1=(obj1); \
353 #define setobj(L,obj1,obj2) \
354 { const TValue *o2_=(obj2); TValue *o1_=(obj1); \
  /external/skia/third_party/lua/src/
lobject.h 240 #define setobj(L,obj1,obj2) \
241 { const TValue *io2=(obj2); TValue *io1=(obj1); \
353 #define setobj(L,obj1,obj2) \
354 { const TValue *o2_=(obj2); TValue *o1_=(obj1); \
  /external/syslinux/com32/lua/src/
lobject.h 240 #define setobj(L,obj1,obj2) \
241 { const TValue *io2=(obj2); TValue *io1=(obj1); \
353 #define setobj(L,obj1,obj2) \
354 { const TValue *o2_=(obj2); TValue *o1_=(obj1); \
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
InstrumenterTest.java 165 Object obj2 = new ObjectInputStream(new ByteArrayInputStream( local
167 assertEquals("Hello42", obj2.toString());
  /art/test/412-new-array/src/
Main.java 108 Object obj2 = new Object(); local
109 Object[] i = {obj1, obj2};
112 assertEquals(obj2, i[1]);
  /external/v8/src/heap/
object-stats.cc 344 static bool SameLiveness(HeapObject* obj1, HeapObject* obj2) {
345 return obj1 == nullptr || obj2 == nullptr ||
346 ObjectMarking::Color(obj1) == ObjectMarking::Color(obj2);

Completed in 1370 milliseconds

1 23 4 5 6 7 8 9