HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 26 - 50 of 2313) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rc_binomial_heap_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
65 typename rc_t::const_iterator it = m_rc.end(); local
66 --it;
70 PB_DS_DEBUG_VERIFY(*it == p_nd);
77 --it;
80 PB_DS_DEBUG_VERIFY(it + 1 == m_rc.begin());
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rc_binomial_heap_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
65 typename rc_t::const_iterator it = m_rc.end(); local
66 --it;
70 PB_DS_DEBUG_VERIFY(*it == p_nd);
77 --it;
80 PB_DS_DEBUG_VERIFY(it + 1 == m_rc.begin());
  /system/core/base/include/android-base/
strings.h 47 for (auto it = std::next(things.begin()); it != things.end(); ++it) {
48 result << separator << *it; local
  /system/nativepower/daemon/
wake_lock_manager_stub.cc 38 const auto it = requests_.find(binder); local
39 if (it == requests_.end())
42 const Request& req = it->second;
  /system/update_engine/
fake_shill_proxy.cc 33 auto it = service_proxy_mocks_.find(path.value()); local
34 CHECK(it != service_proxy_mocks_.end()) << "No ServiceProxyMock set for "
36 std::unique_ptr<ServiceProxyInterface> result = std::move(it->second);
37 service_proxy_mocks_.erase(it);
  /art/test/548-checker-inlining-and-dce/src/
Main.java 19 private void inlinedForNull(Iterable it) {
20 if (it != null) {
22 it.iterator();
26 private void inlinedForFalse(boolean value, Iterable it) {
29 it.iterator();
40 public void testInlinedForFalseInlined(Iterable it) {
41 inlinedForFalse(false, it);
50 public void testInlinedForFalseNotInlined(Iterable it) {
51 inlinedForFalse(true, it);
61 public void testInlinedForNullInlined(Iterable it) {
77 Iterable it = new Iterable() { local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
FixedTableModelTest.java 49 Iterator<RectF> it = model.getIterator(tableRect, 5); local
51 assertTrue(it.hasNext());
52 RectF cellRect = it.next();
54 assertTrue(it.hasNext());
55 cellRect = it.next();
57 assertTrue(it.hasNext());
58 cellRect = it.next();
60 assertTrue(it.hasNext());
61 cellRect = it.next();
63 assertTrue(it.hasNext());
82 Iterator<RectF> it = model.getIterator(tableRect, 5); local
217 Iterator<RectF> it = model.getIterator(tableRect, 5); local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 72 Iterator<Integer> it = col.iterator(); local
74 while (it.hasNext()) {
75 ss.add(it.next());
77 it = ss.iterator();
78 for (int counter = 0; it.hasNext(); counter++) {
79 int nextValue = it.next().intValue();
94 for (int counter = 0; it.hasNext(); counter++) {
97 objArray[counter] == it.next());
103 for (int counter = 0; it.hasNext(); counter++) {
106 objArray[counter] == it.next())
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 72 Iterator<Integer> it = col.iterator(); local
74 while (it.hasNext()) {
75 ss.add(it.next());
77 it = ss.iterator();
78 for (int counter = 0; it.hasNext(); counter++) {
79 int nextValue = it.next().intValue();
94 for (int counter = 0; it.hasNext(); counter++) {
97 objArray[counter] == it.next());
103 for (int counter = 0; it.hasNext(); counter++) {
106 objArray[counter] == it.next())
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CollectionUtils.java 30 for (Iterator it = c.iterator(); it.hasNext();) {
31 Object value = (Object)it.next();
43 for (Iterator it = source.keySet().iterator(); it.hasNext();) {
44 Object key = it.next();
50 Iterator it = c.iterator(); local
51 while (it.hasNext()) {
52 if (!p.evaluate(it.next())) {
53 it.remove()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
ForEachRemainingTester.java 76 Iterator<T> it = collection.iterator(); local
77 it.next();
79 it.forEachRemaining((T i) -> recorder.add(i));
  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.cc 44 auto it = inliners_.find(dex_file); local
45 if (it != inliners_.end()) {
46 return it->second;
50 // We need to acquire our lock_ to modify inliners_ but we want to release it
  /art/compiler/linker/
multi_oat_relative_patcher.cc 64 auto it = map.find(ref); local
65 if (it == map.end()) {
68 return std::pair<bool, uint32_t>(true, it->second);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeNodeStream.h 42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeNodeStream.h 42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeNodeStream.h 42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeNodeStream.h 42 /** If this tree (root) was created from a token stream, track it. */
49 __strong ANTLRTreeIterator *it; variable
117 @property (retain) ANTLRTreeIterator *it; variable
  /external/boringssl/src/tool/
args.cc 84 const auto &it = args.find(arg_name); local
85 if (it == args.end()) {
90 const std::string &value = it->second;
  /external/libchrome/base/metrics/
sample_vector_unittest.cc 113 // Note, this is not a valid BucketRanges for Histogram because it does not
190 SampleVectorIterator it(&counts, &ranges);
196 it.Get(&min, &max, &count);
200 EXPECT_TRUE(it.GetBucketIndex(&index));
203 it.Next();
204 it.Get(&min, &max, &count);
208 EXPECT_TRUE(it.GetBucketIndex(&index));
211 it.Next();
212 EXPECT_TRUE(it.Done());
247 scoped_ptr<SampleCountIterator> it = samples.Iterator() local
    [all...]
  /external/libcxx/test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/
at.pass.cpp 46 auto it = vals.begin (); local
47 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
49 assert ( *it == dyn.at(i));
60 auto it = vals.begin (); local
61 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
63 assert ( *it == dyn.at(i));
  /external/libcxx/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 54 typename C::const_iterator it = c.begin(); local
55 for (int i = 0; i < size; ++i, ++it)
56 assert(*it == MoveOnly(i));
  /external/llvm/test/MC/ARM/
deprecated-v8.s 29 it ge label
31 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
36 @ CHECK-ARMV8: warning: applying IT instruction to more than one subsequent instruction is deprecated
37 @ CHECK-THUMBV8: warning: applying IT instruction to more than one subsequent instruction is deprecated
39 it ge label
41 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
43 it ge label
45 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
47 it ge label
49 @ CHECK-THUMBV8: warning: deprecated instruction in IT bloc
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
format.cpp 139 auto it = formats.find(format); local
141 if (it == formats.end())
144 return it->second;
geometry.hpp 40 auto it = std::copy(v.begin(), v.end(), a.begin()); local
41 std::fill(it, a.end(), 0);

Completed in 913 milliseconds

12 3 4 5 6 7 8 91011>>