/external/webkit/Source/WebCore/html/parser/ |
D | HTMLEntityNames.in | 1 "AElig;","U+000C6" 2 "AElig","U+000C6" 3 "AMP;","U+00026" 4 "AMP","U+00026" 5 "Aacute;","U+000C1" 6 "Aacute","U+000C1" 7 "Abreve;","U+00102" 8 "Acirc;","U+000C2" 9 "Acirc","U+000C2" 10 "Acy;","U+00410" [all …]
|
/external/webkit/LayoutTests/fast/encoding/ |
D | char-decoding-expected.txt | 6 PASS decode('UTF-8', '%E2%88%9A') is 'U+221A' 7 PASS decode('gb2312', '%A3%A0') is 'U+3000' 8 PASS decode('gb_2312-80', '%A3%A0') is 'U+3000' 9 PASS decode('chinese', '%A3%A0') is 'U+3000' 10 PASS decode('gbk', '%A3%A0') is 'U+3000' 11 PASS decode('gb18030', '%A3%A0') is 'U+3000' 12 PASS decode('EUC-CN', '%A3%A0') is 'U+3000' 13 PASS decode('Shift_JIS', '%82%d0') is 'U+3072' 14 PASS decode('shift-jis', '%82%d0') is 'U+3072' 15 PASS decode('korean', '%A2%E6') is 'U+20AC' [all …]
|
/external/clang/test/CodeGenCXX/ |
D | cxx11-unrestricted-union.cpp | 10 union U { union 11 U(); 12 U(const U &); 13 U(U &&); 14 U &operator=(const U&); 15 U &operator=(U&&); 16 ~U(); 23 U::U() {} in U() function in U 24 U::U(const U&) {} in U() function in U 25 U::U(U&&) {} in U() function in U [all …]
|
/external/clang/test/SemaCXX/ |
D | alias-template.cpp | 4 template<typename U> using T = int; 5 template<typename U> using T = int; 6 template<typename U> using T = T<U>; 10 …template<typename U> using A = void(int n = 0); // expected-error {{default arguments can only be … 11 …template<typename U> using B = inline void(int n); // expected-error {{type name does not allow fu… 12 …template<typename U> using C = virtual void(int n); // expected-error {{type name does not allow f… 13 …template<typename U> using D = explicit void(int n); // expected-error {{type name does not allow … 14 …template<typename U> using E = void(int n) throw(); // expected-error {{exception specifications a… 15 …template<typename U> using F = void(*)(int n) &&; // expected-error {{pointer to function type can… 16 …template<typename U> using G = __thread void(int n); // expected-error {{type name does not allow … [all …]
|
D | warn-unused-parameters.cpp | 7 template<typename U> U f3(U x); 8 template<typename U> U f4(U x); 9 template<typename U> U f5(U); 15 template<typename T> template<typename U> U X<T>::f3(U x) { return x; } in f3() 16 template<typename T> template<typename U> U X<T>::f4(U) { return U(); } in f4() argument 17 template<typename T> template<typename U> U X<T>::f5(U x) { return U(); } // expected-warning{{unus… in f5()
|
/external/clang/test/SemaTemplate/ |
D | dependent-type-identity.cpp | 12 template<typename U> 14 typedef U* type; 26 template<typename T, typename U> 29 typedef U U_type; 32 void f0(U); 36 void f1(U*); 40 void f2(X0<U>*); 44 void f3(X0<U>*); 47 void f4(typename T::template apply<U>*); // expected-note{{previous}} 48 void f4(typename U::template apply<U>*); [all …]
|
D | instantiate-member-template.cpp | 5 template<typename U> T f0(U); 6 template<typename U> U& f1(T*, U); // expected-error{{pointer to a reference}} \ 26 template<typename U> 28 U x; 32 template<typename U> 34 U x; // expected-error{{void}} 38 template<typename U> 41 U z; // expected-error{{void}} 45 template<typename U> 47 void f0(T t, U u) { // expected-note{{passing argument to parameter 't' here}} in f0() [all …]
|
D | temp_func_order.cpp | 13 template<typename T, typename U> 14 int &f1(T, U); 25 template<typename T, typename U> 31 template<typename T, typename U> 32 float &f2(A<T, U>); 43 template<typename T, typename U> 44 int &f3(T*, U); // expected-note{{candidate}} 46 template<typename T, typename U> 47 float &f3(T, U*); // expected-note{{candidate}} 66 template<typename T, typename U> [all …]
|
D | alias-templates.cpp | 8 template<typename U> using E = typename A<U>::template C<A<T>>; 9 template<typename U> using F = A<E<U>>; 10 template<typename U> using G = C<F<U>>; 29 template<typename U> using rebind_thing = typename thing::template rebind<U>; 30 template<typename U> using rebind = traits<rebind_thing<U>>; 46 template<typename U> using rebind = thing<U>; 73 template<typename T> using U = int; typedef 76 …void f(U<T> i, U<Ts> ...is) { // expected-error {{type 'U<Ts>' (aka 'int') of function parameter p… in f() 82 S(U<Ts>...ts); // expected-error {{does not contain any unexpanded parameter packs}} 88 …Hidden1(typename T::template U<Ts> ...ts); // expected-error{{type 'typename Hide::U<Ts>' (aka 'in… [all …]
|
/external/webkit/Source/WebCore/html/canvas/ |
D | CheckedInt.h | 205 template<typename T, typename U, 207 bool is_U_signed = integer_traits<U>::is_signed> 210 template<typename T, typename U> 211 struct is_in_range_impl<T, U, true, true> 213 static T run(U x) 220 template<typename T, typename U> 221 struct is_in_range_impl<T, U, false, false> 223 static T run(U x) 229 template<typename T, typename U> 230 struct is_in_range_impl<T, U, true, false> [all …]
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | RefPtrHashMap.h | 123 template<typename T, typename U, typename V, typename W, typename X> 124 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other) in swap() 129 template<typename T, typename U, typename V, typename W, typename X> 130 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const in size() 135 template<typename T, typename U, typename V, typename W, typename X> 136 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const in capacity() 141 template<typename T, typename U, typename V, typename W, typename X> 142 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const in isEmpty() 147 template<typename T, typename U, typename V, typename W, typename X> 148 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin() in begin() [all …]
|
D | HashMap.h | 144 template<typename T, typename U, typename V, typename W, typename X> 145 inline void HashMap<T, U, V, W, X>::swap(HashMap& other) in swap() 150 template<typename T, typename U, typename V, typename W, typename X> 151 inline int HashMap<T, U, V, W, X>::size() const in size() 156 template<typename T, typename U, typename V, typename W, typename X> 157 inline int HashMap<T, U, V, W, X>::capacity() const in capacity() 162 template<typename T, typename U, typename V, typename W, typename X> 163 inline bool HashMap<T, U, V, W, X>::isEmpty() const in isEmpty() 168 template<typename T, typename U, typename V, typename W, typename X> 169 inline typename HashMap<T, U, V, W, X>::iterator HashMap<T, U, V, W, X>::begin() in begin() [all …]
|
D | PassRefPtr.h | 72 template<typename U> PassRefPtr(const PassRefPtr<U>& o) : m_ptr(o.leakRef()) { } in PassRefPtr() 76 template<typename U> PassRefPtr(const RefPtr<U>&); 97 template<typename U> PassRefPtr& operator=(const PassRefPtr<U>&); 98 template<typename U> PassRefPtr& operator=(const RefPtr<U>&); 129 template<typename U> NonNullPassRefPtr(const RefPtr<U>& o) in NonNullPassRefPtr() 142 template<typename U> NonNullPassRefPtr(const NonNullPassRefPtr<U>& o) in NonNullPassRefPtr() 148 template<typename U> NonNullPassRefPtr(const PassRefPtr<U>& o) in NonNullPassRefPtr() 171 template<typename T> template<typename U> inline PassRefPtr<T>::PassRefPtr(const RefPtr<U>& o) in PassRefPtr() 192 …template<typename T> template<typename U> inline PassRefPtr<T>& PassRefPtr<T>::operator=(const Ref… 219 …template<typename T> template<typename U> inline PassRefPtr<T>& PassRefPtr<T>::operator=(const Pas… [all …]
|
D | RefPtr.h | 45 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); } in RefPtr() 48 template<typename U> RefPtr(const PassRefPtr<U>&); 49 template<typename U> RefPtr(const NonNullPassRefPtr<U>&); 81 template<typename U> RefPtr& operator=(const RefPtr<U>&); 82 template<typename U> RefPtr& operator=(const PassRefPtr<U>&); 83 template<typename U> RefPtr& operator=(const NonNullPassRefPtr<U>&); 93 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o) in RefPtr() 98 … template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const NonNullPassRefPtr<U>& o) in RefPtr() 120 …template<typename T> template<typename U> inline RefPtr<T>& RefPtr<T>::operator=(const RefPtr<U>& … 155 …template<typename T> template<typename U> inline RefPtr<T>& RefPtr<T>::operator=(const PassRefPtr<… [all …]
|
D | PassOwnPtr.h | 56 template<typename U> PassOwnPtr(const PassOwnPtr<U>& o) : m_ptr(o.leakPtr()) { } in PassOwnPtr() 78 template<typename U> PassOwnPtr& operator=(const PassOwnPtr<U>&); 80 template<typename U> friend PassOwnPtr<U> adoptPtr(U*); 131 …template<typename T> template<typename U> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(const Pas… 141 …template<typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, const PassOwnPtr<U… 146 …template<typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, const OwnPtr<U>& b… 151 …template<typename T, typename U> inline bool operator==(const OwnPtr<T>& a, const PassOwnPtr<U>& b… 156 template<typename T, typename U> inline bool operator==(const PassOwnPtr<T>& a, U* b) 161 template<typename T, typename U> inline bool operator==(T* a, const PassOwnPtr<U>& b) 166 …template<typename T, typename U> inline bool operator!=(const PassOwnPtr<T>& a, const PassOwnPtr<U… [all …]
|
D | PassOwnArrayPtr.h | 54 template<typename U> PassOwnArrayPtr(const PassOwnArrayPtr<U>& o) : m_ptr(o.leakPtr()) { } in PassOwnArrayPtr() 80 template<typename U> PassOwnArrayPtr& operator=(const PassOwnArrayPtr<U>&); 82 template<typename U> friend PassOwnArrayPtr<U> adoptArrayPtr(U*); 133 …late<typename T> template<typename U> inline PassOwnArrayPtr<T>& PassOwnArrayPtr<T>::operator=(con… 143 template<typename T, typename U> inline bool operator==(const PassOwnArrayPtr<T>& a, const PassOwnA… 148 template<typename T, typename U> inline bool operator==(const PassOwnArrayPtr<T>& a, const OwnArray… 153 template<typename T, typename U> inline bool operator==(const OwnArrayPtr<T>& a, const PassOwnArray… 158 template<typename T, typename U> inline bool operator==(const PassOwnArrayPtr<T>& a, U* b) 163 template<typename T, typename U> inline bool operator==(T* a, const PassOwnArrayPtr<U>& b) 168 template<typename T, typename U> inline bool operator!=(const PassOwnArrayPtr<T>& a, const PassOwnA… [all …]
|
D | ListHashSet.h | 375 template<typename T, size_t inlineCapacity, typename U> 376 inline ListHashSet<T, inlineCapacity, U>::ListHashSet() in ListHashSet() 383 template<typename T, size_t inlineCapacity, typename U> 384 inline ListHashSet<T, inlineCapacity, U>::ListHashSet(const ListHashSet& other) in ListHashSet() 394 template<typename T, size_t inlineCapacity, typename U> 395 …inline ListHashSet<T, inlineCapacity, U>& ListHashSet<T, inlineCapacity, U>::operator=(const ListH… 402 template<typename T, size_t inlineCapacity, typename U> 403 inline void ListHashSet<T, inlineCapacity, U>::swap(ListHashSet& other) in swap() 411 template<typename T, size_t inlineCapacity, typename U> 412 inline ListHashSet<T, inlineCapacity, U>::~ListHashSet() in ~ListHashSet() [all …]
|
D | HashSet.h | 112 template<typename T, typename U, typename V> 113 inline void HashSet<T, U, V>::swap(HashSet& other) in swap() 118 template<typename T, typename U, typename V> 119 inline int HashSet<T, U, V>::size() const in size() 124 template<typename T, typename U, typename V> 125 inline int HashSet<T, U, V>::capacity() const in capacity() 130 template<typename T, typename U, typename V> 131 inline bool HashSet<T, U, V>::isEmpty() const in isEmpty() 136 template<typename T, typename U, typename V> 137 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::begin() const in begin() [all …]
|
/external/valgrind/main/coregrind/m_demangle/ |
D | safe-ctype.c | 149 #define U (const unsigned short) (up|is |pr) /* upper case letter */ macro 175 P, XU, XU, XU, XU, XU, XU, U, /* @ A B C D E F G */ 176 U, U, U, U, U, U, U, U, /* H I J K L M N O */ 177 U, U, U, U, U, U, U, U, /* P Q R S T U V W */ 178 U, U, U, P, P, P, P, _, /* X Y Z [ \ ] ^ _ */
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/ |
D | p1.cpp | 2 template<typename T, typename U> // expected-note{{previous template}} 10 void f0(const T&, const U&); 24 template<typename T, typename U> 25 void X0<T, U>::f0(const T&, const U&) { // expected-note{{previous definition}} in f0() argument 49 template<typename T, typename U> 50 void X0<T, U>::f0(const T&, const U&) { // expected-error{{redefinition}} in f0() argument 54 template<typename T, typename U> 55 X0<T, U>::X0(int x) : value(x) { } in X0() 57 template<typename T, typename U> 58 X0<T, U>::~X0() { } in ~X0() [all …]
|
/external/llvm/include/llvm/ |
D | OperandTraits.h | 32 static Use *op_begin(SubClass* U) { in op_begin() 33 return reinterpret_cast<Use*>(U) - ARITY; in op_begin() 35 static Use *op_end(SubClass* U) { in op_end() 36 return reinterpret_cast<Use*>(U); in op_end() 52 static unsigned operands(const User *U) { in operands() 53 return U->getNumOperands(); in operands() 67 static Use *op_begin(SubClass* U) { in op_begin() 68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin() 70 static Use *op_end(SubClass* U) { in op_end() 71 return reinterpret_cast<Use*>(U); in op_end() [all …]
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_klex.pkb | 7 …^,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?#^,NU16 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 19 …U?#^,NU2$!WZ>2-er$!WZ<N#W0#"F.820$!WZ<N#W0-201m$"WZ>#!G5N#A&U#"+>#N,#M0#!L9PN201t$"WZ>#!… 20 …U?#^,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/libvpx/vpx_mem/memory_manager/include/ |
D | hmm_intrnl.h | 25 #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/libvpx/vpx_mem/memory_manager/ |
D | hmm_base.c | 18 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 …]
|
/external/icu4c/data/translit/ |
D | JapaneseKana_Latin_BGN.txt | 24 ウ → 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 …]
|