Home
last modified time | relevance | path

Searched refs:U (Results 1 – 25 of 1032) sorted by relevance

12345678910>>...42

/external/webkit/JavaScriptCore/wtf/
DRefPtrHashMap.h119 template<typename T, typename U, typename V, typename W, typename X>
120 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other) in swap()
125 template<typename T, typename U, typename V, typename W, typename X>
126 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const in size()
131 template<typename T, typename U, typename V, typename W, typename X>
132 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const in capacity()
137 template<typename T, typename U, typename V, typename W, typename X>
138 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const in isEmpty()
143 template<typename T, typename U, typename V, typename W, typename X>
144 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin() in begin()
[all …]
DHashMap.h142 template<typename T, typename U, typename V, typename W, typename X>
143 inline void HashMap<T, U, V, W, X>::swap(HashMap& other) in swap()
148 template<typename T, typename U, typename V, typename W, typename X>
149 inline int HashMap<T, U, V, W, X>::size() const in size()
154 template<typename T, typename U, typename V, typename W, typename X>
155 inline int HashMap<T, U, V, W, X>::capacity() const in capacity()
160 template<typename T, typename U, typename V, typename W, typename X>
161 inline bool HashMap<T, U, V, W, X>::isEmpty() const in isEmpty()
166 template<typename T, typename U, typename V, typename W, typename X>
167 inline typename HashMap<T, U, V, W, X>::iterator HashMap<T, U, V, W, X>::begin() in begin()
[all …]
DPassRefPtr.h65 template <typename U> PassRefPtr(const PassRefPtr<U>& o) : m_ptr(o.releaseRef()) { } in PassRefPtr()
69 template <class U>
70 PassRefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { T* ptr = m_ptr; refIfNotNull(ptr); } in PassRefPtr()
88 template <typename U> PassRefPtr& operator=(const PassRefPtr<U>&);
89 template <typename U> PassRefPtr& operator=(const RefPtr<U>&);
115 template <class U> NonNullPassRefPtr(const RefPtr<U>& o) in NonNullPassRefPtr()
128 template <class U> NonNullPassRefPtr(const NonNullPassRefPtr<U>& o) in NonNullPassRefPtr()
134 template <class U> NonNullPassRefPtr(const PassRefPtr<U>& o) in NonNullPassRefPtr()
154 …template <typename T> template <typename U> inline PassRefPtr<T>& PassRefPtr<T>::operator=(const R…
181 …template <typename T> template <typename U> inline PassRefPtr<T>& PassRefPtr<T>::operator=(const P…
[all …]
DListHashSet.h358 template<typename T, typename U>
359 inline ListHashSet<T, U>::ListHashSet() in ListHashSet()
366 template<typename T, typename U>
367 inline ListHashSet<T, U>::ListHashSet(const ListHashSet& other) in ListHashSet()
377 template<typename T, typename U>
378 inline ListHashSet<T, U>& ListHashSet<T, U>::operator=(const ListHashSet& other)
385 template<typename T, typename U>
386 inline void ListHashSet<T, U>::swap(ListHashSet& other) in swap()
394 template<typename T, typename U>
395 inline ListHashSet<T, U>::~ListHashSet() in ~ListHashSet()
[all …]
DRefPtr.h44 template <typename U> RefPtr(const PassRefPtr<U>&);
45 template <typename U> RefPtr(const NonNullPassRefPtr<U>&);
56 …template <typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { T* ptr = m_ptr; refIfNotNull(p… in RefPtr()
76 template <typename U> RefPtr& operator=(const RefPtr<U>&);
77 template <typename U> RefPtr& operator=(const PassRefPtr<U>&);
78 template <typename U> RefPtr& operator=(const NonNullPassRefPtr<U>&);
88 template <typename T> template <typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o) in RefPtr()
93 …template <typename T> template <typename U> inline RefPtr<T>::RefPtr(const NonNullPassRefPtr<U>& o) in RefPtr()
108 …template <typename T> template <typename U> inline RefPtr<T>& RefPtr<T>::operator=(const RefPtr<U>…
143 …template <typename T> template <typename U> inline RefPtr<T>& RefPtr<T>::operator=(const PassRefPt…
[all …]
DHashSet.h115 template<typename T, typename U, typename V>
116 inline void HashSet<T, U, V>::swap(HashSet& other) in swap()
121 template<typename T, typename U, typename V>
122 inline int HashSet<T, U, V>::size() const in size()
127 template<typename T, typename U, typename V>
128 inline int HashSet<T, U, V>::capacity() const in capacity()
133 template<typename T, typename U, typename V>
134 inline bool HashSet<T, U, V>::isEmpty() const in isEmpty()
139 template<typename T, typename U, typename V>
140 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::begin() in begin()
[all …]
DPassOwnPtr.h50 template <typename U> PassOwnPtr(const PassOwnPtr<U>& o) : m_ptr(o.release()) { } in PassOwnPtr()
70 template <typename U> PassOwnPtr& operator=(const PassOwnPtr<U>&);
96 …template <typename T> template <typename U> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(const P…
106 …template <typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, const PassOwnPtr<
111 …template <typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, const OwnPtr<U>& …
116 …template <typename T, typename U> inline bool operator==(const OwnPtr<T>& a, const PassOwnPtr<U>& …
121 template <typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, U* b)
126 template <typename T, typename U> inline bool operator==(T* a, const PassOwnPtr<U>& b)
131 …template <typename T, typename U> inline bool operator!=(const PassOwnPtr<T>& a, const PassOwnPtr<
136 …template <typename T, typename U> inline bool operator!=(const PassOwnPtr<T>& a, const OwnPtr<U>& …
[all …]
DRetainPtr.h65 …template <typename U> RetainPtr(const RetainPtr<U>& o) : m_ptr(o.get()) { if (PtrType ptr = m_ptr)… in RetainPtr()
80 template <typename U> RetainPtr& operator=(const RetainPtr<U>&);
82 template <typename U> RetainPtr& operator=(U*);
105 …template <typename T> template <typename U> inline RetainPtr<T>& RetainPtr<T>::operator=(const Ret…
146 … template <typename T> template <typename U> inline RetainPtr<T>& RetainPtr<T>::operator=(U* optr)
167 …template <typename T, typename U> inline bool operator==(const RetainPtr<T>& a, const RetainPtr<U>…
172 template <typename T, typename U> inline bool operator==(const RetainPtr<T>& a, U* b)
177 template <typename T, typename U> inline bool operator==(T* a, const RetainPtr<U>& b)
182 …template <typename T, typename U> inline bool operator!=(const RetainPtr<T>& a, const RetainPtr<U>…
187 template <typename T, typename U> inline bool operator!=(const RetainPtr<T>& a, U* b)
[all …]
DHashIterators.h165 template<typename T, typename U, typename V>
166 … bool operator==(const HashTableConstKeysIterator<T, U, V>& a, const HashTableConstKeysIterator<T,…
171 template<typename T, typename U, typename V>
172 … bool operator!=(const HashTableConstKeysIterator<T, U, V>& a, const HashTableConstKeysIterator<T,…
177 template<typename T, typename U, typename V>
178 …ol operator==(const HashTableConstValuesIterator<T, U, V>& a, const HashTableConstValuesIterator<T…
183 template<typename T, typename U, typename V>
184 …ol operator!=(const HashTableConstValuesIterator<T, U, V>& a, const HashTableConstValuesIterator<T…
189 template<typename T, typename U, typename V>
190 …inline bool operator==(const HashTableKeysIterator<T, U, V>& a, const HashTableKeysIterator<T, U, …
[all …]
DOwnPtr.h45 template <typename U> OwnPtr(const PassOwnPtr<U>& o);
75 template <typename U> OwnPtr& operator=(const PassOwnPtr<U>&);
83 template <typename T> template <typename U> inline OwnPtr<T>::OwnPtr(const PassOwnPtr<U>& o) in OwnPtr()
98 …template <typename T> template <typename U> inline OwnPtr<T>& OwnPtr<T>::operator=(const PassOwnPt…
113 template <typename T, typename U> inline bool operator==(const OwnPtr<T>& a, U* b)
118 template <typename T, typename U> inline bool operator==(T* a, const OwnPtr<U>& b)
123 template <typename T, typename U> inline bool operator!=(const OwnPtr<T>& a, U* b)
128 template <typename T, typename U> inline bool operator!=(T* a, const OwnPtr<U>& b)
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_klex.pkb7 …^,NU11$!.LE11\o/ $!.LE#U,11t$".LE#!U?#^,NU12$!WZ'LE12\o/ $!WZ'LE#U,12t$"WZ'LE#!U?#^,NU13
11 $!E08#WDN#U,14t$"E08WDN#!U?#^,NU15 $!E6NE#WDN15\o/$!E6NE#WDN#U,15t$"E6NEWDN#!U?#^,NU�16
13 $!^.-#WDN#U,16t$"^.-WDN#!U?#^,NU17
15 $!^IQ#WDN#U,17t$"^IQWDN#!U?#^,NU18 $!<[#WDN18\o/ $!<[#WDN#U,18t$"+<[WDN#!U?#^,NU19
18 $!+D8#TU,1h$"+>N#!G5N#A&U1m$"+>#N,#M0#!L9PN1t$"+>N#!U?#^,NU1tt
19U?#^,NU2$!WZ>2-er$!WZ<N#W0#"F.820 $!WZ<N#W0-201m$"WZ>#!G5N#A&U#"+>#N,#M0#!L9PN201t$"WZ>#!…
20U?#^,NU301tt$"AS>#!G5N#A&U#"+>N#!U?#^,NU30\o/$!AS>#T0-#TU,30t$"AS>#T0-#!U?#^,NU31$!+>N#5N#…
21 …#^,NU401tt$"EI8#!G5N#A&U#"+>N#!U?#^,NU40\o/$!E08#W0-#TU,40t$"E08#W0-#!U?#^,NU41$!+>N#5NU#E…
/external/chromium/third_party/icu/source/data/translit/
DJapaneseKana_Latin_BGN.txt24 ウ → u ; # KATAKANA LETTER U
26 オウ → ō ; # KATAKANA LETTER O + U
29 キョウ → kyō ; # KATAKANA LETTER KI + SMALL YO + U
30 キュウ → kyū ; # KATAKANA LETTER KI + SMALL YU + U
37 コウ → kō ; # KATAKANA LETTER KO + U
40 ショウ → shō ; # KATAKANA LETTER SI + SMALL YO + U
41 シュウ → shū ; # KATAKANA LETTER SI + SMALL YU + U
48 ソウ → sō ; # KATAKANA LETTER SO + U
51 チョウ → chō ; # KATAKANA LETTER TI + SMALL YO + U
52 チュウ → chū ; # KATAKANA LETTER TI + SMALL YU + U
[all …]
/external/icu4c/data/translit/
DJapaneseKana_Latin_BGN.txt24 ウ → u ; # KATAKANA LETTER U
26 オウ → ō ; # KATAKANA LETTER O + U
29 キョウ → kyō ; # KATAKANA LETTER KI + SMALL YO + U
30 キュウ → kyū ; # KATAKANA LETTER KI + SMALL YU + U
37 コウ → kō ; # KATAKANA LETTER KO + U
40 ショウ → shō ; # KATAKANA LETTER SI + SMALL YO + U
41 シュウ → shū ; # KATAKANA LETTER SI + SMALL YU + U
48 ソウ → sō ; # KATAKANA LETTER SO + U
51 チョウ → chō ; # KATAKANA LETTER TI + SMALL YO + U
52 チュウ → chū ; # KATAKANA LETTER TI + SMALL YU + U
[all …]
/external/libvpx/vpx_mem/memory_manager/
Dhmm_base.c18 void U(init)(U(descriptor) *desc) in U() function
27 void U(dll_remove)( in U() function
39 void U(into_free_collection)( in U() function
41 U(descriptor) *desc, in U()
48 U(avl_insert)((U(avl_avl) *) & (desc->avl_tree_root), ptr_rec_ptr); in U()
76 void *U(alloc_from_bin)( in U() function
78 U(descriptor) *desc, in U()
84 U(size_bau) n_baus) in U()
87 U(size_bau) rem_baus; in U()
102 U(dll_remove)(ptr_rec_ptr); in U()
[all …]
Dhmm_largest.c18 U(size_aau) U(largest_available)(U(descriptor) *desc) in U() function
20 U(size_bau) largest; in U()
34 U(avl_search)( in U()
35 (U(avl_avl) *) & (desc->avl_tree_root), in U()
36 (U(size_bau)) ~(U(size_bau)) 0, AVL_LESS))); in U()
42 register U(size_bau) lf_size; in U()
58 ((largest * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT)) - HEAD_AAUS) : in U()
Dhmm_resize.c18 int U(resize)(U(descriptor) *desc, void *mem, U(size_aau) n) in U() function
20 U(size_aau) i; in U()
72 U(out_of_free_collection)(desc, next_head_ptr); in U()
75 (head_record *) BAUS_FORWARD(head_ptr, (U(size_bau)) i); in U()
98 rem_head_ptr->previous_block_size = (U(size_bau)) n; in U()
99 rem_head_ptr->block_size = (U(size_bau)) i; in U()
107 U(into_free_collection)(desc, (head_record *)(desc->last_freed)); in U()
115 head_ptr->block_size = (U(size_bau)) n; in U()
116 next_head_ptr->previous_block_size = (U(size_bau)) i; in U()
Dhmm_alloc.c18 void *U(alloc)(U(descriptor) *desc, U(size_aau) n) in U() function
32 U(into_free_collection)(desc, (head_record *)(desc->last_freed)); in U()
51 U(avl_search)( in U()
52 (U(avl_avl) *) & (desc->avl_tree_root), (U(size_bau)) n, in U()
58 U(alloc_from_bin)(desc, ptr_rec_ptr, (U(size_bau)) n) : 0); in U()
/external/libvpx/vpx_mem/memory_manager/include/
Dhmm_intrnl.h25 #define U(BASE) HMM_UNIQUE(BASE) macro
29 ((U(size_bau)) ~ (((U(size_bau)) ~ (U(size_bau)) 0) >> 1))
33 (((char *) (PTR)) + ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
37 (((char *) (PTR)) - ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
41 AAUS_FORWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
45 AAUS_BACKWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
123 void U(into_free_collection)(U(descriptor) *desc, head_record *head_ptr);
125 void U(out_of_free_collection)(U(descriptor) *desc, head_record *head_ptr);
127 void *U(alloc_from_bin)(
128 U(descriptor) *desc, ptr_record *bin_front_ptr, U(size_bau) n_baus);
[all …]
/external/webkit/JavaScriptCore/API/
DJSRetainPtr.h51 …template <typename U> JSRetainPtr(const JSRetainPtr<U>& o) : m_ptr(o.get()) { if (T ptr = m_ptr) J… in JSRetainPtr()
66 template <typename U> JSRetainPtr& operator=(const JSRetainPtr<U>&);
68 template <typename U> JSRetainPtr& operator=(U*);
90 template <typename T> template <typename U> inline JSRetainPtr<T>& JSRetainPtr<T>::operator=(const …
121 template <typename T> template <typename U> inline JSRetainPtr<T>& JSRetainPtr<T>::operator=(U* opt…
142 template <typename T, typename U> inline bool operator==(const JSRetainPtr<T>& a, const JSRetainPtr…
147 template <typename T, typename U> inline bool operator==(const JSRetainPtr<T>& a, U* b)
152 template <typename T, typename U> inline bool operator==(T* a, const JSRetainPtr<U>& b)
157 template <typename T, typename U> inline bool operator!=(const JSRetainPtr<T>& a, const JSRetainPtr…
162 template <typename T, typename U> inline bool operator!=(const JSRetainPtr<T>& a, U* b)
[all …]
/external/webkit/JavaScriptCore/runtime/
DWeakGCPtr.h85 template <typename T, typename U> inline bool operator==(const WeakGCPtr<T>& a, const WeakGCPtr<U>&…
90 template <typename T, typename U> inline bool operator==(const WeakGCPtr<T>& a, U* b)
95 template <typename T, typename U> inline bool operator==(T* a, const WeakGCPtr<U>& b)
100 template <typename T, typename U> inline bool operator!=(const WeakGCPtr<T>& a, const WeakGCPtr<U>&…
105 template <typename T, typename U> inline bool operator!=(const WeakGCPtr<T>& a, U* b)
110 template <typename T, typename U> inline bool operator!=(T* a, const WeakGCPtr<U>& b)
115 template <typename T, typename U> inline WeakGCPtr<T> static_pointer_cast(const WeakGCPtr<U>& p) in static_pointer_cast()
120 template <typename T, typename U> inline WeakGCPtr<T> const_pointer_cast(const WeakGCPtr<U>& p) in const_pointer_cast()
/external/webkit/WebCore/platform/win/
DCOMPtr.h55 …template <typename U> COMPtr(QueryTag, const COMPtr<U>& ptr) : m_ptr(copyQueryInterfaceRef(ptr.get… in COMPtr()
81 template <typename U> COMPtr& operator=(const COMPtr<U>&);
84 template <typename U> void query(const COMPtr<U>& ptr) { query(ptr.get()); } in query()
88 template <typename U> HRESULT copyRefTo(U**);
117 template <typename T> template <typename U> inline HRESULT COMPtr<T>::copyRefTo(U** ptr) in copyRefTo()
146 template <typename T> template <typename U> inline COMPtr<T>& COMPtr<T>::operator=(const COMPtr<U>&…
169 template <typename T, typename U> inline bool operator==(const COMPtr<T>& a, const COMPtr<U>& b)
174 template <typename T, typename U> inline bool operator==(const COMPtr<T>& a, U* b)
179 template <typename T, typename U> inline bool operator==(T* a, const COMPtr<U>& b)
184 template <typename T, typename U> inline bool operator!=(const COMPtr<T>& a, const COMPtr<U>& b)
[all …]
/external/webkit/JavaScriptCore/wtf/gtk/
DGRefPtr.h46 …template <typename U> GRefPtr(const GRefPtr<U>& o) : m_ptr(o.get()) { if (T* ptr = m_ptr) refGPtr(… in GRefPtr()
69 template <typename U> GRefPtr& operator=(const GRefPtr<U>&);
115 template <typename T, typename U> inline bool operator==(const GRefPtr<T>& a, const GRefPtr<U>& b)
120 template <typename T, typename U> inline bool operator==(const GRefPtr<T>& a, U* b)
125 template <typename T, typename U> inline bool operator==(T* a, const GRefPtr<U>& b)
130 template <typename T, typename U> inline bool operator!=(const GRefPtr<T>& a, const GRefPtr<U>& b)
135 template <typename T, typename U> inline bool operator!=(const GRefPtr<T>& a, U* b)
140 template <typename T, typename U> inline bool operator!=(T* a, const GRefPtr<U>& b)
145 template <typename T, typename U> inline GRefPtr<T> static_pointer_cast(const GRefPtr<U>& p) in static_pointer_cast()
150 template <typename T, typename U> inline GRefPtr<T> const_pointer_cast(const GRefPtr<U>& p) in const_pointer_cast()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kpdf_lfz.pkb7 …�)<T��I�%DQ���RU� �IvZ�����陪����������T���U����H��V������7�X����…
17 …��R���DQ^�����o��U���险�)���%4�X���陫�p����P�����G����������]…
28 (�e�|#���9�-S������� ��S����Uv�*�N����k�S�� � S�����U����W��H�&?�d���…
66 /M���������v�  ���� J� ����U���8S����>^�E�?�dm��@��
93 …���N� �����Z��������<��������x���� v��<w��\险�������T����< ��U�$��������L���…
97 …U~���#�G<��� ���*���������'�������L����4]Q�P�5GY��U�:�C����5{��#�e�0…
99 7i\B���"�|��������N�1bP��<�*U��T7�"I��A%�iU��#�����x�-t� ��D�qqX���%@t…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kpdf_lfz.pkb80 …����BLL�����غI��������I������؁I�������b*�������k���H���������I�������3U������K��������K����…
81 …����,J������ة���L��������إ��d�d^������3��������"�������U�\��C�������eI����…
92 …����uN�������� 6��(�ئ� �c��K�����������ؒQ}������S�x���@�ON�������U�����I�������KI��…
132 }�����KI���������x �%Pr���������� ���x����=� �8�U����)�/�1��l��4�
146 ��(.���~��h|�W�q'���3��
147 �������� U�%�O���
158 U��8�
160 …[����m��@�ؐs�����K�������aJ������ة�������/�����ز�������E��U ��$�ب�4����K���…
168 �P���������������V����� �U����!�����ت������ ����
175 �� �I����������v�4�^a����!U������� J�������Y�����7J�������S���
[all …]
/external/srec/config/en.us/wave/dallas-8kHz/0302/
DS054.nwf16 ….���� ��������:�'���� ��$�Y�^�:�$� �+�/���������������������!�E�U�Y�B�,�>�?�@�D�����…
18 �-�F�G�������������S�b�h�k�U�!���"��.�E�Z�i�F�%�
24 …,�*��� ��������������%�O��������(�(�������������-�G�>�A�D�L�N�Z�n�U�0����� �)�T�p��r�…
25 �1�f�l�E�5�5�D�[�U�S�Y�S�U�T�O�E�R�n�g�e�o�U�%������,�G�B�D�j�Y�0�%����+�5�U�����Y�0������-�2�…
28 ������%�(����������+�1�&�!��*�J�f�����e�U�G����������
30 ��� ��������������������������>�N�S�F���������'��"�9�*� �����/�N�g�e�I�U�c�>������������…
40 …�����������������������������������������������������l������������������F�]�U�)�������������
67 ��'�� � �3�U�l�<�����������������������������������������������������������&����������������…

12345678910>>...42