/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
module.cpp | 151 auto it = std::find_if(syms.begin(), syms.end(), [&](const symbol &x) { local 155 if (it == syms.end()) 158 return *it; 163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) { local 167 if (it == secs.end()) 170 return *it;
|
/external/chromium_org/ui/gfx/x/ |
x11_atom_cache.cc | 35 std::map<std::string, ::Atom>::const_iterator it = cached_atoms_.find(name); local 37 if (uncached_atoms_allowed_ && it == cached_atoms_.end()) { 43 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found"; 44 return it->second;
|
/external/chromium_org/ui/oak/ |
oak_tree_model.cc | 23 aura::Window::Windows::const_iterator it = parent_window->children().begin(); local 24 for (; it != parent_window->children().end(); ++it) { 25 WindowNode* child_node = new WindowNode(GetNodeTitleForWindow(*it), *it); 27 AddChildWindows(*it, child_node);
|
/external/llvm/lib/Option/ |
Arg.cpp | 71 it = ASL.begin(), ie = ASL.end(); it != ie; ++it) { 72 if (it != ASL.begin()) 74 OS << *it; local
|
/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);
|
module.cpp | 151 auto it = std::find_if(syms.begin(), syms.end(), [&](const symbol &x) { local 155 if (it == syms.end()) 158 return *it; 163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) { local 167 if (it == secs.end()) 170 return *it;
|
/external/open-vcdiff/gtest/src/ |
gtest-typed-test.cc | 59 for (DefinedTestIter it = defined_test_names_.begin(); 60 it != defined_test_names_.end(); 61 ++it) { 62 if (name == *it) { 76 for (DefinedTestIter it = defined_test_names_.begin(); 77 it != defined_test_names_.end(); 78 ++it) { 79 if (tests.count(*it) == 0) { 80 errors << "You forgot to list test " << *it << ".\n"; local
|
/external/oprofile/libpp/ |
populate.cpp | 36 list<profile_sample_files>::const_iterator it = files.begin(); local 41 for (; it != end; ++it) { 45 if (!it->sample_filename.empty()) { 46 profile.add_sample_file(it->sample_filename); 81 list<image_set>::const_iterator it local 87 // image_set's files - this is because it->app_image 90 for (; it != end; ++it) { 92 if (populate_from_files(profile, abfd, it->files)) [all...] |
/external/protobuf/gtest/src/ |
gtest-typed-test.cc | 59 for (DefinedTestIter it = defined_test_names_.begin(); 60 it != defined_test_names_.end(); 61 ++it) { 62 if (name == *it) { 76 for (DefinedTestIter it = defined_test_names_.begin(); 77 it != defined_test_names_.end(); 78 ++it) { 79 if (tests.count(*it) == 0) { 80 errors << "You forgot to list test " << *it << ".\n"; local
|
/external/protobuf/src/google/protobuf/stubs/ |
map-util.h | 50 typename Collection::const_iterator it = collection.find(key); local 51 if (it == collection.end()) { 54 return it->second; 64 typename Collection::const_iterator it = collection.find(key); local 65 if (it == collection.end()) { 68 return &it->second; 80 typename Collection::const_iterator it = collection.find(key); local 81 if (it == collection.end()) { 84 return it->second;
|
/external/stlport/test/eh/ |
test.cpp | 8 typename T::const_iterator it; local 10 for(it = coll.begin(); it != coll.end(); ++it) { 11 std::cout << *it << ' '; local
|
/frameworks/compile/mclinker/lib/LD/ |
ELFSegment.cpp | 43 for (const_sect_iterator it = begin(), ie = end(); it != ie; ++it) { 44 if ((*it)->kind() != LDFileFormat::BSS) { 57 const_sect_iterator it = begin(), ie = end(); local 58 for (; it != ie; ++it) { 59 if ((*it)->kind() != LDFileFormat::BSS) 62 if (it == ie)
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonGOTPLT.cpp | 54 iterator it = begin(); local 57 ++it; 61 for (; it != end() ; ++it) { 62 llvm::cast<HexagonGOTEntry>(*it).setValue(pPLT.addr());
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/ |
TrustletSession.cpp | 52 map<uint32_t, CWsm_ptr>::iterator it; local 58 for ( it = buffers.begin() ; it != buffers.end(); it++ ) 59 delete (*it).second; 119 // Remove it from the map
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/ |
compare.pass.cpp | 38 std::unordered_map<Key, int>::iterator it = local
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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/5/sources/cxx-stl/gnu-libstdc++/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/6/sources/cxx-stl/gnu-libstdc++/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/7/sources/cxx-stl/gnu-libstdc++/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.4.3/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...] |