HomeSort by relevance Sort by last modified time
    Searched refs:it2 (Results 26 - 50 of 140) sorted by null

12 3 4 5 6

  /external/chromium_org/base/metrics/
sample_vector_unittest.cc 218 scoped_ptr<SampleCountIterator> it2 = samples.Iterator(); local
221 for (i = 1; !it2->Done(); i++, it2->Next()) {
222 it2->Get(&min, &max, &count);
228 EXPECT_TRUE(it2->GetBucketIndex(&index));
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.cc 146 AppStateMap::const_iterator it2 = state_map2.begin(); local
148 if (it1->first != it2->first) {
156 } else if (!it2->second.IsValid()) {
160 } else if (!it1->second.Equals(it2->second)) {
166 ++it2;
sync_extension_helper.cc 253 ExtensionStateMap::const_iterator it2 = state_map2.begin(); local
255 if (it1->first != it2->first) {
259 } else if (!it1->second.Equals(it2->second)) {
265 ++it2;
372 ExtensionNameMap::const_iterator it2 = it->second.find(name); local
373 if (it2 != it->second.end()) {
374 return it2->second;
  /external/chromium_org/chrome/common/variations/
experiment_labels_unittest.cc 97 std::set<std::string>::iterator it2 = parsed_ids.find(*it); local
98 EXPECT_TRUE(parsed_ids.end() != it2);
99 parsed_ids.erase(it2);
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashSetTest.cpp 123 OwnPtrSet::iterator it2 = set.find(ptr2); local
124 EXPECT_NE(set.end(), it2);
125 EXPECT_EQ(ptr2, (*it2));
ListHashSetTest.cpp 615 OwnPtrSet::iterator it2 = set.find(ptr2); local
616 EXPECT_NE(set.end(), it2);
617 EXPECT_EQ(ptr2, (*it2));
672 typename Set::iterator it2 = set2.begin(); local
673 for (int i = 0; i < num; ++i, ++it1, ++it2) {
675 EXPECT_EQ(*it2, num - i);
679 EXPECT_EQ(it2, set2.end());
686 it2 = set1.begin();
687 for (int i = 0; i < num; ++i, ++it1, ++it2) {
689 EXPECT_EQ(*it2, num - i)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
gscan.cpp 249 for (nl_iterator it2(sc_data); it2.has_next(); it2.next()) {
250 int type = it2.get_type();
252 strncpy(result->ssid, (char *) it2.get_data(), it2.get_len());
253 result->ssid[it2.get_len()] = 0;
255 memcpy(result->bssid, (byte *) it2.get_data(), sizeof(mac_addr));
257 result->ts = it2.get_u64();
259 result->ts = it2.get_u16()
    [all...]
  /external/oprofile/libpp/
sample_container.cpp 94 iterator it2 = samples_by_loc.upper_bound(&upper); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
  /external/chromium_org/extensions/common/
event_filter.cc 49 for (EventMatcherMap::iterator it2 = it->second.begin();
50 it2 != it->second.end(); it2++) {
51 it2->second->DontRemoveConditionSetsInDestructor();
  /external/chromium_org/media/formats/mp2t/
mp2t_stream_parser_unittest.cc 32 StreamParser::BufferQueue::const_iterator it2 = ++it1; local
33 for ( ; it2 != buffers.end(); ++it1, ++it2) {
34 if ((*it2)->GetDecodeTimestamp() < (*it1)->GetDecodeTimestamp())
  /external/smali/util/src/main/java/org/jf/util/
CollectionUtils.java 77 @Nonnull Iterable<? extends T> it2) {
78 Iterator<? extends T> elements2 = it2.iterator();
96 @Nonnull Iterable<? extends T> it2) {
97 Iterator<? extends T> elements2 = it2.iterator();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory1Test.java 312 Iterator it2 = certFs[1].getCertPathEncodings(); local
313 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
315 it2 = certFs[1].getCertPathEncodings();
318 while (it2.hasNext()) {
319 if (s1.equals(it2.next())) {
328 it2 = certFs[2].getCertPathEncodings();
329 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
331 it2 = certFs[2].getCertPathEncodings();
334 while (it2.hasNext()) {
335 if (s1.equals(it2.next()))
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java 300 Iterator<String> it2 = certFs[1].getCertPathEncodings(); local
301 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
303 it2 = certFs[1].getCertPathEncodings();
306 while (it2.hasNext()) {
307 if (s1.equals(it2.next())) {
316 it2 = certFs[2].getCertPathEncodings();
317 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
319 it2 = certFs[2].getCertPathEncodings();
322 while (it2.hasNext()) {
323 if (s1.equals(it2.next()))
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-param-test_test.cc 194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
    [all...]
  /external/deqp/modules/glshared/
glsFboCompletenessTests.cpp 818 for (Formats::const_iterator it2 = rboFmts.begin(); it2 != rboFmts.end(); it2++)
820 const RenderableParams params = { it->attPoint, GL_RENDERBUFFER, *it2 };
825 for (Formats::const_iterator it2 = texFmts.begin(); it2 != texFmts.end(); it2++)
827 const RenderableParams params = { it->attPoint, GL_TEXTURE, *it2 };
  /external/gtest/test/
gtest-param-test_test.cc 194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 135 ParamGenerator<int>::iterator it2 = it; local
136 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
141 EXPECT_FALSE(*it == *it2);
142 it2 = it;
143 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
158 it2 = it;
160 ++it2;
161 EXPECT_TRUE(*it == *it2);
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 50 BreakIterator it2 = BreakIterator.getWordInstance(new Locale("bad locale")); local
51 assertTrue("Incorrect BreakIterator", it2 != BreakIterator.getWordInstance());
  /ndk/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
    [all...]
  /art/runtime/base/
hash_set_test.cc 191 auto it2 = std_set.find(s); local
192 ASSERT_EQ(it1 == hash_set.end(), it2 == std_set.end());
194 ASSERT_EQ(*it1, *it2);
196 std_set.erase(it2);
  /external/ceres-solver/internal/ceres/
graph_algorithms.h 296 for (typename HashSet<Vertex>::const_iterator it2 = neighbors.begin();
297 it2 != neighbors.end();
298 ++it2) {
299 const Vertex vertex2 = *it2;
  /external/chromium_org/base/i18n/
streaming_utf8_validator_unittest.cc 281 for (Iterator2 it2 = begin2; it2 != end2; ++it2) {
282 base::StringPiece c2 = *it2;
  /external/chromium_org/net/http/
http_auth_cache.cc 277 for (Entry::PathList::const_reverse_iterator it2 = ++it->paths_.rbegin();
278 it2 != it->paths_.rend(); ++it2)
279 entry->AddPath(*it2);
  /external/chromium_org/net/spdy/
buffered_spdy_framer_unittest.cc 190 SpdyHeaderBlock::const_iterator it2 = actual->find(it->first); local
191 if (it2 == actual->end()) {
195 if (it->second.compare(it2->second) != 0) {
198 << "'. The actual value received was '" << it2->second
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
fakesession.h 285 for (std::vector<std::string>::const_iterator it2 =
287 it2 != dest_->srtp_ciphers_.end(); ++it2) {
288 if (*it1 == *it2) {
290 dest_->chosen_srtp_cipher_ = *it2;

Completed in 1001 milliseconds

12 3 4 5 6