HomeSort by relevance Sort by last modified time
    Searched full:collate (Results 51 - 75 of 360) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/test/
minmax3.test 233 SELECT max(x COLLATE nocase) FROM t4;
238 SELECT max(x), max(x COLLATE nocase) FROM t4;
243 SELECT max(x COLLATE binary), max(x COLLATE nocase) FROM t4;
248 SELECT max(x COLLATE nocase), max(x COLLATE rtrim) FROM t4;
253 SELECT max(x COLLATE nocase), max(x) FROM t4;
263 SELECT min(x COLLATE nocase) FROM t4;
268 SELECT min(x), min(x COLLATE nocase) FROM t4;
273 SELECT min(x COLLATE binary), min(x COLLATE nocase) FROM t4
    [all...]
analyze4.test 89 a TEXT COLLATE nocase,
90 b TEXT COLLATE rtrim,
91 c TEXT COLLATE binary
96 CREATE INDEX t2c2 ON t2(c COLLATE nocase);
97 CREATE INDEX t2c3 ON t2(c COLLATE rtrim);
e_reindex.test 106 db collate collA sort_by_length
107 db collate collB sort_by_value
116 CREATE INDEX i1_a ON t1(x COLLATE collA);
117 CREATE INDEX i1_b ON t1(x COLLATE collB);
128 CREATE INDEX i2_a ON t2(x COLLATE collA);
129 CREATE INDEX i2_b ON t2(x COLLATE collB);
133 CREATE INDEX aux.i1_a ON t1(x COLLATE collA);
134 CREATE INDEX aux.i1_b ON t1(x COLLATE collB);
140 set sql "SELECT x FROM $tbl ORDER BY x COLLATE $collation"
145 db collate collA "sort_by_$a
    [all...]
collate7.test 37 CREATE TABLE abc(a COLLATE CASELESS, b, c);
52 CREATE TABLE abc16(a COLLATE CASELESS, b, c);
selectA.test 32 CREATE TABLE t1(a,b,c COLLATE NOCASE);
43 CREATE TABLE t2(x,y,z COLLATE NOCASE);
54 CREATE TABLE t3(a,b,c COLLATE NOCASE);
104 ORDER BY b COLLATE NOCASE,a,c
110 ORDER BY b COLLATE NOCASE DESC,a,c
134 ORDER BY c COLLATE BINARY DESC,a,b
164 ORDER BY b COLLATE NOCASE,a,c
170 ORDER BY b COLLATE NOCASE DESC,a,c
194 ORDER BY c COLLATE BINARY DESC,a,b
224 ORDER BY b COLLATE NOCASE,a,
    [all...]
