OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MyIter
(Results
1 - 8
of
8
) sorted by null
/external/v8/tools/clang/rewrite_scoped_refptr/tests/
test12-expected.cc
17
class
MyIter
20
MyIter
() {}
21
MyIter
(const
MyIter
& other) : it_(other.it_) {}
22
explicit
MyIter
(MyMap::const_iterator it) : it_(it) {}
23
MyIter
& operator++() {
28
bool operator!=(const
MyIter
& other) { return it_ != other.it_; }
29
bool operator==(const
MyIter
& other) { return it_ == other.it_; }
39
MyIter
my_begin(map.begin());
40
MyIter
my_end(map.end())
[
all
...]
test12-original.cc
17
class
MyIter
20
MyIter
() {}
21
MyIter
(const
MyIter
& other) : it_(other.it_) {}
22
explicit
MyIter
(MyMap::const_iterator it) : it_(it) {}
23
MyIter
& operator++() {
28
bool operator!=(const
MyIter
& other) { return it_ != other.it_; }
29
bool operator==(const
MyIter
& other) { return it_ == other.it_; }
39
MyIter
my_begin(map.begin());
40
MyIter
my_end(map.end())
[
all
...]
/external/llvm/unittests/ADT/
ImmutableSetTest.cpp
21
struct
MyIter
{
25
MyIter
() : counter(0), ptr(buffer) {
147
S3.foreach<
MyIter
>();
159
MyIter
obj;
160
S3.foreach<
MyIter
>(obj);
164
MyIter
obj2;
165
S2.foreach<
MyIter
>(obj2);
169
MyIter
obj3;
170
S.foreach<
MyIter
>(obj);
/external/swiftshader/third_party/LLVM/unittests/ADT/
ImmutableSetTest.cpp
21
struct
MyIter
{
25
MyIter
() : counter(0), ptr(buffer) {
147
S3.foreach<
MyIter
>();
159
MyIter
obj;
160
S3.foreach<
MyIter
>(obj);
164
MyIter
obj2;
165
S2.foreach<
MyIter
>(obj2);
169
MyIter
obj3;
170
S.foreach<
MyIter
>(obj);
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
ImmutableSetTest.cpp
21
struct
MyIter
{
25
MyIter
() : counter(0), ptr(buffer) {
147
S3.foreach<
MyIter
>();
159
MyIter
obj;
160
S3.foreach<
MyIter
>(obj);
164
MyIter
obj2;
165
S2.foreach<
MyIter
>(obj2);
169
MyIter
obj3;
170
S.foreach<
MyIter
>(obj);
/external/python/cpython2/Lib/sqlite3/test/
dbapi.py
339
class
MyIter
:
350
self.cu.executemany("insert into test(income) values (?)",
MyIter
())
/external/python/cpython3/Lib/test/
test_yield_from.py
977
class
MyIter
:
984
ret = yield from
MyIter
()
/external/python/cpython3/Lib/sqlite3/test/
dbapi.py
359
class
MyIter
:
370
self.cu.executemany("insert into test(income) values (?)",
MyIter
())
[
all
...]
Completed in 487 milliseconds