HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 126 - 150 of 2168) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/splay_tree_/
erase_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
46 point_iterator it = find(r_key); local
47 if (it == base_type::end())
49 erase(it);
56 erase(iterator it)
59 if (it == base_type::end())
60 return it;
91 iterator it = base_type::begin(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/splay_tree_/
erase_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
46 point_iterator it = find(r_key); local
47 if (it == base_type::end())
49 erase(it);
56 erase(iterator it)
59 if (it == base_type::end())
60 return it;
91 iterator it = base_type::begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/splay_tree_/
erase_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
46 point_iterator it = find(r_key); local
47 if (it == base_type::end())
49 erase(it);
56 erase(iterator it)
59 if (it == base_type::end())
60 return it;
91 iterator it = base_type::begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/splay_tree_/
erase_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
46 point_iterator it = find(r_key); local
47 if (it == base_type::end())
49 erase(it);
56 erase(iterator it)
59 if (it == base_type::end())
60 return it;
91 iterator it = base_type::begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/splay_tree_/
erase_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
46 point_iterator it = find(r_key); local
47 if (it == base_type::end())
49 erase(it);
56 erase(iterator it)
59 if (it == base_type::end())
60 return it;
91 iterator it = base_type::begin(); local
    [all...]
  /system/netd/
UidMarkMap.cpp 39 android::netd::List<UidMarkEntry*>::iterator it; local
40 for (it = mMap.begin(); it != mMap.end(); it++) {
41 UidMarkEntry *entry = *it;
43 mMap.erase(it);
53 android::netd::List<UidMarkEntry*>::iterator it; local
54 for (it = mMap.begin(); it != mMap.end(); it++)
67 android::netd::List<UidMarkEntry*>::iterator it; local
    [all...]
  /cts/tools/cts-native-scanner/tests/src/com/android/cts/nativescanner/
TestScannerTest.java 40 Iterator it = names.iterator(); local
41 assertEquals("suite:TestSuite", it.next());
42 assertEquals("case:FakeTestCase", it.next());
43 assertEquals("test:FakeTestName", it.next());
44 assertFalse(it.hasNext());
55 Iterator it = names.iterator(); local
56 assertEquals("suite:TestSuite", it.next());
57 assertEquals("case:Case1", it.next());
58 assertEquals("test:Test1", it.next());
59 assertEquals("test:Test2", it.next())
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractSequentialList.java 42 ListIterator<E> it = listIterator(location); local
44 int next = it.nextIndex();
46 it.add(colIt.next());
48 return next != it.nextIndex();
71 ListIterator<E> it = listIterator(location); local
72 E result = it.next();
73 it.remove();
82 ListIterator<E> it = listIterator(location); local
83 if (!it.hasNext()) {
86 E result = it.next()
    [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());
  /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);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiPackage.java 76 Iterator<Entry<String, ApiClass>> it = mApiClassMap.entrySet().iterator(); local
77 while (it.hasNext()) {
78 Map.Entry<String, ApiClass> entry = it.next();
82 it.remove();
  /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/smack/src/org/xbill/DNS/tests/
xfrin.java 84 Iterator it = response.iterator(); local
85 while (it.hasNext())
86 System.out.println(it.next());
89 Iterator it = response.iterator(); local
90 while (it.hasNext()) {
92 delta = (ZoneTransferIn.Delta) it.next();
  /cts/suite/audio_quality/lib/src/
Report.cpp 93 std::list<StringPair>::const_iterator it; local
94 for (it = begin; it != end; it++) {
96 printf(" <test title=\"%s\" result=\"pass\" >", it->first.string());
98 printf(" <test title=\"%s\" result=\"fail\" >", it->first.string());
100 printf(" <details>\n%s", it->second.string());
  /cts/suite/audio_quality/lib/src/task/
TaskSequential.cpp 94 std::list<TaskAsync*>::iterator it; local
95 it = std::find(mAsyncTasks.begin(), mAsyncTasks.end(), task);
96 if (it != mAsyncTasks.end()) { // already queued
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificatePoliciesTest.java 60 Iterator it = policyInformations.iterator(); local
61 ((PolicyInformation) it.next()).getPolicyIdentifier();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableMapTest.java 130 Iterator<?> it = keySet.iterator(); local
131 while (it.hasNext()) {
134 keySet.contains(it.next()));
145 for (int counter = 0; it.hasNext(); counter++) {
148 objArray[counter] == it.next());
154 for (int counter = 0; it.hasNext(); counter++) {
157 objArray[counter] == it.next());
  /external/apache-http/src/org/apache/http/impl/client/
DefaultConnectionKeepAliveStrategy.java 60 HeaderElementIterator it = new BasicHeaderElementIterator( local
62 while (it.hasNext()) {
63 HeaderElement he = it.nextElement();
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.cc 59 // It does so by iterating over the columns, but only considering
69 vector<int>::const_iterator it = lower_bound(row_block_starts.begin(), local
72 // Since we are using lower_bound, it will return the row id
81 if (it == row_block_starts.end() || *it != scalar_rows[idx]) {
85 block_rows->push_back(it - row_block_starts.begin());
map_util.h 43 // Crash if it does not.
49 // * It has a side-effect of inserting missing keys
50 // * It is not thread-safe (even when it is not inserting, it can still
52 // * It invalidates iterators (when it chooses to resize)
53 // * It default constructs a value object even if it doesn't need to
55 // This version assumes the key is printable, and includes it in the fatal lo
61 typename Collection::const_iterator it = collection.find(key); local
74 typename Collection::const_iterator it = collection.find(key); local
102 typename Collection::iterator it = collection.find(key); local
113 typename Collection::const_iterator it = collection.find(key); local
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_protocol_handler.cc 90 ToolToListenerMap::const_iterator it = tool_to_listener_map_.find(tool); local
91 if (it == tool_to_listener_map_.end()) {
99 it->second.get(), &DevToolsRemoteListener::HandleMessage, message));
116 for (ToolToListenerMap::const_iterator it = tool_to_listener_map_.begin(),
118 it != end;
119 ++it) {
123 it->second.get(), &DevToolsRemoteListener::OnConnectionLost));
devtools_remote_message.cc 33 HeaderMap::const_iterator it = header_map_.find(header_name); local
34 if (it == header_map_.end()) {
37 return it->second;
47 for (HeaderMap::const_iterator it = header_map_.begin(),
48 end = header_map_.end(); it != end; ++it) {
49 result.append(it->first).append(":").append(it->second).append("\r\n");
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase.cc 35 PropertyMap::iterator it = properties_.find(key.c_str()); local
36 if (it == properties_.end()) {
50 it = properties_.begin();
57 if (it == properties_.end()) {
60 *key = it->first;
61 *value = it->second;
62 it++;
71 if (it == properties_.end()) {
  /external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.cc 40 std::map<Profile*, ProfileKeyedService*>::iterator it = local
42 if (it != mapping_.end()) {
43 service = it->second;
48 mapping_.erase(it);
77 std::map<Profile*, ProfileKeyedService*>::iterator it = local
79 if (it != mapping_.end() && it->second)
80 it->second->Shutdown();
84 std::map<Profile*, ProfileKeyedService*>::iterator it = local
86 if (it != mapping_.end())
    [all...]

Completed in 734 milliseconds

1 2 3 4 56 7 8 91011>>