fuzz2.test 35 fuzzcatch {SELECT 1 LIMIT NOT #59 COLLATE AAAAAA NOT IN
42 fuzzcatch {SELECT 1 LIMIT NOT #59 COLLATE AAAAAA NOT IN round(1.0)}
90 fuzzcatch {SELECT 1 LIMIT ( SELECT DISTINCT * , AAAAAA , * , AAAAAA , "AAAAAA" . * FROM "AAAAAA" ON ROUND( 1 ) COLLATE AAAAAA OR "AAAAAA" USING ( AAAAAA , "AAAAAA" ) WHERE ROUND( 1 ) GROUP BY ORDER BY #84 ASC , #44 DESC , ( SELECT "AAAAAA" . * , "AAAAAA" . * FROM , ( ) "AAAAAA" USING ( )}
93 fuzzcatch {SELECT 1 WHERE 1 == AAAAAA ( * ) BETWEEN + - ~ + "AAAAAA" . AAAAAA | RAISE ( IGNORE ) COLLATE AAAAAA NOT IN ( SELECT DISTINCT "AAAAAA" . * , * , * WHERE ( SELECT ALL AAAAAA AS "AAAAAA" HAVING CAST ( "AAAAAA" . "AAAAAA" . "AAAAAA" AS AAAAAA ) ORDER BY , , IS NULL ASC , ~ AND DESC LIMIT ( ( "AAAAAA" ) NOT BETWEEN ( ) NOT IN ( ) AND AAAAAA ( ) IS NOT NULL ) OFFSET AAAAAA ( ALL , , ) ) GROUP BY ORDER BY "AAAAAA" . AAAAAA ASC , NULL IN ( SELECT UNION ALL SELECT ALL WHERE HAVING ORDER BY LIMIT UNION SELECT DISTINCT FROM ( ) WHERE + HAVING >> ORDER BY LIMIT . . , "AAAAAA" ) , CAST ( ~ "AAAAAA" . AAAAAA AS "AAAAAA" AAAAAA "AAAAAA" ( + 4294967295 , - 4294967296.0 ) ) ASC LIMIT AAAAAA INTERSECT SELECT ALL * GROUP BY , AAAAAA ( DISTINCT , ) != #241 NOT IN ( , , ) , , CTIME_KW HAVING AAAAAA ORDER BY #103 DESC , #81 ASC LIMIT AAAAAA OFFSET ~ AAAAAA ( ALL AAAAAA . AAAAAA >= AAAAAA . "AAAAAA" . "AAAAAA" ) ) NOTNULL NOT NULL}
96 fuzzcatch {SELECT 1 WHERE 1 == AAAAAA ( * ) BETWEEN + - ~ + "AAAAAA" . AAAAAA | RAISE ( IGNORE ) COLLATE AAAAAA NOT IN ( SELECT DISTINCT "AAAAAA" . * , * , * WHERE ( SELECT ALL AAAAAA AS "AAAAAA" HAVING CAST ( "AAAAAA" . "AAAAAA" . "AAAAAA" AS AAAAAA ) ORDER BY , , IS NULL ASC , ~ AND DESC LIMIT ( ( "AAAAAA" ) NOT BETWEEN ( ) NOT IN ( ) AND AAAAAA ( ) IS NOT NULL ) OFFSET AAAAAA ( ALL , , ) ) GROUP BY ORDER BY "AAAAAA" . AAAAAA ASC , NULL IN ( SELECT UNION ALL SELECT ALL WHERE HAVING ORDER BY LIMIT UNION SELECT DISTINCT FROM ( ) WHERE + HAVING >> ORDER BY LIMIT . . , "AAAAAA" ) , CAST ( ~ "AAAAAA" . AAAAAA AS "AAAAAA" AAAAAA "AAAAAA" ( + 4294967295 , - 4294967296.0 ) ) ASC LIMIT AAAAAA INTERSECT SELECT ALL * GROUP BY , AAAAAA ( DISTINCT , ) != #241 NOT IN ( , , ) , , CTIME_KW HAVING AAAAAA ORDER BY #103 DESC , #81 ASC LIMIT AAAAAA OFFSET ~ AAAAAA ( ALL AAAAAA . AAAAAA >= AAAAAA . "AAAAAA" . "AAAAAA" ) ) NOTNULL NOT NULL}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
compare.pass.cpp 12 // template <class charT> class collate;
27 const std::collate<char>& f = std::use_facet<std::collate<char> >(l);
40 const std::collate<wchar_t>& f = std::use_facet<std::collate<wchar_t> >(l);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 20 // static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
42 static_assert((BR::collate == std::regex_constants::collate), "");
52 where(BR::collate);
  /external/chromium_org/printing/
print_settings_initializer.cc 84 bool collate = false; local
87 if (!job_settings.GetBoolean(kSettingCollate, &collate) ||
96 settings->set_collate(collate);
printing_context_mac.h 72 // Sets |collate| in PMPrintSettings.
73 // Returns true if |collate| is set.
74 bool SetCollateInPrintSettings(bool collate);
print_settings.h 101 void set_collate(bool collate) { collate_ = collate; }
102 bool collate() const { return collate_; } function in class:printing::PrintSettings
162 // True if the user wants to print with collate.
165 // True if the user wants to print with collate.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.category/
category.pass.cpp 31 assert(std::locale::collate);
37 assert((std::locale::collate
43 assert((std::locale::collate
52 test(std::locale::collate);
  /external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
duplex.js 11 * @param {!print_preview.AppState} appState App state used to persist collate
14 * used determine if a destination has the collate capability.
  /prebuilts/gcc/linux-x86/host/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
240 * @brief Compare two strings according to collate.
243 * the collate facet in this locale. One use is to provide the locale to
252 * @return True if collate<Char> facet compares s1 < s2, else false.
296 // collate, ctype, monetary, numeric, time, and messages. These
611 * The collate template uses protected virtual functions to provide
615 * collate facet.
618 class collate : public locale::face class in inherits:locale::facet
645 collate(size_t __refs = 0) function in class:collate
659 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
240 * @brief Compare two strings according to collate.
243 * the collate facet in this locale. One use is to provide the locale to
252 * @return True if collate<Char> facet compares s1 < s2, else false.
296 // collate, ctype, monetary, numeric, time, and messages. These
611 * The collate template uses protected virtual functions to provide
615 * collate facet.
618 class collate : public locale::face class in inherits:locale::facet
645 collate(size_t __refs = 0) function in class:collate
659 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/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...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
240 * @brief Compare two strings according to collate.
243 * the collate facet in this locale. One use is to provide the locale to
252 * @return True if collate<Char> facet compares s1 < s2, else false.
296 // collate, ctype, monetary, numeric, time, and messages. These
611 * The collate template uses protected virtual functions to provide
615 * collate facet.
618 class collate : public locale::face class in inherits:locale::facet
645 collate(size_t __refs = 0) function in class:collate
659 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
241 * @brief Compare two strings according to collate.
244 * the collate facet in this locale. One use is to provide the locale to
253 * @return True if collate<_Char> facet compares __s1 < __s2, else false.
297 // collate, ctype, monetary, numeric, time, and messages. These
579 * The collate template uses protected virtual functions to provide
583 * collate facet.
586 class collate : public locale::face class in inherits:locale::facet
613 collate(size_t __refs = 0) function in class:collate
627 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
240 * @brief Compare two strings according to collate.
243 * the collate facet in this locale. One use is to provide the locale to
252 * @return True if collate<Char> facet compares s1 < s2, else false.
296 // collate, ctype, monetary, numeric, time, and messages. These
611 * The collate template uses protected virtual functions to provide
615 * collate facet.
618 class collate : public locale::face class in inherits:locale::facet
645 collate(size_t __refs = 0) function in class:collate
659 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
locale_classes.h 94 * The standard category values are none, ctype, numeric, collate, time,
103 static const category collate = 1L << 2; member in class:locale
107 static const category all = (ctype | numeric | collate |
241 * @brief Compare two strings according to collate.
244 * the collate facet in this locale. One use is to provide the locale to
253 * @return True if collate<_Char> facet compares __s1 < __s2, else false.
297 // collate, ctype, monetary, numeric, time, and messages. These
579 * The collate template uses protected virtual functions to provide
583 * collate facet.
586 class collate : public locale::face class in inherits:locale::facet
613 collate(size_t __refs = 0) function in class:collate
627 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
locale_classes.h 92 * The standard category values are none, ctype, numeric, collate, time,
101 static const category collate = 1L << 2; member in class:locale
105 static const category all = (ctype | numeric | collate |
239 * @brief Compare two strings according to collate.
242 * the collate facet in this locale. One use is to provide the locale to
251 * @return True if collate<_Char> facet compares __s1 < __s2, else false.
295 // collate, ctype, monetary, numeric, time, and messages. These
577 * The collate template uses protected virtual functions to provide
581 * collate facet.
584 class collate : public locale::face class in inherits:locale::facet
611 collate(size_t __refs = 0) function in class:collate
625 collate(__c_locale __cloc, size_t __refs = 0) function in class:collate
    [all...]

Completed in 895 milliseconds

1 23 4 5 6 7 8 91011>>