Home | History | Annotate | Download | only in dist

Lines Matching full:upper

120 ** The hard upper limit here is 32676.  Most database people will
195 ** and 30. The upper bound on 30 is because a 32-bit integer bitmap
210 /* Maximum page size. The upper bound on this value is 32768. This a limit
2788 ** [limits | hard upper bound]
2792 ** ^Attempts to increase a limit above its hard upper bound are
2793 ** silently truncated to the hard upper bound.
4478 ** is an upper bound on the total memory allocation for all threads. In
10632 /* An array to map all upper-case characters into their corresponding
10689 ** Bit 0x20 is set if the mapped character requires translation to upper
10691 ** If x is a lower-case ASCII character, then its upper-case equivalent
12250 ** error in sqlite3_os_init() by the upper layers can be tested.
24659 ** in the OS-X msdos filesystem. In order to avoid problems with upper
25413 /* Assert that the upper layer has set one of the "file-type" flags. */
25435 /* If zName is NULL, the upper layer is requesting a temp file. */
31052 ** upper bound on the size of allocated memory. No memory is freed
49906 ** upper 4 bytes. Return the result.
54641 ** to get u.am.nField type values. u.am.offset is an upper bound on this. But
67168 ** "sqlite_" (in upper, lower or mixed case). This portion of the namespace
71586 ** Implementation of the upper() and lower() SQL functions.
71762 ** able to participate in upper-case-to-lower-case mappings in EBCDIC
72747 FUNCTION(upper, 1, 0, 0, upperFunc ),
88819 ** by scanning an index for a range of values. The range may have an upper
88820 ** bound, a lower bound, or both. The WHERE clause terms that set the upper
88829 ** If either of the upper or lower bound is not present, then NULL is passed in
88863 WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */
94302 ** an upper-to-lower case map. On EBCDIC machines we also need
95993 ** comparison". SQLite's knowledge of upper and lower case equivalents
96905 ** This array defines hard upper bounds on limit values. The
102828 ** Any upper-case characters in the US-ASCII character set ([A-Z])
102829 ** are converted to lower case. Upper-case UTF characters are
110428 ** * Implementations of the SQL scalar upper() and lower() functions
110703 ** Implementations of scalar functions for case mapping - upper() and
110704 ** lower(). Function upper() converts its input to upper-case (ABC).
110711 ** To utilise "general" case mapping, the upper() or lower() scalar
110714 ** upper('ABC') -> 'abc'
110717 ** To access ICU "language specific" case mapping, upper() or lower()
110721 ** of upper() or lower().
110864 {"upper", 1, SQLITE_UTF16, (void*)1, icuCaseFunc16},
110865 {"upper", 2, SQLITE_UTF16, (void*)1, icuCaseFunc16},
110869 {"upper", 1, SQLITE_UTF8, (void*)1, icuCaseFunc16},
110870 {"upper", 2, SQLITE_UTF8, (void*)1, icuCaseFunc16},