HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 151 - 175 of 3394) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
incomplete_type.pass.cpp 21 Set::iterator it; member in struct:A
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.modifiers/
push_back.pass.cpp 51 typename C::const_iterator it = c.begin(); local
52 for (int i = 0; i < size; ++i, ++it)
53 assert(*it == i);
push_back_rvalue.pass.cpp 55 typename C::const_iterator it = c.begin(); local
56 for (int i = 0; i < size; ++i, ++it)
57 assert(*it == MoveOnly(i));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/
incomplete.pass.cpp 24 std::forward_list<A>::iterator it; member in struct:A
32 FList::iterator it; member in struct:B
42 a.it = a.d.begin();
49 b.it = b.d.begin();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
incomplete_type.pass.cpp 19 std::list<A>::iterator it; member in struct:A
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.itr/
iterator.pass.cpp 33 template <class It>
34 std::reverse_iterator<It> mkRev(It it) {
35 return std::reverse_iterator<It>(it);
40 using It = path::iterator;
41 using Traits = std::iterator_traits<It>;
47 It it; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 27 UDT<int> it; variable
36 std::real(it); // expected-error {{no matching function}}
43 std::imag(it); // expected-error {{no matching function}}
50 std::arg(it); // expected-error {{no matching function}}
57 std::norm(it); // expected-error {{no matching function}}
64 std::conj(it); // expected-error {{no matching function}}
71 std::proj(it); // expected-error {{no matching function}}
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
id_descriptor.cpp 54 const auto it = id_to_descriptor_.find(id); local
56 if (it != id_to_descriptor_.end()) {
57 words_.push_back(it->second);
  /system/core/init/
rlimit_parser.cpp 56 auto it = std::find_if(text_to_resources.begin(), text_to_resources.end(), local
60 if (it == text_to_resources.end()) {
64 resource = it->second;
  /system/tools/hidl/c2hal/
Scope.h 49 auto it = mScopeContents.find(name); local
51 if (it != mScopeContents.end()) {
61 auto it = mScopeContents.find(name); local
63 if (it == mScopeContents.end()) {
68 mScopeContents.erase(it);
73 auto it = mScopeContents.find(name); local
75 if (it == mScopeContents.end()) {
79 return (*it).second;
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
DynamicTableModelTest.java 70 Iterator<RectF> it = model.getIterator(tableRect, 10); local
72 while(it.hasNext()) {
73 it.next();
79 // many elements we throw at it:
81 it = model.getIterator(tableRect, 10);
83 while(it.hasNext()) {
84 it.next();
99 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
104 RectF cellRect = it.next();
113 cellRect = it.next();
157 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
204 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 24 UnicodeSetIterator it; field in class:UnicodeSetPerf
40 it = new UnicodeSetIterator(testChars);
49 it.reset();
51 while (it.nextRange()) {
52 for (int cp = it.codepoint; cp <= it.codepointEnd; ++cp) {
69 it.reset();
71 while (it.nextRange()) {
72 for (int cp = it.codepoint; cp <= it.codepointEnd; ++cp)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
ServiceLoaderTest.java 33 Iterator<ServiceLoaderTestInterface> it = loader.iterator(); local
34 assertTrue(it.hasNext());
35 assertTrue(it.next() instanceof Impl1);
36 assertTrue(it.hasNext());
37 assertTrue(it.next() instanceof Impl2);
38 assertFalse(it.hasNext());
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
JsonBackedSuggestionExtras.java 39 Iterator<String> it = mExtras.keys(); local
40 while (it.hasNext()) {
41 mColumns.add(it.next());
  /external/libmojo/base/android/javatests/src/org/chromium/base/
ObserverListTest.java 117 // evil removed c from the observerList before it got any callbacks.
160 Iterator<Integer> it = observerList.iterator(); local
161 Assert.assertTrue(it.hasNext());
162 Assert.assertTrue(5 == it.next());
163 Assert.assertTrue(it.hasNext());
164 Assert.assertTrue(15 == it.next());
165 Assert.assertFalse(it.hasNext());
169 it.remove();
179 it.next();
197 ObserverList.RewindableIterator<Integer> it = observerList.rewindableIterator() local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestCanonicalIterator.java 51 CanonicalIterator it = new CanonicalIterator(""); local
71 characterTest(s, i, it);
73 characterTest(s + "\u0345", i, it);
83 CanonicalIterator it = new CanonicalIterator(s); local
109 it.setSource(s);
111 String item = it.next();
149 CanonicalIterator it = new CanonicalIterator(testArray[i][0]); local
154 String result = it.next();
164 it.reset();
165 if(!it.next().equals(first))
271 Iterator it = col.iterator(); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
AbstractCollection.java 5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
99 Iterator<E> it = iterator(); local
101 while (it.hasNext())
102 if (it.next()==null)
105 while (it.hasNext())
106 if (o.equals(it.next()))
137 Iterator<E> it = iterator(); local
139 if (! it.hasNext()) // fewer elements than expecte
180 Iterator<E> it = iterator(); local
282 Iterator<E> it = iterator(); local
373 Iterator<?> it = iterator(); local
407 Iterator<E> it = iterator(); local
433 Iterator<E> it = iterator(); local
454 Iterator<E> it = iterator(); local
    [all...]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
SpinedBufferTest.java 5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
126 Iterator<Integer> it = sb.iterator(); local
128 list2.add(it.next());
129 assertFalse(it.hasNext());
201 PrimitiveIterator.OfInt it = sb.iterator(); local
203 list2.add(it.nextInt());
204 assertFalse(it.hasNext());
276 PrimitiveIterator.OfLong it = sb.iterator() local
352 PrimitiveIterator.OfDouble it = sb.iterator(); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CtsTestHelper.java 30 Intent it = new Intent(); local
31 it.putExtra(REPORTED_FOV_EXTRA, reportedFOV);
32 it.putExtra(MEASURED_FOV_EXTRA, measuredFOV);
33 activity.setResult(Activity.RESULT_OK, it);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTreeIterator.java 44 TreeIterator it = new TreeIterator(t); local
45 StringBuffer buf = toString(it);
55 TreeIterator it = new TreeIterator(t); local
56 StringBuffer buf = toString(it);
66 TreeIterator it = new TreeIterator(t); local
67 StringBuffer buf = toString(it);
77 TreeIterator it = new TreeIterator(t); local
78 StringBuffer buf = toString(it);
88 TreeIterator it = new TreeIterator(t); local
89 StringBuffer buf = toString(it);
99 TreeIterator it = new TreeIterator(t); local
110 TreeIterator it = new TreeIterator(t); local
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
AbstractNamedNode.java 5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
41 Iterator<Node> it = components.iterator(); local
43 if (it.hasNext()) {
44 Node nameNode = it.next();
49 it.remove();
  /external/smali/util/src/main/java/org/jf/util/
AbstractForwardSequentialList.java 48 Iterator<T> it = iterator(); local
50 it.next();
52 return it;
  /frameworks/base/core/tests/coretests/src/android/util/
RecurrenceRuleTest.java 60 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
61 assertTrue(it.hasNext());
64 ZonedDateTime.parse("2015-12-14T00:00:00.00Z")), it.next());
65 assertTrue(it.hasNext());
68 ZonedDateTime.parse("2015-11-14T00:00:00.00Z")), it.next());
80 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
81 assertTrue(it.hasNext());
84 ZonedDateTime.parse("2010-11-20T00:11:00.00Z")), it.next());
85 assertTrue(it.hasNext());
88 ZonedDateTime.parse("2010-11-17T00:11:00.00Z")), it.next())
101 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
115 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
125 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorTest.java 32 AttributedCharacterIterator it = attrString.getIterator(); local
33 assertEquals("Wrong first", 'T', it.current());
34 it.next();
35 assertEquals("Wrong second", 'e', it.current());
37 it.next();
38 assertEquals("Wrong last", 'g', it.current());
39 it.next();
40 assertTrue("Wrong final", it.current() == CharacterIterator.DONE);
42 it = attrString.getIterator(null, 2, 8);
43 assertEquals("Wrong first2", 's', it.current())
52 AttributedCharacterIterator it = attrString.getIterator(); local
68 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); local
78 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); local
88 AttributedCharacterIterator it = attrString.getIterator(); local
105 AttributedCharacterIterator it = attrString.getIterator(); local
121 AttributedCharacterIterator it = attrString.getIterator(); local
138 AttributedCharacterIterator it = attrString.getIterator(); local
149 AttributedCharacterIterator it = attrString.getIterator(); local
161 AttributedCharacterIterator it = as.getIterator(); local
    [all...]
  /art/compiler/debug/dwarf/
debug_abbrev_writer.h 38 // It is possible to think of them as type definitions.
69 auto it = abbrev_codes_.insert(std::make_pair(std::move(current_abbrev_), NextAbbrevCode())); local
70 uint32_t abbrev_code = it.first->second;
71 if (UNLIKELY(it.second)) { // Inserted new entry.
72 const Vector& abbrev = it.first->first;

Completed in 628 milliseconds

1 2 3 4 5 67 8 91011>>