Searched refs:it2 (Results 1 - 25 of 85) sorted by relevance

1234

/external/chromium_org/extensions/common/permissions/
H A Dbase_set_operators.h125 const_iterator it2 = rhs.begin(); local
129 while (it1 != end1 && it2 != end2) {
130 if (it1->id() > it2->id()) {
132 } else if (it1->id() < it2->id()) {
135 if (!it1->Contains(*it2))
138 ++it2;
142 return it2 == end2;
150 const_iterator it2 = set2.begin(); local
154 while (it1 != end1 && it2 != end2) {
155 if (it1->id() < it2
180 const_iterator it2 = set2.begin(); local
204 const_iterator it2 = set2.begin(); local
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dcallback_tracker.cc29 for (CallbackSet::iterator it2 = it1->second.begin();
30 it2 != it1->second.end(); ++it2) {
31 (*it2)->Abort();
41 for (CallbackSet::iterator it2 = it1->second.begin();
42 it2 != it1->second.end(); ++it2) {
44 (*it2)->PostAbort();
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_sessions_sync_test.cc79 for (std::vector<SessionTab*>::const_iterator it2 =
80 it->second->tabs.begin(); it2 != it->second->tabs.end(); ++it2) {
82 it3 = (*it2)->navigations.begin();
83 it3 != (*it2)->navigations.end(); ++it3) {
113 for (std::vector<SessionTab*>::const_iterator it2 =
114 it->second->tabs.begin(); it2 != it->second->tabs.end(); ++it2) {
116 it3 = (*it2)->navigations.begin();
117 it3 != (*it2)
[all...]
H A Dsync_app_helper.cc120 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;
/external/chromium_org/extensions/browser/
H A Devent_listener_map.cc108 for (ListenerList::iterator it2 = it->second.begin();
109 it2 != it->second.end(); it2++) {
110 if ((*it2)->extension_id == extension_id)
120 for (ListenerList::iterator it2 = it->second.begin();
121 it2 != it->second.end(); it2++) {
122 if ((*it2)->Equals(listener)) {
133 for (ListenerList::iterator it2 = it->second.begin();
134 it2 !
[all...]
/external/openfst/src/include/fst/
H A Dinterval-set.h205 typename vector<Interval>::const_iterator it2 = iintervals->begin(); local
210 while (it1 != intervals_.end() && it2 != iintervals->end()) {
211 if (it1->end <= it2->begin) {
213 } else if (it2->end <= it1->begin) {
214 ++it2;
217 interval.begin = max(it1->begin, it2->begin);
218 interval.end = min(it1->end, it2->end);
221 if (it1->end < it2->end)
224 ++it2;
277 typename vector<Interval>::const_iterator it2 local
297 typename vector<Interval>::const_iterator it2 = intervals->begin(); local
346 typename vector<Interval>::const_iterator it2 = intervals->begin(); local
[all...]
/external/chromium_org/sync/notifier/
H A Dsingle_object_invalidation_set_unittest.cc44 SingleObjectInvalidationSet::const_iterator it2 = l2.begin(); local
46 EXPECT_THAT(inv0, Eq(*it2));
48 it2++;
50 EXPECT_THAT(inv1, Eq(*it2));
52 it2++;
54 EXPECT_THAT(inv2, Eq(*it2));
56 it2++;
58 EXPECT_TRUE(it2 == l2.end());
H A Dobject_id_invalidation_map.cc70 for (SingleObjectInvalidationSet::const_iterator it2 = it1->second.begin();
71 it2 != it1->second.end(); ++it2) {
72 it2->Acknowledge();
86 for (SingleObjectInvalidationSet::const_iterator it2 =
87 it1->second.begin(); it2 != it1->second.end(); ++it2) {
88 value->Append(it2->ToValue().release());
/external/oprofile/libpp/
H A Ddiff_container.cpp129 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...]
H A Dsample_container.cpp94 iterator it2 = samples_by_loc.upper_bound(&upper); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
/external/chromium_org/ui/views/corewm/
H A Dtransient_window_stacking_client.cc44 Window::Windows::const_reverse_iterator it2 = ancestors2.rbegin(); local
45 for (; it1 != ancestors1.rend() && it2 != ancestors2.rend(); ++it1, ++it2) {
46 if (*it1 != *it2) {
48 *window2 = *it2;
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dextension_token_key_unittest.cc66 ExtensionTokenKeyIterator it2 = it1;
67 for (++it2; it2 != keys.end(); ++it2) {
68 EXPECT_LT(*it1, *it2);
69 EXPECT_FALSE(it2 < it1);
/external/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp131 for (succ_iterator_ty it2 = succ_begin(*it),
132 ie2 = succ_end(*it); it2 != ie2; ++it2)
133 assert(S.count(*it2) && "Attempt to run invalid changeset!");
228 for (succ_closure_iterator_ty it2 = succ_closure_begin(*it),
229 ie2 = succ_closure_end(*it); it2 != ie2; ++it2)
230 PredClosure[*it2].insert(*it);
243 for (succ_iterator_ty it2 = succ_begin(*it),
244 ie2 = succ_end(*it); it2 !
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObjectList.java88 Iterator<GenericObject> it2 = mergeList.listIterator();
91 while (it2.hasNext()) {
92 Object innerObj = it2.next();
/external/smack/src/org/xbill/DNS/tests/
H A Dxfrin.java96 Iterator it2 = delta.deletes.iterator();
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/chromium_org/content/browser/indexed_db/
H A Dindexed_db_transaction_coordinator.cc128 typename std::set<T>::const_iterator it2 = set2.begin(); local
129 while (it1 != set1.end() && it2 != set2.end()) {
130 if (*it1 < *it2)
132 else if (*it2 < *it1)
133 ++it2;
H A Dindexed_db_factory.cc223 IndexedDBBackingStoreMap::iterator it2 = backing_store_map_.find(origin_url); local
224 if (it2 != backing_store_map_.end()) {
225 it2->second->close_timer()->Stop();
226 return it2->second;
/external/chromium_org/chrome/browser/ui/webui/
H A Dflash_ui.cc334 for (std::map<std::string, std::string>::const_iterator it2 =
336 it2 != it->second.values.end();
337 ++it2) {
338 if (!it2->second.empty()) {
339 if (it2->first == "szDescription") {
340 AddPair(list, ASCIIToUTF16("Graphics card"), it2->second);
341 } else if (it2->first == "szDriverNodeStrongName") {
342 AddPair(list, ASCIIToUTF16("Driver name (strong)"), it2->second);
343 } else if (it2->first == "szDriverName") {
344 AddPair(list, ASCIIToUTF16("Driver display name"), it2
[all...]
/external/chromium_org/media/mp2t/
H A Dmp2t_stream_parser_unittest.cc98 StreamParser::BufferQueue::const_iterator it2 = ++it1; local
99 for ( ; it2 != video_buffers.end(); ++it1, ++it2) {
100 if ((*it2)->GetDecodeTimestamp() < (*it1)->GetDecodeTimestamp())
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DLinkedHashMapTest.java263 Iterator it2 = map2.keySet().iterator();
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();
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
[all...]
/external/chromium_org/base/metrics/
H A Dsample_vector_unittest.cc218 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/common/metrics/variations/
H A Dexperiment_labels_unittest.cc97 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/extensions/common/
H A Devent_filter.cc47 for (EventMatcherMap::iterator it2 = it->second.begin();
48 it2 != it->second.end(); it2++) {
49 it2->second->DontRemoveConditionSetsInDestructor();
/external/chromium_org/net/http/
H A Dhttp_auth_cache.cc236 for (Entry::PathList::const_reverse_iterator it2 = ++it->paths_.rbegin();
237 it2 != it->paths_.rend(); ++it2)
238 entry->AddPath(*it2);
/external/chromium_org/net/spdy/
H A Dbuffered_spdy_framer_unittest.cc172 SpdyHeaderBlock::const_iterator it2 = actual->find(it->first); local
173 if (it2 == actual->end()) {
177 if (it->second.compare(it2->second) != 0) {
180 << "'. The actual value received was '" << it2->second

Completed in 1469 milliseconds

1234