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

12 3 4 5 6 7 8 9

  /art/test/537-checker-arraycopy/src/
Main.java 94 public static int arraycopy3(Object[] obj1, Object[] obj2, int input1, int input3, int input4) {
95 System.arraycopy(obj1, input1, obj2, input3, input4);
97 System.out.println(obj2);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
ListOrganizerTest.java 56 Object obj2 = new Object(); local
61 list.add(obj2);
71 assertEquals(obj2, list.getLast());
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSet.java 465 * @param obj2 Object to compare this nodeset to
472 public boolean compare(XObject obj2, Comparator comparator)
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 object to compare this nodeset t
    [all...]
XNumber.java 387 * @param obj2 Object to compare this to
393 public boolean equals(XObject obj2)
399 int t = obj2.getType();
403 return obj2.equals(this);
405 return obj2.bool() == bool();
407 return m_val == obj2.num();
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
PersistableBundlable.java 76 private static boolean isPersistableBundleEquals(PersistableBundle obj1, PersistableBundle obj2) {
77 if (obj1 == obj2) {
80 if (obj1 == null || obj2 == null || obj1.size() != obj2.size()) {
86 Object val2 = obj2.get(key);
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
PairTest.java 54 Object obj2 = new Object(); local
55 p1 = Pair.create(obj1, obj2);
56 p2 = Pair.create(obj1, obj2);
  /external/boringssl/src/crypto/x509v3/
v3_pmaps.c 118 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/
YamlStream.java 63 Object obj2 = piterator.next(); local
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/
psOperators.py 238 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.value[obj1.value]
    [all...]
  /external/junit-params/src/test/java/junitparams/
ObjectStringificationTest.java 32 ClassWithToString obj2 = new ClassWithToString("two"); local
34 assertThat(stringify(new Object[]{obj1, obj2}, 0)).isEqualTo("[0] one, two");
  /art/test/088-monitor-verification/src/
Main.java 57 Object obj2 = new Object(); local
59 TwoPath.twoPath(obj1, obj2, 0);
62 m.triplet(obj1, obj2, 0);
196 public void triplet(Object obj1, Object obj2, int x) {
203 localObj = obj2;
  /external/libchrome/base/
id_map_unittest.cc 31 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/
p15-0x.cpp 17 bar obj2(obj);
  /external/pdfium/core/fxcrt/
cfx_observable_unittest.cpp 140 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);
  /art/runtime/
indirect_reference_table_test.cc 70 Handle<mirror::Object> obj2 = hs.NewHandle(c->AllocObject(soa.Self())); local
71 ASSERT_TRUE(obj2 != nullptr);
89 IndirectRef iref2 = irt.Add(cookie, obj2.Get());
95 EXPECT_OBJ_PTR_EQ(obj2.Get(), irt.Get(iref2));
115 iref2 = irt.Add(cookie, obj2.Get());
135 iref2 = irt.Add(cookie, obj2.Get());
164 iref2 = irt.Add(cookie, obj2.Get());
288 Handle<mirror::Object> obj2 = hs.NewHandle(c->AllocObject(soa.Self())); local
289 ASSERT_TRUE(obj2 != nullptr);
311 IndirectRef iref2 = irt.Add(cookie0, obj2.Get())
    [all...]
reference_table.cc 132 // we are guaranteed that the addresses of obj1, obj2, obj1->GetClass, obj2->GetClass wont
135 ObjPtr<mirror::Object> obj2 = root2.Read<kWithoutReadBarrier>(); local
137 DCHECK(obj2 != nullptr);
140 DCHECK(!runtime->IsClearedJniWeakGlobal(obj2));
142 if (obj1->GetClass() != obj2->GetClass()) {
143 return obj1->GetClass() < obj2->GetClass();
147 const size_t size2 = obj2->SizeOf();
152 return obj1.Ptr() < obj2.Ptr();
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileSystemProvider.java 313 public boolean isSameFile(Path obj1, Path obj2) throws IOException {
315 if (file1.equals(obj2))
317 if (obj2 == null)
319 if (!(obj2 instanceof UnixPath))
321 UnixPath file2 = (UnixPath)obj2;
437 public void createSymbolicLink(Path obj1, Path obj2, FileAttribute<?>... attrs)
441 UnixPath target = UnixPath.toUnixPath(obj2);
466 public void createLink(Path obj1, Path obj2) throws IOException {
468 UnixPath existing = UnixPath.toUnixPath(obj2);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
swapchain.h 89 #define LOG_ERROR_INVALID_COUNT(objType, type, obj, obj2, val, val2) \
94 __FUNCTION__, (obj2), (obj), (val), (val2), (obj2)) \
96 #define LOG_ERROR_ZERO_PRIOR_COUNT(objType, type, obj, obj2) \
100 __FUNCTION__, (obj), (obj2)) \
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 1020 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...]
  /art/runtime/gc/accounting/
mod_union_table_test.cc 200 auto* obj2 = AllocObjectArray(self, space, CardTable::kCardSize); local
201 ASSERT_TRUE(obj2 != nullptr);
207 obj1->Set(0, obj2);
208 obj2->Set(0, obj3);
217 obj2->Set(3, other_space_ref2);
227 // obj1, obj2 cards should still be in mod union table since they have references to other
230 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj2)));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')
  /external/python/cpython2/Lib/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep247.py 27 obj2 = module.new(key, 'string')
35 obj2 = module.new('string')

Completed in 718 milliseconds

12 3 4 5 6 7 8 9