HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 101 - 125 of 2313) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/google-breakpad/src/testing/gtest/src/
gtest-typed-test.cc 71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
  /external/gtest/src/
gtest-typed-test.cc 71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 36 private Iterator<? extends ByteSource> it; field in class:MultiInputStream
42 * @param it an iterator of I/O suppliers that will provide each substream
45 Iterator<? extends ByteSource> it) throws IOException {
46 this.it = checkNotNull(it);
65 if (it.hasNext()) {
66 in = it.next().openStream();
MultiReader.java 34 private final Iterator<? extends CharSource> it; field in class:MultiReader
38 this.it = readers;
47 if (it.hasNext()) {
48 current = it.next().openStream();
  /external/libbrillo/brillo/
map_utils.h 63 typename T::const_iterator it = map.find(key); local
64 if (it == map.end())
66 return it->second;
  /external/libchrome/base/metrics/
histogram_snapshot_manager.cc 30 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin();
31 histograms.end() != it;
32 ++it) {
33 (*it)->SetFlags(flag_to_set);
34 if (((*it)->flags() & required_flags) == required_flags)
35 PrepareDelta(**it);
50 // The checksum should have caught this, so crash separately if it didn't.
77 auto it = logged_samples_.find(histogram_hash); local
78 if (it == logged_samples_.end()) {
84 HistogramSamples* already_logged = it->second
    [all...]
  /external/libchrome/base/
scoped_observer.h 18 // attached itself to as an observer. When ScopedObserver is destroyed it
19 // removes the object as an observer from all sources it has been added to.
37 auto it = std::find(sources_.begin(), sources_.end(), source); local
38 DCHECK(it != sources_.end());
39 sources_.erase(it);
  /external/libchrome/base/trace_event/
heap_profiler_type_name_deduplicator.cc 43 auto it = type_ids_.begin(); local
48 it++;
51 for (; it != type_ids_.end(); it++) {
54 SStringPrintf(&buffer, ",\"%d\":", it->second);
56 // |EscapeJSONString| appends, it does not overwrite |buffer|.
58 EscapeJSONString(it->first, put_in_quotes, &buffer);
67 // The size here is only an estimate; it fails to take into account the size
  /external/libchrome/testing/
multiprocess_func_list.cc 45 MultiProcessTestMap::iterator it = func_lookup_table.find(test_name); local
46 if (it != func_lookup_table.end()) {
47 const ProcessFunctions& process_functions = it->second;
  /external/libcxx/test/std/containers/associative/map/
compare.pass.cpp 38 Iter it = m_empty.find(Key(0)); local
39 assert(it == m_empty.end());
40 it = m_contains.find(Key(0));
41 assert(it != m_contains.end());
  /external/libcxx/test/std/containers/associative/map/map.modifiers/
erase_iter.pass.cpp 254 I it = c.find(a); local
255 if (it != c.end())
256 c.erase(it);
insert_or_assign.pass.cpp 146 M::const_iterator it = m.find(2); local
149 r = m.insert_or_assign(it, 2, std::move(mv1));
156 r = m.insert_or_assign(it, 3, std::move(mv2));
169 M::const_iterator it = std::next(m.cbegin()); local
173 r = m.insert_or_assign(it, std::move(mvkey1), std::move(mv1));
182 r = m.insert_or_assign(it, std::move(mvkey2), std::move(mv2));
try.emplace.pass.cpp 142 M::const_iterator it = m.find(2); local
147 r = m.try_emplace(it, i, std::move(mv1));
154 r = m.try_emplace(it, 3, std::move(mv1));
168 M::const_iterator it = std::next(m.cbegin()); local
172 r = m.try_emplace(it, std::move(mvkey1), std::move(mv1));
179 r = m.try_emplace(it, std::move(mvkey2), std::move(mv1));
  /external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
erase_iter.pass.cpp 296 I it = c.find(a); local
297 if (it != c.end())
298 c.erase(it);
  /external/libcxx/test/std/containers/associative/multiset/
erase_iter.pass.cpp 198 I it = c.find(a); local
199 if (it != c.end())
200 c.erase(it);
  /external/libcxx/test/std/containers/associative/set/
erase_iter.pass.cpp 198 I it = c.find(a); local
199 if (it != c.end())
200 c.erase(it);
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
insert_size_value.pass.cpp 119 CI it = c.cbegin() + i; local
121 c.insert(it, 5, *jt);
124 it = c.cbegin();
125 for (int k = 0; k < i; ++k, ++it)
126 assert(*it == k);
127 for (int k = 0; k < 5; ++k, ++it)
128 assert(*it == j);
129 for (int k = i; k < 20; ++k, ++it)
130 assert(*it == k);
insert_value.pass.cpp 101 CI it = c.cbegin() + i; local
103 c.insert(it, *jt);
106 it = c.cbegin();
107 for (int k = 0; k < i; ++k, ++it)
108 assert(*it == k);
109 assert(*it == j);
110 ++it;
111 for (int k = i; k < 20; ++k, ++it)
112 assert(*it == k);
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove.pass.cpp 99 C::const_iterator it = c.begin(); local
100 for(int *ip = std::begin(t2); ip != std::end(t2); ++ip, ++it) {
101 assert ( it != c.end());
102 assert ( *ip == it->get());
104 assert ( it == c.end ());
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove.pass.cpp 53 std::list<S>::const_iterator it = c.begin(); local
54 for(int *ip = a2; ip < a2+5; ++ip, ++it) {
55 assert ( it != c.end());
56 assert ( *ip == it->get());
58 assert ( it == c.end ());
  /external/libcxx/test/std/containers/unord/unord.map/
compare.pass.cpp 42 Iter it = map.find(Key(0)); local
43 assert(it == map.end());
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
erase_const_iter.pass.cpp 88 I it = m.find(a); local
89 if (it != m.end())
90 m.erase(it);
  /external/libcxx/test/std/containers/unord/unord.multiset/
erase_const_iter.pass.cpp 88 I it = m.find(a); local
89 if (it != m.end())
90 m.erase(it);
  /external/libcxx/test/std/containers/unord/unord.set/
erase_const_iter.pass.cpp 85 I it = m.find(a); local
86 if (it != m.end())
87 m.erase(it);
  /external/libcxx/test/std/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 37 struct itimerval it; local
38 std::memset(&it, 0, sizeof(itimerval));
39 it.it_value.tv_sec = 0;
40 it.it_value.tv_usec = 250000;
43 ec = setitimer(ITIMER_REAL, &it, nullptr);

Completed in 1270 milliseconds

1 2 3 45 6 7 8 91011>>