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

1 2 3 4

  /external/openfst/src/include/fst/
interval-set.h 205 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 = intervals->begin() local
297 typename vector<Interval>::const_iterator it2 = intervals->begin(); local
346 typename vector<Interval>::const_iterator it2 = intervals->begin(); local
    [all...]
  /external/oprofile/libpp/
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...]
sample_container.cpp 94 iterator it2 = samples_by_loc.upper_bound(&upper); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 131 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 != ie2; ++it2)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMGlobalObject.cpp 62 for (JSDOMConstructorMap::iterator it2 = constructors().begin(); it2 != end2; ++it2)
63 markStack.append(&it2->second);
  /external/webkit/Source/WebCore/rendering/style/
KeyframeList.cpp 44 Vector<KeyframeValue>::const_iterator it2 = o.m_keyframes.begin();
46 if (it1->key() != it2->key())
49 const RenderStyle& style2 = *it2->style();
52 ++it2;
  /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/webkit/Source/WebKit/win/
WebNotificationCenter.cpp 125 for (ObserverListIterator it2 = list.begin(); it2 != end; ++it2) {
126 IUnknown* observedObject = it2->first.get();
127 IWebNotificationObserver* observer = it2->second.get();
204 for (ObserverListIterator it2 = observerList.begin(); it2 != end; ++it2, ++i) {
205 IUnknown* observedObject = it2->first.get();
206 IWebNotificationObserver* observer = it2->second.get()
    [all...]
  /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/webkit/Source/WebCore/storage/
IDBFactoryBackendImpl.cpp 86 IDBBackingStoreMap::iterator it2 = m_backingStoreMap.find(fileIdentifier); local
87 if (it2 != m_backingStoreMap.end())
88 backingStore = it2->second;
  /external/webkit/Source/WebKit/chromium/src/
WebAccessibilityCacheImpl.cpp 130 IdMap::iterator it2 = m_idMap.find(it->second->accessibilityObject()); local
131 if (it2 != m_idMap.end())
132 m_idMap.remove(it2);
  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 95 inline bool operator==(const InlineIterator& it1, const InlineIterator& it2)
97 return it1.m_pos == it2.m_pos && it1.m_obj == it2.m_obj;
100 inline bool operator!=(const InlineIterator& it1, const InlineIterator& it2)
102 return it1.m_pos != it2.m_pos || it1.m_obj != it2.m_obj;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
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...]
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));
  /libcore/luni/src/test/java/tests/api/java/util/
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...]
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));
  /external/ceres-solver/internal/ceres/
graph_algorithms.h 204 for (typename HashSet<Vertex>::const_iterator it2 = neighbors.begin();
205 it2 != neighbors.end();
206 ++it2) {
207 const Vertex vertex2 = *it2;
  /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/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/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/libvpx/libvpx/third_party/googletest/src/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());
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 418 for (MCSectionData::iterator it2 = it->begin(),
419 ie2 = it->end(); it2 != ie2; ++it2) {
420 if (MCSymbolData *SD = DefiningSymbolMap.lookup(it2))
422 it2->setAtom(CurrentAtom);

Completed in 1373 milliseconds

1 2 3 4