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

  /external/chromium/base/
scoped_comptr_win_unittest.cc 53 ScopedComPtr<IMalloc> copy1(mem_alloc);
54 EXPECT_TRUE(copy1.IsSameObject(mem_alloc));
55 EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid but different
56 EXPECT_FALSE(copy1.IsSameObject(unk)); // unk is NULL
58 IMalloc* naked_copy = copy1.Detach();
59 copy1 = naked_copy; // Test the =(T*) operator.
62 copy1.Release();
63 EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid, copy1 is not
73 EXPECT_TRUE(unk.IsSameObject(copy1)); // both are NUL
    [all...]
  /external/dbus/dbus/
dbus-list.c 983 DBusList *copy1; local
1304 copy1 = _DBUS_INT_TO_POINTER (0x342234);
1307 _dbus_list_copy (&list1, &copy1);
1309 verify_list (&copy1);
1310 _dbus_assert (lists_equal (&list1, &copy1));
1320 _dbus_list_clear (&copy1);
1324 copy1 = _DBUS_INT_TO_POINTER (0x342234);
1327 _dbus_list_copy (&list1, &copy1);
1329 verify_list (&copy1);
1330 _dbus_assert (lists_equal (&list1, &copy1));
    [all...]

Completed in 46 milliseconds