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

1 2

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 51 T it1; local
52 if (it1->end < it1->end) {
61 T it1; local
62 if (it1->end < it1->end) {
p1.cpp 71 T it1; local
72 if (it1->end < it1->end) {
81 T it1; local
82 if (it1->end < it1->end) {
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
StringCharacterIteratorTest.java 134 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
138 assertTrue("Range is equal", !it1.equals(it2));
142 assertTrue("Not equal", it1.equals(it3));
189 StringCharacterIterator it1 = local
191 assertEquals("Wrong first char", 's', it1.first());
192 assertEquals("Wrong next char", 't', it1.next());
193 it1 = new StringCharacterIterator("testing", 2, 2, 2);
194 assertTrue("Not DONE", it1.first() == CharacterIterator.DONE);
209 StringCharacterIterator it1 = local
211 assertEquals("Wrong begin index 2", 2, it1.getBeginIndex())
228 StringCharacterIterator it1 = local
290 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
336 StringCharacterIterator it1 = local
446 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
459 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
489 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
501 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
514 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local
    [all...]
  /external/openfst/src/include/fst/
interval-set.h 204 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
210 while (it1 != intervals_.end() && it2 != iintervals->end()) {
211 if (it1->end <= it2->begin) {
212 ++it1;
213 } else if (it2->end <= it1->begin) {
217 interval.begin = max(it1->begin, it2->begin);
218 interval.end = min(it1->end, it2->end);
221 if (it1->end < it2->end)
222 ++it1;
276 typename vector<Interval>::const_iterator it1 = intervals_.begin() local
296 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
345 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
    [all...]
  /external/oprofile/libpp/
diff_container.cpp 127 symbol_container::symbols_t::iterator it1 = pc1.begin_symbol(); local
132 while (it1 != end1 && it2 != end2) {
133 if (rough_less(*it1, *it2)) {
134 symbol_old(syms, *it1, choice);
135 ++it1;
136 } else if (rough_less(*it2, *it1)) {
140 symbol_diff(syms, *it1, total1, *it2, total2, choice);
141 ++it1;
146 for (; it1 != end1; ++it1)
    [all...]
sample_container.cpp 93 iterator it1 = samples_by_loc.lower_bound(&lower); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
  /external/webkit/Source/WebCore/rendering/style/
KeyframeList.cpp 45 for (Vector<KeyframeValue>::const_iterator it1 = m_keyframes.begin(); it1 != m_keyframes.end(); ++it1) {
46 if (it1->key() != it2->key())
48 const RenderStyle& style1 = *it1->style();
  /external/nist-sip/java/gov/nist/javax/sip/header/
RouteList.java 78 ListIterator<Route> it1 = that.listIterator(); local
81 Route route1 = (Route) it1.next();
SIPObjectList.java 87 Iterator<GenericObject> it1 = this.listIterator(); local
89 while (it1.hasNext()) {
90 GenericObject outerObj = (GenericObject) it1.next();
SIPHeaderList.java 430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext()
432 SIPHeader sipHeader1 = (SIPHeader) it1.next();
  /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 462 Iterator it1 = s1.iterator(); local
464 for (i = 0; it1.hasNext(); i++) {
465 Map.Entry m = (Map.Entry) it1.next();
524 Iterator it1 = s1.iterator(); local
526 for (i = 0; it1.hasNext(); i++) {
527 Integer jj = (Integer) it1.next();
580 Iterator it1 = s1.iterator(); local
582 for (i = 0; it1.hasNext(); i++) {
583 Integer jj = (Integer) it1.next();
636 Iterator it1 = s1.iterator() local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedHashMapTest.java 525 Iterator it1 = s1.iterator(); local
527 for (i = 0; it1.hasNext(); i++) {
528 Map.Entry m = (Map.Entry) it1.next();
587 Iterator it1 = s1.iterator(); local
589 for (i = 0; it1.hasNext(); i++) {
590 Integer jj = (Integer) it1.next();
643 Iterator it1 = s1.iterator(); local
645 for (i = 0; it1.hasNext(); i++) {
646 Integer jj = (Integer) it1.next();
699 Iterator it1 = s1.iterator() local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory1Test.java 311 Iterator it1 = certFs[0].getCertPathEncodings(); local
313 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
314 while (it1.hasNext()) {
316 String s1 = (String) it1.next();
327 it1 = certFs[0].getCertPathEncodings();
329 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
330 while (it1.hasNext()) {
332 String s1 = (String) it1.next();
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 48 BreakIterator it1 = BreakIterator.getWordInstance(Locale.CANADA_FRENCH); local
49 assertTrue("Incorrect BreakIterator", it1 != BreakIterator.getWordInstance());
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java 299 Iterator<String> it1 = certFs[0].getCertPathEncodings(); local
301 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
302 while (it1.hasNext()) {
304 String s1 = it1.next();
315 it1 = certFs[0].getCertPathEncodings();
317 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
318 while (it1.hasNext()) {
320 String s1 = it1.next();
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
PhysicsCollisionObject.java 253 for (Iterator<Spatial> it1 = children.iterator(); it1.hasNext();) {
254 Spatial spatial1 = it1.next();
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsCollisionObject.java 233 for (Iterator<Spatial> it1 = children.iterator(); it1.hasNext();) {
234 Spatial spatial1 = it1.next();
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java 462 for (Iterator<PhysicsJoint> it1 = joints.iterator(); it1.hasNext();) {
463 PhysicsJoint physicsJoint = it1.next();
509 for (Iterator<PhysicsJoint> it1 = joints.iterator(); it1.hasNext();) {
510 PhysicsJoint physicsJoint = it1.next();
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 330 Iterator it1 = this.listIterator();
332 while (it1.hasNext()) {
333 GenericObject outerObj = (GenericObject) it1.next();
  /libcore/luni/src/main/java/java/util/
AbstractList.java 491 Iterator<?> it1 = iterator(), it2 = list.iterator(); local
492 while (it1.hasNext()) {
493 Object e1 = it1.next(), e2 = it2.next();
  /external/ceres-solver/internal/ceres/
visibility_based_preconditioner.cc 512 for (HashSet<int>::const_iterator it1 = vertices.begin();
513 it1 != vertices.end();
514 ++it1) {
515 const int cluster1 = *it1;
schur_eliminator_impl.h 499 BufferLayoutType::const_iterator it1 = buffer_layout.begin(); local
501 for (; it1 != buffer_layout.end(); ++it1) {
502 const int block1 = it1->first - num_eliminate_blocks_;
503 const int block1_size = bs->cols[it1->first].size;
506 b1(buffer + it1->second, e_block_size, block1_size);
510 BufferLayoutType::const_iterator it2 = it1;
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 400 final Iterator<String> it1 = cf.getCertPathEncodings(); local
403 assertEquals(p.getName(), it1.hasNext(), it2.hasNext());
404 if (!it1.hasNext()) {
408 String encoding = it1.next();
412 it1.remove();
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
FilterPostProcessor.java 227 for (Iterator<Filter.Pass> it1 = filter.getPostRenderPasses().iterator(); it1.hasNext();) {
228 Filter.Pass pass = it1.next();

Completed in 306 milliseconds

1 2