| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/ | 
| binomial_heap_base_.hpp | 51 #include <ext/pb_ds/detail/cond_dealtor.hpp> 52 #include <ext/pb_ds/detail/type_utils.hpp>
 53 #include <ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp>
 57   namespace detail  namespace in namespace:__gnu_pbds
 196 #include <ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp>
 197 #include <ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp>
 198 #include <ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp>
 199 #include <ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp>
 200 #include <ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp>
 201 #include <ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/resize_policy/ | 
| hash_prime_size_policy_imp.hpp | 43 namespace detail  namespace 121 } // namespace detail
 140   const std::size_t* const p_upper = std::upper_bound(detail::g_a_sizes,
 141 		     detail::g_a_sizes + detail::num_distinct_sizes, n);
 143   if (p_upper == detail::g_a_sizes + detail::num_distinct_sizes)
 153   const std::size_t* p_lower = std::lower_bound(detail::g_a_sizes,
 154 		       detail::g_a_sizes + detail::num_distinct_sizes, n)
 [all...]
 | 
| /libcore/ojluni/src/main/java/java/io/ | 
| WriteAbortedException.java | 32  * exception that terminated the write can be found in the detail 39  * accessed via the public {@link #detail} field is now known as the
 58     public Exception detail;  field in class:WriteAbortedException
 69         detail = ex;
 77         if (detail == null)
 80             return super.getMessage() + "; " + detail.toString();
 91         return detail;
 
 | 
| /libcore/ojluni/src/main/java/java/lang/ | 
| ExceptionInInitializerError.java | 62      * <code>null</code> as its detail message string and with no saved 64      * A detail message is a String that describes this particular exception.
 73      * later retrieval by the {@link #getException()} method. The detail
 84      * Constructs an ExceptionInInitializerError with the specified detail
 85      * message string.  A detail message is a String that describes this
 86      * particular exception. The detail message string is saved for later
 91      * @param s the detail message
 
 | 
| /libcore/ojluni/src/main/java/java/util/concurrent/ | 
| CompletionException.java | 49      * Constructs a {@code CompletionException} with no detail message. 56      * Constructs a {@code CompletionException} with the specified detail
 60      * @param message the detail message
 67      * Constructs a {@code CompletionException} with the specified detail
 70      * @param  message the detail message
 80      * The detail message is set to {@code (cause == null ? null :
 82      * detail message of {@code cause}).
 
 | 
| ExecutionException.java | 51      * Constructs an {@code ExecutionException} with no detail message. 58      * Constructs an {@code ExecutionException} with the specified detail
 62      * @param message the detail message
 69      * Constructs an {@code ExecutionException} with the specified detail
 72      * @param  message the detail message
 82      * The detail message is set to {@code (cause == null ? null :
 84      * detail message of {@code cause}).
 
 | 
| RejectedExecutionException.java | 49      * Constructs a {@code RejectedExecutionException} with no detail message. 57      * specified detail message. The cause is not initialized, and may
 61      * @param message the detail message
 69      * specified detail message and cause.
 71      * @param  message the detail message
 81      * specified cause.  The detail message is set to {@code (cause ==
 83      * the class and detail message of {@code cause}).
 
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/ui/ | 
| DialogDetailsView.java | 137             for (Entry<Integer, Object> detail : details) { 139                 switch (detail.getKey()) {
 141                         double[] latlng = (double[]) detail.getValue();
 148                                 context, (Long) detail.getValue());
 152                         value = "1".equals(detail.getValue())
 159                                 (MediaDetails.FlashState) detail.getValue();
 170                         value = (String) detail.getValue();
 188                         if (detail.getValue().toString().equalsIgnoreCase("0")) {
 192                             value = toLocalInteger(detail.getValue());
 197                         if (detail.getValue().toString().equalsIgnoreCase("0"))
 [all...]
 | 
| /external/vulkan-validation-layers/libs/glm/gtc/ | 
| packing.inl | 33 #include "../detail/type_half.hpp" 36 namespace detail
 218 }//namespace detail
 330 		int16 Topack = detail::toFloat16(v);
 338 		return detail::toFloat32(*Unpack);
 344 			detail::toFloat16(v.x),
 345 			detail::toFloat16(v.y),
 346 			detail::toFloat16(v.z),
 347 			detail::toFloat16(v.w));
 359 			detail::toFloat32(Unpack.x),
 [all...]
 | 
| epsilon.inl | 128 	GLM_FUNC_QUALIFIER detail::tvec4<bool, P> epsilonEqual 130 		detail::tquat<T, P> const & x,
 131 		detail::tquat<T, P> const & y,
 135 		detail::tvec4<T, P> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
 136 		return lessThan(abs(v), detail::tvec4<T, P>(epsilon));
 140 	GLM_FUNC_QUALIFIER detail::tvec4<bool, P> epsilonNotEqual
 142 		detail::tquat<T, P> const & x,
 143 		detail::tquat<T, P> const & y,
 147 		detail::tvec4<T, P> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
 148 		return greaterThanEqual(abs(v), detail::tvec4<T, P>(epsilon))
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ | 
| cc_ht_map_.hpp | 43 #include <ext/pb_ds/detail/cond_dealtor.hpp> 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
 46 #include <ext/pb_ds/detail/types_traits.hpp>
 48 #include <ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp>
 50 #include <ext/pb_ds/detail/debug_map_base.hpp>
 59   namespace detail  namespace in namespace:__gnu_pbds
 98      *  @ingroup hash-detail
 128      *  Bases are: detail::hash_eq_fn, Resize_Policy, detail::ranged_hash_fn,
 129      *             detail::types_traits. (Optional: detail::debug_map_base.
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/ | 
| cc_ht_map_.hpp | 43 #include <ext/pb_ds/detail/cond_dealtor.hpp> 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
 46 #include <ext/pb_ds/detail/types_traits.hpp>
 48 #include <ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp>
 50 #include <ext/pb_ds/detail/debug_map_base.hpp>
 59   namespace detail  namespace in namespace:__gnu_pbds
 98      *  @ingroup hash-detail
 128      *  Bases are: detail::hash_eq_fn, Resize_Policy, detail::ranged_hash_fn,
 129      *             detail::types_traits. (Optional: detail::debug_map_base.
 [all...]
 | 
| /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtc/ | 
| packing.inl | 33 #include "../detail/type_half.hpp" 36 namespace detail
 218 }//namespace detail
 330 		int16 Topack = detail::toFloat16(v);
 338 		return detail::toFloat32(*Unpack);
 344 			detail::toFloat16(v.x),
 345 			detail::toFloat16(v.y),
 346 			detail::toFloat16(v.z),
 347 			detail::toFloat16(v.w));
 359 			detail::toFloat32(Unpack.x),
 [all...]
 | 
| epsilon.inl | 128 	GLM_FUNC_QUALIFIER detail::tvec4<bool, P> epsilonEqual 130 		detail::tquat<T, P> const & x,
 131 		detail::tquat<T, P> const & y,
 135 		detail::tvec4<T, P> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
 136 		return lessThan(abs(v), detail::tvec4<T, P>(epsilon));
 140 	GLM_FUNC_QUALIFIER detail::tvec4<bool, P> epsilonNotEqual
 142 		detail::tquat<T, P> const & x,
 143 		detail::tquat<T, P> const & y,
 147 		detail::tvec4<T, P> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
 148 		return greaterThanEqual(abs(v), detail::tvec4<T, P>(epsilon))
 [all...]
 | 
| /external/parameter-framework/asio-1.10.6/include/asio/detail/ | 
| reactive_socket_service.hpp | 2 // detail/reactive_socket_service.hpp 15 #include "asio/detail/config.hpp"
 22 #include "asio/detail/addressof.hpp"
 23 #include "asio/detail/buffer_sequence_adapter.hpp"
 24 #include "asio/detail/noncopyable.hpp"
 25 #include "asio/detail/reactive_null_buffers_op.hpp"
 26 #include "asio/detail/reactive_socket_accept_op.hpp"
 27 #include "asio/detail/reactive_socket_connect_op.hpp"
 28 #include "asio/detail/reactive_socket_recvfrom_op.hpp"
 29 #include "asio/detail/reactive_socket_sendto_op.hpp
 40 namespace detail {  namespace in namespace:asio
 [all...]
 | 
| /packages/apps/Camera2/src/com/android/camera/ui/ | 
| DetailsDialog.java | 93             for (Entry<Integer, Object> detail : details) { 95                 switch (detail.getKey()) {
 98                                 context, (Long) detail.getValue());
 102                         value = "1".equals(detail.getValue())
 109                                 (MediaDetails.FlashState) detail.getValue();
 120                         value = (String) detail.getValue();
 138                         if (detail.getValue().toString().equalsIgnoreCase("0")) {
 142                             value = toLocalInteger(detail.getValue());
 147                         if (detail.getValue().toString().equalsIgnoreCase("0")) {
 151                             value = toLocalInteger(detail.getValue())
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ | 
| container_base_dispatch.hpp | 66 #include <ext/pb_ds/detail/list_update_map_/lu_map_.hpp> 67 #include <ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp>
 68 #include <ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp>
 69 #include <ext/pb_ds/detail/splay_tree_/splay_tree_.hpp>
 70 #include <ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp>
 71 #include <ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp>
 72 #include <ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp>
 73 #include <ext/pb_ds/detail/pat_trie_/pat_trie_.hpp>
 83 #include <ext/pb_ds/detail/list_update_map_/lu_map_.hpp>
 84 #include <ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
 103 namespace detail  namespace in namespace:__gnu_pbds
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ | 
| container_base_dispatch.hpp | 66 #include <ext/pb_ds/detail/list_update_map_/lu_map_.hpp> 67 #include <ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp>
 68 #include <ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp>
 69 #include <ext/pb_ds/detail/splay_tree_/splay_tree_.hpp>
 70 #include <ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp>
 71 #include <ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp>
 72 #include <ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp>
 73 #include <ext/pb_ds/detail/pat_trie_/pat_trie_.hpp>
 83 #include <ext/pb_ds/detail/list_update_map_/lu_map_.hpp>
 84 #include <ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
 103 namespace detail  namespace in namespace:__gnu_pbds
 [all...]
 | 
| /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/ | 
| SoapFault12.java | 47     public Node Detail; 66         this.detail = this.Detail;
 88             } else if (name.equals("Detail")) {
 89                 this.Detail = new Node();
 90                 this.Detail.parse(parser);
 126         if (this.Detail != null) {
 127             xw.startTag(SoapEnvelope.ENV2003, "Detail");
 128             this.Detail.write(xw);
 129             xw.endTag(SoapEnvelope.ENV2003, "Detail");
 [all...]
 | 
| /external/mesa3d/src/gallium/state_trackers/clover/core/ | 
| object.hpp | 62    namespace detail {  namespace in namespace:clover 140    /// specialization of the detail::descriptor_traits template.  The
 145    typename detail::descriptor_traits<T, D>::object_type &
 147       detail::descriptor_traits<T, D>::validate(d);
 150          typename detail::descriptor_traits<T, D>::object_type &>(*d);
 160    typename detail::descriptor_traits<T, D>::object_type *
 163          detail::descriptor_traits<T, D>::validate(d);
 166          typename detail::descriptor_traits<T, D>::object_type *>(d);
 194    ref_vector<typename detail::descriptor_traits<T, D>::object_type>
 196       detail::descriptor_traits<T, D>::validate_list(ds, n)
 [all...]
 | 
| /external/vulkan-validation-layers/libs/glm/gtx/ | 
| integer.inl | 41 namespace detail 103 	GLM_FUNC_QUALIFIER detail::tvec2<T, P> factorial(
 104 		detail::tvec2<T, P> const & x)
 106 		return detail::tvec2<T, P>(
 112 	GLM_FUNC_QUALIFIER detail::tvec3<T, P> factorial(
 113 		detail::tvec3<T, P> const & x)
 115 		return detail::tvec3<T, P>(
 122 	GLM_FUNC_QUALIFIER detail::tvec4<T, P> factorial(
 123 		detail::tvec4<T, P> const & x)
 125 		return detail::tvec4<T, P>
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/ | 
| rb_tree_.hpp | 41 #include <ext/pb_ds/detail/standard_policies.hpp> 49   namespace detail  namespace in namespace:__gnu_pbds
 74      *  @ingroup branch-detail
 234 #include <ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp>
 235 #include <ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp>
 236 #include <ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp>
 237 #include <ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp>
 238 #include <ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp>
 239 #include <ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp>
 247   } // namespace detail
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/ | 
| priority_queue.hpp | 46 #include <ext/pb_ds/detail/priority_queue_base_dispatch.hpp> 47 #include <ext/pb_ds/detail/standard_policies.hpp>
 58    *  @defgroup heap-detail Base and Policy Classes
 75    *  Base choices are: detail::binary_heap, detail::binomial_heap,
 76    *                    detail::pairing_heap, detail::rc_binomial_heap,
 77    *                    detail::thin_heap.
 84   : public detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc, Tag>::type
 95     typedef typename detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rb_tree_map_/ | 
| rb_tree_.hpp | 41 #include <ext/pb_ds/detail/standard_policies.hpp> 49   namespace detail  namespace in namespace:__gnu_pbds
 74      *  @ingroup branch-detail
 234 #include <ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp>
 235 #include <ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp>
 236 #include <ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp>
 237 #include <ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp>
 238 #include <ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp>
 239 #include <ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp>
 247   } // namespace detail
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/ | 
| priority_queue.hpp | 46 #include <ext/pb_ds/detail/priority_queue_base_dispatch.hpp> 47 #include <ext/pb_ds/detail/standard_policies.hpp>
 58    *  @defgroup heap-detail Base and Policy Classes
 75    *  Base choices are: detail::binary_heap, detail::binomial_heap,
 76    *                    detail::pairing_heap, detail::rc_binomial_heap,
 77    *                    detail::thin_heap.
 84   : public detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc, Tag>::type
 95     typedef typename detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc
 [all...]
 |