HomeSort by relevance Sort by last modified time
    Searched defs:it2 (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /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/smack/src/org/xbill/DNS/tests/
xfrin.java 96 Iterator it2 = delta.deletes.iterator(); local
97 while (it2.hasNext())
98 System.out.println(it2.next());
100 it2 = delta.adds.iterator();
101 while (it2.hasNext())
102 System.out.println(it2.next());
  /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);
diff_container.cpp 129 symbol_container::symbols_t::iterator it2 = pc2.begin_symbol(); local
132 while (it1 != end1 && it2 != end2) {
133 if (rough_less(*it1, *it2)) {
136 } else if (rough_less(*it2, *it1)) {
137 symbol_new(syms, *it2, choice);
138 ++it2;
140 symbol_diff(syms, *it1, total1, *it2, total2, choice);
142 ++it2;
149 for (; it2 != end2; ++it2)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObjectList.java 88 Iterator<GenericObject> it2 = mergeList.listIterator(); local
91 while (it2.hasNext()) {
92 Object innerObj = it2.next();
  /external/chromium_org/chrome/browser/sync/glue/
model_association_manager_unittest.cc 47 std::map<syncer::ModelType, syncer::SyncError>::const_iterator it1, it2; local
49 it2 = expected_result.failed_data_types.begin();
51 ++it1, ++it2) {
52 EXPECT_EQ((*it1).first, (*it2).first);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_factory.cc 114 IndexedDBBackingStoreMap::iterator it2 = local
116 if (it2 != backing_store_map_.end() && it2->second.get())
117 return it2->second.get();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMap2Test.java 290 Iterator it2 = map2.keySet().iterator(); local
291 Integer remove3 = (Integer) it2.next();
297 it2.hasNext();
298 it2.remove();
299 assertTrue("Wrong result 2", it2.next().equals(next));
HashMapTest.java 429 Iterator it2 = map2.keySet().iterator(); local
430 Integer remove3 = (Integer) it2.next();
436 it2.hasNext();
437 it2.remove();
438 assertTrue("Wrong result 2", it2.next().equals(next));
HashtableTest.java 445 Iterator it2 = map2.keySet().iterator(); local
446 Integer remove3 = (Integer) it2.next();
452 it2.hasNext();
453 it2.remove();
454 assertTrue("Wrong result 2", it2.next().equals(next));
LinkedHashMapTest.java 263 Iterator it2 = map2.keySet().iterator(); local
264 Integer remove3 = (Integer) it2.next();
270 it2.hasNext();
271 it2.remove();
272 assertTrue("Wrong result 2", it2.next().equals(next));
495 Iterator it2 = s2.iterator(); local
498 for (i = 1; i < sz && it2.hasNext(); i += 2) {
499 Map.Entry m = (Map.Entry) it2.next();
503 for (i = 0; i < sz && it2.hasNext(); i += 2) {
504 Map.Entry m = (Map.Entry) it2.next()
554 Iterator it2 = s2.iterator(); local
610 Iterator it2 = s2.iterator(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
IdentityHashMapTest.java 279 Iterator it2 = map2.keySet().iterator(); local
280 Integer remove3 = (Integer) it2.next();
286 it2.hasNext();
287 it2.remove();
288 assertTrue("Wrong result 2", it2.next().equals(next));
HashMapTest.java 326 Iterator it2 = map2.keySet().iterator(); local
327 Integer remove3 = (Integer) it2.next();
333 it2.hasNext();
334 it2.remove();
335 assertTrue("Wrong result 2", it2.next().equals(next));
HashtableTest.java 499 Iterator it2 = map2.keySet().iterator(); local
500 Integer remove3 = (Integer) it2.next();
506 it2.hasNext();
507 it2.remove();
508 assertTrue("Wrong result 2", it2.next().equals(next));
LinkedHashMapTest.java 284 Iterator it2 = map2.keySet().iterator(); local
285 Integer remove3 = (Integer) it2.next();
291 it2.hasNext();
292 it2.remove();
293 assertTrue("Wrong result 2", it2.next().equals(next));
558 Iterator it2 = s2.iterator(); local
561 for (i = 1; i < sz && it2.hasNext(); i += 2) {
562 Map.Entry m = (Map.Entry) it2.next();
566 for (i = 0; i < sz && it2.hasNext(); i += 2) {
567 Map.Entry m = (Map.Entry) it2.next()
617 Iterator it2 = s2.iterator(); local
673 Iterator it2 = s2.iterator(); local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.cc 120 AppStateMap::const_iterator it2 = state_map2.begin(); local
122 if (it1->first != it2->first) {
130 } else if (!it2->second.IsValid()) {
134 } else if (!it1->second.Equals(it2->second)) {
140 ++it2;
sync_extension_helper.cc 237 ExtensionStateMap::const_iterator it2 = state_map2.begin(); local
239 if (it1->first != it2->first) {
243 } else if (!it1->second.Equals(it2->second)) {
249 ++it2;
355 ExtensionNameMap::const_iterator it2 = it->second.find(name); local
356 if (it2 != it->second.end()) {
357 return it2->second;
  /external/chromium_org/chrome/common/extensions/permissions/
api_permission_set.cc 174 APIPermissionSet::const_iterator it2 = rhs.begin(); local
178 while (it1 != end1 && it2 != end2) {
179 if (it1->id() > it2->id()) {
181 } else if (it1->id() < it2->id()) {
184 if (!it1->Contains(*it2))
187 ++it2;
191 return it2 == end2;
202 APIPermissionSet::const_iterator it2 = set2.begin(); local
206 while (it1 != end1 && it2 != end2) {
207 if (it1->id() < it2->id())
235 APIPermissionSet::const_iterator it2 = set2.begin(); local
262 APIPermissionSet::const_iterator it2 = set2.begin(); local
    [all...]
  /external/chromium_org/net/spdy/
buffered_spdy_framer_unittest.cc 166 SpdyHeaderBlock::const_iterator it2 = actual->find(it->first); local
167 if (it2 == actual->end()) {
171 if (it->second.compare(it2->second) != 0) {
174 << "'. The actual value received was '" << it2->second
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 401 final Iterator<String> it2 = cf.generateCertPath(certs).getEncodings(); local
403 assertEquals(p.getName(), it1.hasNext(), it2.hasNext());
409 assertEquals(p.getName(), encoding, it2.next());
418 it2.remove();
  /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());
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
StringCharacterIteratorTest.java 136 StringCharacterIterator it2 = new StringCharacterIterator("xxstinx", 2, local
138 assertTrue("Range is equal", !it1.equals(it2));
461 StringCharacterIterator it2 = new StringCharacterIterator("xxstinx", 2, local
463 assertTrue("Hash is equal", it1.hashCode() != it2.hashCode());
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 526 BufferLayoutType::const_iterator it2 = it1; local
527 for (; it2 != buffer_layout.end(); ++it2) {
528 const int block2 = it2->first - num_eliminate_blocks_;
535 const int block2_size = bs->cols[it2->first].size;
540 buffer + it2->second, e_block_size, block2_size,
  /external/chromium_org/chrome/common/metrics/variations/
variations_util_unittest.cc 228 std::set<std::string>::iterator it2 = parsed_ids.find(*it); local
229 EXPECT_TRUE(parsed_ids.end() != it2);
230 parsed_ids.erase(it2);
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 66 EntrySet::const_iterator it2 = entry_set_.find(hash2); local
67 DCHECK(it2 != entry_set_.end());
68 return it1->second.GetLastUsedTime() < it2->second.GetLastUsedTime();

Completed in 2869 milliseconds

1 2 3 4