/external/bluetooth/glib/tests/ |
D | run-collate-tests.sh | 21 for I in ${srcdir:-.}/collate/*.in; do 24 ./unicode-collate $I > collate.out 28 diff collate.out ${srcdir:-.}/collate/$name.unicode || 30 ./unicode-collate --key $I > collate.out 31 diff collate.out ${srcdir:-.}/collate/$name.unicode || 33 ./unicode-collate --file $I > collate.out 34 diff collate.out ${srcdir:-.}/collate/$name.file ||
|
D | Makefile.am | 72 unicode-collate \ 146 test_scripts = run-markup-tests.sh run-collate-tests.sh run-bookmark-test.sh 148 test_script_support_programs = markup-test unicode-collate bookmarkfile-test 233 mkdir $(distdir)/collate; \ 234 for f in $(srcdir)/collate/* ; do \ 235 if test -f $$f; then cp $$f $(distdir)/collate; fi; done 245 collate.out
|
D | .gitignore | 9 collate.out 69 unicode-collate
|
D | makefile.msc.in | 18 unicode-collate.exe
|
/external/stlport/stlport/stl/ |
D | _collate.h | 39 template <class _CharT> class collate {}; 43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet { 48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet() 65 ~collate(); 72 collate(const collate<char>&); 73 collate<char>& operator =(const collate<char>&); 79 class _STLP_CLASS_DECLSPEC collate<wchar_t> : public locale::facet { 84 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet() 101 ~collate(); 108 collate(const collate<wchar_t>&); [all …]
|
D | _iosfwd.h | 100 template <class _CharT> class collate; variable 105 _STLP_TEMPLATE_NULL class collate<char>; variable 111 _STLP_TEMPLATE_NULL class collate<wchar_t>; variable
|
D | _locale.h | 109 _STLP_STATIC_CONSTANT(category, collate = 0x010); 115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
|
/external/stlport/src/ |
D | collate.cpp | 26 collate<char>::~collate() {} in ~collate() 28 int collate<char>::do_compare(const char* low1, const char* high1, in do_compare() 32 string collate<char>::do_transform(const char* low, const char* high) const in do_transform() 35 long collate<char>::do_hash(const char* low, const char* high) const { in do_hash() 45 collate<wchar_t>::~collate() {} in ~collate() 48 collate<wchar_t>::do_compare(const wchar_t* low1, const wchar_t* high1, in do_compare() 52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const in do_transform() 55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const { in do_hash()
|
D | locale_impl.cpp | 356 this->insert(i2, collate<char>::id); in insert_collate_facets() 358 this->insert(i2, collate<wchar_t>::id); in insert_collate_facets() 398 this->insert(col, collate<char>::id); in insert_collate_facets() 400 if (wcol) this->insert(wcol, collate<wchar_t>::id); in insert_collate_facets() 632 new collate<char>(1), in make_classic_locale() 646 new collate<wchar_t>(1), in make_classic_locale() 677 locale::id collate<char>::id = { 1 }; 686 locale::id collate<wchar_t>::id = { 14 };
|
D | locale.cpp | 201 …L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_na… in _Stl_loc_combine_names_aux() 278 if (c & locale::collate) in locale() 307 if (c & collate) { in locale() 308 impl->insert( i2, _STLP_STD::collate<char>::id); in locale() 310 impl->insert( i2, _STLP_STD::collate<wchar_t>::id); in locale() 435 const locale::category locale::collate; member in locale
|
D | facets_byname.cpp | 185 : collate<char>(refs) { in collate_byname() 232 : collate<wchar_t>(refs) { in collate_byname()
|
/external/stlport/test/unit/ |
D | collate_facets_test.cpp | 19 CPPUNIT_ASSERT( has_facet<collate<char> >(locale::classic()) ); in collate_facet() 20 collate<char> const& col = use_facet<collate<char> >(locale::classic()); in collate_facet() 39 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) ); in collate_facet() 40 collate<char> const& col = use_facet<collate<char> >(loc); in collate_facet() 55 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) ); in collate_facet() 56 collate<char> const& col = use_facet<collate<char> >(loc); in collate_facet() 86 CPPUNIT_ASSERT( has_facet<collate<wchar_t> >(loc) ); in collate_facet() 87 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); in collate_facet() 103 CPPUNIT_ASSERT( has_facet<collate<wchar_t> >(loc) ); in collate_facet() 104 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); in collate_facet() [all …]
|
/external/webkit/JavaScriptCore/wtf/unicode/ |
D | Collator.h | 52 Result collate(const ::UChar*, size_t, const ::UChar*, size_t) const;
|
D | CollatorDefault.cpp | 54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhs… in collate() function in WTF::Collator
|
/external/webkit/WebCore/xml/ |
D | XSLTUnicodeSort.cpp | 201 … tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length()); in xsltUnicodeSortFunction() 256 … tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length()); in xsltUnicodeSortFunction()
|
/external/stlport/ |
D | Android.mk | 18 src/collate.cpp \
|
/external/stlport/stlport/using/ |
D | locale | 43 using _STLP_NEW_IO_NAMESPACE::collate;
|
/external/webkit/JavaScriptCore/wtf/unicode/icu/ |
D | CollatorICU.cpp | 93 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhs… in collate() function in WTF::Collator
|
/external/bluetooth/glib/ |
D | ChangeLog.pre-2-10 | 491 * tests/run-collate-tests.sh: use LC_ALL instead of LC_COLLATE, to 513 * tests/run-collate-tests.sh: export LC_COLLATE so it takes. 643 * tests/run-collate-test.sh: set LC_COLLATE, not LANG, to be sure 658 * tests/run-collate-tests.sh: Run the collation tests explicitly 1116 * tests/collate/*: Inputs and expected outputs for collation tests. 1118 * tests/run-collate-tests.sh: Script to run collation tests. 1120 * tests/unicode-collate.c (main): Rework slightly to make
|
D | ChangeLog.pre-2-12 | 590 * tests/run-collate-tests.sh: Fix up shell script.
|
D | ChangeLog.pre-2-14 | 1590 * tests/run-collate-tests.sh: 1591 * tests/unicode-collate.c: Silently skip tests if
|
/external/stlport/src/c_locale_dummy/ |
D | c_locale_dummy.c | 186 struct _Locale_name_hint* _Locale_get_collate_hint(struct _Locale_collate* collate) in _Locale_get_collate_hint() argument
|
/external/stlport/src/c_locale_glibc/ |
D | c_locale_glibc2.c | 271 struct _Locale_name_hint* _Locale_get_collate_hint(struct _Locale_collate* collate) in _Locale_get_collate_hint() argument
|
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
D | JavaScriptCore.def | 62 ?collate@Collator@WTF@@QBE?AW4Result@12@PB_WI0I@Z
|
/external/webkit/JavaScriptCore/runtime/ |
D | StringPrototype.cpp | 228 …return Collator::userDefault()->collate(reinterpret_cast<const ::UChar*>(a.data()), a.size(), rein… in localeCompare()
|