HomeSort by relevance Sort by last modified time
    Searched refs:copy1 (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/win/
scoped_comptr_unittest.cc 56 ScopedComPtr<IMalloc> copy1(mem_alloc);
57 EXPECT_TRUE(copy1.IsSameObject(mem_alloc));
58 EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid but different
59 EXPECT_FALSE(copy1.IsSameObject(unk)); // unk is NULL
61 IMalloc* naked_copy = copy1.Detach();
62 copy1 = naked_copy; // Test the =(T*) operator.
65 copy1.Release();
66 EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid, copy1 is not
76 EXPECT_TRUE(unk.IsSameObject(copy1)); // both are NUL
    [all...]
  /external/webkit/Source/WebCore/tests/
TreeManager_test.cpp 332 LayerAndroid* copy1 = new LayerAndroid(root); local
333 copy1->showLayer(0);
334 manager.updateWithTree(copy1, false);
364 static_cast<TestLayerAndroid*>(copy1->getChild(0)->getChild(0))->m_isDonePainting = true;
365 static_cast<TestLayerAndroid*>(copy1->getChild(0)->getChild(1))->m_isDonePainting = true;
367 XLOGC("painting should be %p, queued %p", copy1, copy2);
371 XLOGC("drawing should be %p, painting %p", copy1, copy2);
  /external/chromium/chrome/browser/sync/syncable/
syncable_id_unittest.cc 40 Id copy1 = *i; local
42 ASSERT_EQ(copy1, copy2) << "equality after copy failed";
  /external/dbus/dbus/
dbus-list.c 984 DBusList *copy1; local
1305 copy1 = _DBUS_INT_TO_POINTER (0x342234);
1308 _dbus_list_copy (&list1, &copy1);
1310 verify_list (&copy1);
1311 _dbus_assert (lists_equal (&list1, &copy1));
1321 _dbus_list_clear (&copy1);
1325 copy1 = _DBUS_INT_TO_POINTER (0x342234);
1328 _dbus_list_copy (&list1, &copy1);
1330 verify_list (&copy1);
1331 _dbus_assert (lists_equal (&list1, &copy1));
    [all...]

Completed in 324 milliseconds