HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 951 - 975 of 17279) sorted by null

<<31323334353637383940>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
copy_backward.pass.cpp 55 assert(std::copy_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
57 assert(std::copy_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
59 assert(std::copy_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
61 assert(std::copy_backward(c2.cbegin(), c2.cend(), RAI(c1.end())) == RAI(c1.begin()));
63 assert(std::copy_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin());
65 assert(std::copy_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin());
move.pass.cpp 55 assert(std::move(c1.cbegin(), c1.cend(), c2.begin()) == c2.end());
57 assert(std::move(c2.cbegin(), c2.cend(), c1.begin()) == c1.end());
59 assert(std::move(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end()));
61 assert(std::move(c2.cbegin(), c2.cend(), RAI(c1.begin())) == RAI(c1.end()));
63 assert(std::move(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end());
65 assert(std::move(RACI(c2.cbegin()), RACI(c2.cend()), c1.begin()) == c1.end());
move_backward.pass.cpp 55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
61 assert(std::move_backward(c2.cbegin(), c2.cend(), RAI(c1.end())) == RAI(c1.begin()));
63 assert(std::move_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin());
65 assert(std::move_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_flist.pass.cpp 23 const int size_t1 = std::end(t1) - std::begin(t1);
24 const int size_t2 = std::end(t2) - std::begin(t2);
30 typename C::const_iterator i = c.begin();
38 assert(distance(c.begin(), c.end()) == size_t1 + l);
50 C c1(std::begin(t1), std::end(t1));
66 C c1(std::begin(t1), std::end(t1));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
insert_iter_value.pass.cpp 49 assert(i == next(l1.begin()));
51 assert(distance(l1.begin(), l1.end()) == 4);
72 v1.insert(v2.begin(), i);
82 assert(i == next(l1.begin()));
84 assert(distance(l1.begin(), l1.end()) == 4);
105 v1.insert(v2.begin(), i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
iterators.pass.cpp 12 // iterator begin();
14 // const_iterator begin() const;
31 C::iterator i = c.begin();
40 C::const_iterator i = c.begin();
66 C::iterator i = c.begin();
75 C::const_iterator i = c.begin();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
iterators.pass.cpp 16 // iterator begin();
18 // const_iterator begin() const;
45 assert(std::distance(c.begin(), c.end()) == c.size());
64 assert(std::distance(c.begin(), c.end()) == c.size());
85 assert(std::distance(c.begin(), c.end()) == c.size());
105 assert(std::distance(c.begin(), c.end()) == c.size());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_mergesort.h 51 /** @brief Begin of subsequence. */
52 difference_type begin; member in struct:__gnu_parallel::Piece
71 /** @brief Input begin. */
154 multiseq_partition(seqs.begin(), seqs.end(),
155 sd->starts[iam + 1], offsets.begin(), comp);
174 sd->pieces[iam][seq].begin = sd->pieces[iam - 1][seq].end;
177 sd->pieces[iam][seq].begin = 0;
216 sd->pieces[iam][s].begin =
225 sd->pieces[iam][s].begin = 0;
250 void operator()(const RandomAccessIterator& begin,
    [all...]
omp_loop.h 47 * @param begin Begin iterator of element sequence.
67 for_each_template_random_access_omp_loop(RandomAccessIterator begin,
79 difference_type length = end - begin;
101 r(thread_results[iam], f(o, begin+pos));
111 f.finish_iterator = begin + length;
omp_loop_static.h 47 * @param begin Begin iterator of element sequence.
67 for_each_template_random_access_omp_loop_static(RandomAccessIterator begin,
79 difference_type length = end - begin;
100 thread_results[iam] = r(thread_results[iam], f(o, begin+pos));
110 f.finish_iterator = begin + length;
  /development/host/windows/usb/api/
adb_interface_enum.cpp 29 current_interface_ = interfaces_.begin();
54 current_interface_ = interfaces_.begin();
100 current_interface_ = interfaces_.begin();
  /external/arduino/libraries/Wire/
Wire.h 46 void begin();
47 void begin(uint8_t);
48 void begin(int);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
SHA384.java 8 // BEGIN android-removed
62 // BEGIN android-removed
87 // BEGIN android-removed
  /external/chromium/chrome/browser/extensions/
extension_toolbar_model.cc 51 ExtensionList::iterator pos = std::find(begin(), end(), extension);
60 for (ExtensionList::iterator iter = begin(); iter != end(); ++iter, ++i) {
133 toolitems_.insert(begin() + last_extension_removed_index_,
150 ExtensionList::iterator pos = std::find(begin(), end(), extension);
156 last_extension_removed_index_ = pos - begin();
192 std::find(pref_order.begin(), pref_order.end(), extension->id());
194 int index = std::distance(pref_order.begin(), pos);
203 for (ExtensionList::iterator iter = sorted.begin();
208 toolitems_.insert(toolitems_.end(), unsorted.begin(), unsorted.end());
228 for (ExtensionList::iterator iter = begin(); iter != end(); ++iter
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
model_type_payload_map.cc 28 for (browser_sync::ModelSafeRoutingInfo::const_iterator i = routes.begin();
38 for (ModelTypePayloadMap::const_iterator it = type_payloads.begin();
47 for (ModelTypePayloadMap::const_iterator i = update.begin();
  /external/chromium_org/apps/
shell_window_registry.cc 84 const ShellWindowList::iterator it = std::find(shell_windows_.begin(),
103 for (ShellWindowList::const_iterator i = shell_windows_.begin();
113 for (ShellWindowList::const_iterator i = shell_windows_.begin();
123 for (ShellWindowList::const_iterator i = shell_windows_.begin();
134 for (ShellWindowList::const_iterator i = shell_windows_.begin();
146 for (ShellWindowList::const_iterator i = shell_windows_.begin();
162 for (ShellWindowList::const_iterator i = shell_windows_.begin();
185 contexts.begin();
206 contexts.begin();
220 for (const_iterator j = shell_windows.begin(); j != shell_windows.end()
    [all...]
  /external/chromium_org/ash/
debug.cc 19 for (aura::Window::Windows::iterator it = root_windows.begin();
34 for (aura::Window::Windows::iterator it = root_windows.begin();
49 for (aura::Window::Windows::iterator it = root_windows.begin();
  /external/chromium_org/chrome/app/
cf_resources.rc 32 BEGIN
46 BEGIN
57 BEGIN
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_cookie_helper.cc 38 for (cookie_iterator cookie = cookie_list_.begin();
57 for (std::map<const std::string, bool>::iterator i = cookies_.begin();
63 for (std::map<const std::string, bool>::const_iterator i = cookies_.begin();
mock_browsing_data_server_bound_cert_helper.cc 38 server_bound_cert_list_.begin();
48 server_bound_certs_.begin();
55 server_bound_certs_.begin();
  /external/chromium_org/chrome/browser/extensions/api/extension_action/
extension_action_prefs_unittest.cc 27 for (iter = extensions_.begin(); iter != extensions_.end(); ++iter) {
44 ExtensionList::const_iterator iter = extensions_.begin() + 1;
47 static_cast<int>(iter - extensions_.begin())));
  /external/chromium_org/chrome/browser/extensions/
window_controller_list.cc 38 windows_.begin(), windows_.end(), window);
56 for (ControllerList::const_iterator iter = windows().begin();
77 for (ControllerList::const_iterator iter = windows().begin();
  /external/chromium_org/chrome/renderer/spellchecker/
custom_dictionary_engine.cc 21 for (std::set<std::string>::const_iterator it = custom_words.begin();
31 for (std::vector<std::string>::const_iterator it = words_added.begin();
36 for (std::vector<std::string>::const_iterator it = words_removed.begin();
  /external/chromium_org/components/dom_distiller/core/
fake_db.cc 26 for (EntryVector::iterator it = entries_to_save->begin();
31 for (EntryVector::iterator it = entries_to_remove->begin();
41 for (EntryMap::iterator it = db_->begin(); it != db_->end(); ++it) {
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler_list.cc 37 for (handler = handlers_.begin(); handler != handlers_.end(); ++handler) {
42 for (PolicyMap::const_iterator it = policies.begin();
55 for (handler = handlers_.begin(); handler != handlers_.end(); ++handler)

Completed in 1749 milliseconds

<<31323334353637383940>>