OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copy1
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/base/win/
scoped_comptr_unittest.cc
57
ScopedComPtr<IMalloc>
copy1
(mem_alloc);
58
EXPECT_TRUE(
copy1
.IsSameObject(mem_alloc));
59
EXPECT_FALSE(
copy1
.IsSameObject(unk2)); // unk2 is valid but different
60
EXPECT_FALSE(
copy1
.IsSameObject(unk)); // unk is NULL
62
IMalloc* naked_copy =
copy1
.Detach();
63
copy1
= naked_copy; // Test the =(T*) operator.
66
copy1
.Release();
67
EXPECT_FALSE(
copy1
.IsSameObject(unk2)); // unk2 is valid,
copy1
is not
77
EXPECT_TRUE(unk.IsSameObject(
copy1
)); // both are NUL
[
all
...]
/external/chromium_org/sync/syncable/
syncable_id_unittest.cc
40
Id
copy1
= *i;
local
42
ASSERT_EQ(
copy1
, copy2) << "equality after copy failed";
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sort.py
260
copy1
= data[:]
263
copy1
.sort(cmp=lambda x,y: cmp(y[0],x[0]))
264
self.assertEqual(data,
copy1
)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sort.py
260
copy1
= data[:]
263
copy1
.sort(cmp=lambda x,y: cmp(y[0],x[0]))
264
self.assertEqual(data,
copy1
)
/external/clang/test/SemaCXX/
explicit.cpp
173
bool
copy1
= b;
local
Completed in 176 milliseconds