/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_handlers.h | 23 dbus_bool_t wpas_dbus_simple_property_getter(DBusMessageIter *iter, 28 dbus_bool_t wpas_dbus_simple_property_setter(DBusMessageIter *iter, 32 dbus_bool_t wpas_dbus_simple_array_property_getter(DBusMessageIter *iter, 38 dbus_bool_t wpas_dbus_simple_array_array_property_getter(DBusMessageIter *iter, 53 dbus_bool_t wpas_dbus_getter_debug_level(DBusMessageIter *iter, 57 dbus_bool_t wpas_dbus_getter_debug_timestamp(DBusMessageIter *iter, 61 dbus_bool_t wpas_dbus_getter_debug_show_keys(DBusMessageIter *iter, 65 dbus_bool_t wpas_dbus_setter_debug_level(DBusMessageIter *iter, 68 dbus_bool_t wpas_dbus_setter_debug_timestamp(DBusMessageIter *iter, 72 dbus_bool_t wpas_dbus_setter_debug_show_keys(DBusMessageIter *iter, [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/ |
search_n_pred.pass.cpp | 32 template <class Iter> 39 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 0, count_equal()) == Iter(ia)); 42 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 0, count_equal()) == Iter(ia+0)); 45 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 0, count_equal()) == Iter(ia+sa)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/accumulate/ |
accumulate_op.pass.cpp | 12 // template <InputIterator Iter, MoveConstructible T, 13 // Callable<auto, const T&, Iter::reference> BinaryOperation> 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op); 25 template <class Iter, class T> 27 test(Iter first, Iter last, T init, T x) 32 template <class Iter> 38 test(Iter(ia), Iter(ia), 1, 1) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/ |
put2.pass.cpp | 35 output_iterator<char*> iter; local 48 iter = f.put(output_iterator<char*>(str), ios, '*', &t, 'A'); 49 std::string ex(str, iter.base()); 53 iter = f.put(output_iterator<char*>(str), ios, '*', &t, 'a'); 54 std::string ex(str, iter.base()); 58 iter = f.put(output_iterator<char*>(str), ios, '*', &t, 'B'); 59 std::string ex(str, iter.base()); 63 iter = f.put(output_iterator<char*>(str), ios, '*', &t, 'b'); 64 std::string ex(str, iter.base()); 68 iter = f.put(output_iterator<char*>(str), ios, '*', &t, 'C') [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-overloaded-arrow.cpp | 9 struct Iter { 15 (void)Iter()->x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/is.sorted/ |
is_sorted_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 15 // is_sorted(Iter first, Iter last, Compare comp); 23 template <class Iter> 30 assert(std::is_sorted(Iter(a), Iter(a))); 31 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); 37 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())) [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
id_manager.cc | 22 MapType::iterator iter = id_map_.find(client_id); local 23 if (iter != id_map_.end() && iter->second == service_id) { 24 id_map_.erase(iter); 32 MapType::iterator iter = id_map_.find(client_id); local 33 if (iter != id_map_.end()) { 34 *service_id = iter->second; 43 for (MapType::iterator iter(id_map_.begin()); 44 iter != end; 45 ++iter) { [all...] |
/external/chromium/base/ |
pickle.cc | 99 bool Pickle::ReadBool(void** iter, bool* result) const { 100 DCHECK(iter); 103 if (!ReadInt(iter, &tmp)) 110 bool Pickle::ReadInt(void** iter, int* result) const { 111 DCHECK(iter); 112 if (!*iter) 113 *iter = const_cast<char*>(payload()); 115 if (!IteratorHasRoomFor(*iter, sizeof(*result))) 120 // Next line is otherwise the same as: memcpy(result, *iter, sizeof(*result)); 121 *result = *reinterpret_cast<int*>(*iter); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
put_long_double.pass.cpp | 48 output_iterator<char*> iter; local 69 iter = f.put(output_iterator<char*>(str), ios, '*', v); 70 std::string ex(str, iter.base()); 77 iter = f.put(output_iterator<char*>(str), ios, '*', v); 78 std::string ex(str, iter.base()); 85 iter = f.put(output_iterator<char*>(str), ios, '*', v); 86 std::string ex(str, iter.base()); 93 iter = f.put(output_iterator<char*>(str), ios, '*', v); 94 std::string ex(str, iter.base()); 103 iter = f.put(output_iterator<char*>(str), ios, '*', v) 3009 output_iterator<char*> iter; local 5970 output_iterator<char*> iter; local 8931 output_iterator<char*> iter; local 10718 output_iterator<char*> iter; local 11331 output_iterator<char*> iter; local 14293 output_iterator<char*> iter; local 17255 output_iterator<char*> iter; local 19043 output_iterator<char*> iter; local 20833 output_iterator<char*> iter; local 22623 output_iterator<char*> iter; local 24413 output_iterator<char*> iter; local 26219 output_iterator<char*> iter; local [all...] |
put_double.pass.cpp | 48 output_iterator<char*> iter; local 69 iter = f.put(output_iterator<char*>(str), ios, '*', v); 70 std::string ex(str, iter.base()); 77 iter = f.put(output_iterator<char*>(str), ios, '*', v); 78 std::string ex(str, iter.base()); 85 iter = f.put(output_iterator<char*>(str), ios, '*', v); 86 std::string ex(str, iter.base()); 93 iter = f.put(output_iterator<char*>(str), ios, '*', v); 94 std::string ex(str, iter.base()); 103 iter = f.put(output_iterator<char*>(str), ios, '*', v) 3009 output_iterator<char*> iter; local 5970 output_iterator<char*> iter; local 8932 output_iterator<char*> iter; local 10720 output_iterator<char*> iter; local 12510 output_iterator<char*> iter; local 14300 output_iterator<char*> iter; local 16090 output_iterator<char*> iter; local [all...] |
/external/chromium_org/ui/message_center/ |
notification_list.cc | 73 for (Notifications::iterator iter = notifications_.begin(); 74 iter != notifications_.end(); ++iter) { 75 Notification* notification = *iter; 93 Notifications::iterator iter = GetNotification(old_id); local 94 if (iter == notifications_.end()) 97 new_notification->CopyState(*iter); 102 if ((*iter)->priority() < new_notification->priority()) { 109 Notification* old = *iter; 110 notifications_.erase(iter); 135 Notifications::iterator iter = GetNotification(notification_id); local 144 Notifications::iterator iter = GetNotification(notification_id); local 154 Notifications::iterator iter = GetNotification(notification_id); local 167 Notifications::iterator iter = GetNotification(id); local 225 Notifications::iterator iter = GetNotification(id); local 242 Notifications::iterator iter = GetNotification(id); local 254 Notifications::iterator iter = GetNotification(id); local 261 Notifications::iterator iter = GetNotification(id); local 332 Notifications::iterator iter = GetNotification(notification->id()); local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/ |
inplace_merge_comp.pass.cpp | 12 // template<BidirectionalIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 13 // requires ShuffleIterator<Iter> 16 // inplace_merge(Iter first, Iter middle, Iter last, Compare comp); 35 template <class Iter> 46 std::inplace_merge(Iter(ia), Iter(ia+M), Iter(ia+N), std::greater<int>()) [all...] |
/external/chromium_org/chrome/test/automation/ |
automation_handle_tracker.cc | 30 for (HandleToObjectMap::iterator iter = handle_to_object_.begin(); 31 iter != handle_to_object_.end(); ++iter) { 32 iter->second->Invalidate(); 43 HandleToObjectMap::iterator iter = handle_to_object_.find(proxy->handle()); local 44 if (iter != handle_to_object_.end()) { 46 handle_to_object_.erase(iter); 55 HandleToObjectMap::iterator iter = handle_to_object_.find(handle); local 56 if (iter != handle_to_object_.end()) { 57 scoped_refptr<AutomationResourceProxy> proxy = iter->second 66 HandleToObjectMap::iterator iter = handle_to_object_.find(handle); local [all...] |
/external/chromium/net/spdy/ |
spdy_frame_builder.cc | 35 bool SpdyFrameBuilder::ReadUInt16(void** iter, uint16* result) const { 36 DCHECK(iter); 37 if (!*iter) 38 *iter = const_cast<char*>(buffer_); 40 if (!IteratorHasRoomFor(*iter, sizeof(*result))) 43 *result = ntohs(*(reinterpret_cast<uint16*>(*iter))); 45 UpdateIter(iter, sizeof(*result)); 49 bool SpdyFrameBuilder::ReadUInt32(void** iter, uint32* result) const { 50 DCHECK(iter); 51 if (!*iter) [all...] |
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
syscall_iterator_unittest.cc | 16 SyscallIterator iter(invalid_only); 17 uint32_t next = iter.Next(); 23 for (uint32_t last = next; !iter.Done(); last = next) { 24 next = iter.Next(); 33 SyscallIterator iter(false); 34 uint32_t next = iter.Next(); 43 SANDBOX_ASSERT((next = iter.Next()) == last + 1); 50 SyscallIterator iter(false); 51 uint32_t next = iter.Next(); 53 next = iter.Next() [all...] |
/external/chromium/chrome/browser/autofill/ |
form_group.cc | 32 for (FieldTypeSet::const_iterator iter = types.begin(); iter != types.end(); 33 ++iter) { 34 if (StringToLowerASCII(GetInfo(*iter)) != 35 StringToLowerASCII(form_group.GetInfo(*iter))) 55 for (FieldTypeSet::const_iterator iter = intersection.begin(); 56 iter != intersection.end(); ++iter) { 57 if (StringToLowerASCII(GetInfo(*iter)) != 58 StringToLowerASCII(form_group.GetInfo(*iter))) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
max_element_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 14 // Iter 15 // max_element(Iter first, Iter last, Compare comp); 23 template <class Iter> 25 test(Iter first, Iter last) 27 Iter i = std::max_element(first, last, std::greater<int>()); 30 for (Iter j = first; j != last; ++j [all...] |
min_element_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 14 // Iter 15 // min_element(Iter first, Iter last, Compare comp); 23 template <class Iter> 25 test(Iter first, Iter last) 27 Iter i = std::min_element(first, last, std::greater<int>()); 30 for (Iter j = first; j != last; ++j [all...] |
minmax_element_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 14 // pair<Iter, Iter> 15 // minmax_element(Iter first, Iter last, Compare comp); 23 template <class Iter> 25 test(Iter first, Iter last) 29 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/ |
rotate.pass.cpp | 12 // template<ShuffleIterator Iter> 13 // Iter 14 // rotate(Iter first, Iter middle, Iter last); 24 template <class Iter> 30 Iter r = std::rotate(Iter(ia), Iter(ia), Iter(ia)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
FlowThreadController.cpp | 63 for (RenderNamedFlowThreadList::iterator iter = m_renderNamedFlowThreadList->begin(); iter != m_renderNamedFlowThreadList->end(); ++iter) { 64 RenderNamedFlowThread* flowRenderer = *iter; 90 for (RenderNamedFlowThreadList::iterator iter = m_renderNamedFlowThreadList->begin(); iter != m_renderNamedFlowThreadList->end(); ++iter) { 91 RenderNamedFlowThread* flowRenderer = *iter; 100 for (RenderNamedFlowThreadList::iterator iter = m_renderNamedFlowThreadList->begin(); iter != m_renderNamedFlowThreadList->end(); ++iter) [all...] |
/external/icu4c/samples/uciter8/ |
uit_len8.c | 110 lenient8IteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin) { 116 if(iter->index<0) { 122 s=(const uint8_t *)iter->context; 124 limit=iter->start; /* count up to the UTF-8 index */ 134 iter->start=i; /* just in case setState() did not get us to a code point boundary */ 135 if(i==iter->limit) { 136 iter->length=index; /* in case it was <0 or wrong */ 138 if(iter->reservedField!=0) { 141 iter->index=index; 143 return iter->index [all...] |
/external/chromium_org/extensions/browser/ |
process_map.cc | 75 for (ItemSet::iterator iter = items_.begin(); iter != items_.end(); ) { 76 if (iter->process_id == process_id) { 77 items_.erase(iter++); 80 ++iter; 88 for (ItemSet::const_iterator iter = items_.begin(); iter != items_.end(); 89 ++iter) { 90 if (iter->process_id == process_id && iter->extension_id == extension_id [all...] |
/external/chromium_org/chrome/browser/ui/app_list/search/ |
tokenized_string_char_iterator_unittest.cc | 20 // Returns a string represents the current state of |iter|. The state string 24 std::string GetIterateState(const TokenizedStringCharIterator& iter) { 26 UTF16ToUTF8(base::string16(1, iter.Get())).c_str(), 27 iter.GetArrayPos(), 28 iter.IsFirstCharOfToken() ? "!" : ""); 31 void TestBeyondTheEnd(TokenizedStringCharIterator* iter) { 32 ASSERT_TRUE(iter->end()); 33 ASSERT_FALSE(iter->NextChar()); 34 ASSERT_FALSE(iter->NextToken()); 37 iter->Get() [all...] |
/external/pixman/pixman/ |
pixman-noop.c | 41 dest_write_back_direct (pixman_iter_t *iter) 43 iter->buffer += iter->image->bits.rowstride; 47 noop_get_scanline (pixman_iter_t *iter, const uint32_t *mask) 49 uint32_t *result = iter->buffer; 51 iter->buffer += iter->image->bits.rowstride; 57 get_scanline_null (pixman_iter_t *iter, const uint32_t *mask) 63 noop_src_iter_init (pixman_implementation_t *imp, pixman_iter_t *iter) 65 pixman_image_t *image = iter->image [all...] |