HomeSort by relevance Sort by last modified time
    Searched refs:collate (Results 1 - 25 of 37) sorted by null

1 2

  /external/bluetooth/glib/tests/
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.ou
    [all...]
makefile.msc.in 18 unicode-collate.exe
  /external/stlport/src/
collate.cpp 24 // collate<char>
26 collate<char>::~collate() {}
28 int collate<char>::do_compare(const char* low1, const char* high1,
32 string collate<char>::do_transform(const char* low, const char* high) const
35 long collate<char>::do_hash(const char* low, const char* high) const {
43 // collate<wchar_t>
45 collate<wchar_t>::~collate() {}
48 collate<wchar_t>::do_compare(const wchar_t* low1, const wchar_t* high1
    [all...]
locale.cpp 201 L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_name : name, buf, 0, &__err_code) + ";";
278 if (c & locale::collate)
307 if (c & collate) {
308 impl->insert( i2, _STLP_STD::collate<char>::id);
310 impl->insert( i2, _STLP_STD::collate<wchar_t>::id);
435 const locale::category locale::collate; member in class:locale
locale_impl.cpp 356 this->insert(i2, collate<char>::id);
358 this->insert(i2, collate<wchar_t>::id);
398 this->insert(col, collate<char>::id);
400 if (wcol) this->insert(wcol, collate<wchar_t>::id);
632 new collate<char>(1),
646 new collate<wchar_t>(1),
677 locale::id collate<char>::id = { 1 };
686 locale::id collate<wchar_t>::id = { 14 };
  /ndk/sources/cxx-stl/stlport/src/
collate.cpp 24 // collate<char>
26 collate<char>::~collate() {}
28 int collate<char>::do_compare(const char* low1, const char* high1,
32 string collate<char>::do_transform(const char* low, const char* high) const
35 long collate<char>::do_hash(const char* low, const char* high) const {
43 // collate<wchar_t>
45 collate<wchar_t>::~collate() {}
48 collate<wchar_t>::do_compare(const wchar_t* low1, const wchar_t* high1
    [all...]
locale.cpp 201 L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_name : name, buf, 0, &__err_code) + ";";
278 if (c & locale::collate)
307 if (c & collate) {
308 impl->insert( i2, _STLP_STD::collate<char>::id);
310 impl->insert( i2, _STLP_STD::collate<wchar_t>::id);
435 const locale::category locale::collate; member in class:locale
locale_impl.cpp 356 this->insert(i2, collate<char>::id);
358 this->insert(i2, collate<wchar_t>::id);
398 this->insert(col, collate<char>::id);
400 if (wcol) this->insert(wcol, collate<wchar_t>::id);
632 new collate<char>(1),
646 new collate<wchar_t>(1),
677 locale::id collate<char>::id = { 1 };
686 locale::id collate<wchar_t>::id = { 14 };
  /external/stlport/stlport/stl/
_collate.h 39 template <class _CharT> class collate {}; class
43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet { class in inherits:locale::facet
48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} function in class:collate
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 { class in inherits:locale::facet
84 explicit collate(size_t __refs = 0) : locale::facet(__refs) { function in class:collate
    [all...]
_iosfwd.h 100 template <class _CharT> class collate;
105 _STLP_TEMPLATE_NULL class collate<char>;
111 _STLP_TEMPLATE_NULL class collate<wchar_t>;
_locale.h 109 _STLP_STATIC_CONSTANT(category, collate = 0x010);
115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_collate.h 39 template <class _CharT> class collate {}; class
43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet { class in inherits:locale::facet
48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} function in class:collate
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 { class in inherits:locale::facet
84 explicit collate(size_t __refs = 0) : locale::facet(__refs) { function in class:collate
    [all...]
_iosfwd.h 100 template <class _CharT> class collate;
105 _STLP_TEMPLATE_NULL class collate<char>;
111 _STLP_TEMPLATE_NULL class collate<wchar_t>;
_locale.h 109 _STLP_STATIC_CONSTANT(category, collate = 0x010);
115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
  /external/stlport/test/unit/
collate_facets_test.cpp 19 CPPUNIT_ASSERT( has_facet<collate<char> >(locale::classic()) );
20 collate<char> const& col = use_facet<collate<char> >(locale::classic());
39 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
40 collate<char> const& col = use_facet<collate<char> >(loc);
55 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
56 collate<char> const& col = use_facet<collate<char> >(loc);
86 CPPUNIT_ASSERT( has_facet<collate<wchar_t> >(loc) )
187 locale loc(locale::classic(), "C", locale::collate); member in class:locale
199 locale loc(locale::classic(), "", locale::collate); member in class:locale
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
collate_facets_test.cpp 19 CPPUNIT_ASSERT( has_facet<collate<char> >(locale::classic()) );
20 collate<char> const& col = use_facet<collate<char> >(locale::classic());
39 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
40 collate<char> const& col = use_facet<collate<char> >(loc);
55 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
56 collate<char> const& col = use_facet<collate<char> >(loc);
86 CPPUNIT_ASSERT( has_facet<collate<wchar_t> >(loc) )
187 locale loc(locale::classic(), "C", locale::collate); member in class:locale
199 locale loc(locale::classic(), "", locale::collate); member in class:locale
    [all...]
  /ndk/tests/device/test-stlport/unit/
collate_facets_test.cpp 19 CPPUNIT_ASSERT( has_facet<collate<char> >(locale::classic()) );
20 collate<char> const& col = use_facet<collate<char> >(locale::classic());
39 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
40 collate<char> const& col = use_facet<collate<char> >(loc);
55 CPPUNIT_ASSERT( has_facet<collate<char> >(loc) );
56 collate<char> const& col = use_facet<collate<char> >(loc);
86 CPPUNIT_ASSERT( has_facet<collate<wchar_t> >(loc) )
187 locale loc(locale::classic(), "C", locale::collate); member in class:locale
199 locale loc(locale::classic(), "", locale::collate); member in class:locale
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_classes.h 91 * The standard category values are none, ctype, numeric, collate, time,
100 static const category collate = 1L << 2; member in class:locale
104 static const category all = (ctype | numeric | collate |
237 * @brief Compare two strings according to collate.
240 * the collate facet in this locale. One use is to provide the locale to
249 * @return True if collate<Char> facet compares s1 < s2, else false.
293 // collate, ctype, monetary, numeric, time, and messages. These
597 * The collate template uses protected virtual functions to provide
601 * collate facet.
604 class collate : public locale::face class in inherits:locale::facet
631 collate(size_t __refs = 0) function in class:collate
645 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
localefwd.h 146 class collate;
  /external/webkit/JavaScriptCore/wtf/unicode/
Collator.h 52 Result collate(const ::UChar*, size_t, const ::UChar*, size_t) const;
CollatorDefault.cpp 54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const function in class:WTF::Collator
  /external/webkit/JavaScriptCore/wtf/unicode/icu/
CollatorICU.cpp 93 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const function in class:WTF::Collator
  /external/stlport/
Android.mk 18 src/collate.cpp \
  /external/webkit/WebCore/xml/
XSLTUnicodeSort.cpp 201 tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length());
256 tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length());
  /ndk/sources/cxx-stl/stlport/
Android.mk 30 src/collate.cpp \

Completed in 501 milliseconds

1 2