Home
last modified time | relevance | path

Searched refs:iter_type (Results 1 – 11 of 11) sorted by relevance

/external/libcxx/include/
Dlocale712 typedef _InputIterator iter_type;
719 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
726 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
733 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
740 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
747 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
754 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
761 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
768 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
775 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dhandler_type_requirements.hpp123iter_type) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, iter_type))… argument
125iter_type) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, iter_type))… argument
149 #define ASIO_COMPOSED_CONNECT_HANDLER_CHECK( handler_type, handler, iter_type) typedef int …
151 #define ASIO_RESOLVE_HANDLER_CHECK( handler_type, handler, iter_type) typedef int ASIO_UNUS…
/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::num_put<char>::iter_type, std::ostreambuf_iterator<char> >::value… in main()
31 …static_assert((std::is_same<std::num_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >:… in main()
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::time_put<char>::iter_type, std::ostreambuf_iterator<char> >::valu… in main()
31 …static_assert((std::is_same<std::time_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >… in main()
/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::num_get<char>::iter_type, std::istreambuf_iterator<char> >::value… in main()
31 …static_assert((std::is_same<std::num_get<wchar_t>::iter_type, std::istreambuf_iterator<wchar_t> >:… in main()
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get/
Dtypes.pass.cpp39 …static_assert((std::is_same<std::time_get<char>::iter_type, std::istreambuf_iterator<char> >::valu… in main()
40 …static_assert((std::is_same<std::time_get<wchar_t>::iter_type, std::istreambuf_iterator<wchar_t> >… in main()
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::money_get<char>::iter_type, std::istreambuf_iterator<char> >::val… in main()
31 …static_assert((std::is_same<std::money_get<wchar_t>::iter_type, std::istreambuf_iterator<wchar_t> … in main()
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::money_put<char>::iter_type, std::ostreambuf_iterator<char> >::val… in main()
31 …static_assert((std::is_same<std::money_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> … in main()
/external/dbus/dbus/
Ddbus-message.c129 dbus_uint32_t iter_type : 3; /**< whether this is a reader or writer iter */ member
733 if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_READER) in _dbus_message_iter_check()
743 else if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER) in _dbus_message_iter_check()
1948 int iter_type) in _dbus_message_iter_init_common() argument
1959 real->iter_type = iter_type; in _dbus_message_iter_init_common()
2022 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE); in dbus_message_iter_has_next()
2041 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE); in dbus_message_iter_next()
2066 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE); in dbus_message_iter_get_arg_type()
2085 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, DBUS_TYPE_INVALID); in dbus_message_iter_get_element_type()
2379 _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER); in _dbus_message_iter_open_signature()
[all …]
/external/mesa3d/src/glsl/
Dlist.h277 #define foreach_iter(iter_type, iter, container) \ argument
278 for (iter_type iter = (container) . iterator(); iter.has_next(); iter.next())
/external/clang/test/Index/
Dannotate-nested-name-specifier.cpp100 typedef typename outer_alias::inner::vector<type>::iterator iter_type; typedef