Lines Matching defs:escape
3953 ** ^URI hexadecimal escape sequences (%HH) are supported within the path and
3954 ** query components of a URI. A hexadecimal escape sequence consists of a
3958 ** hexadecimal escape sequences replaced by a single byte containing the
8469 ** SQL way to escape identifier names.
9575 ** string X matches the [LIKE] pattern P with escape character E.
125412 u32 matchOther /* The escape char (LIKE) or '[' (GLOB) */
125593 u32 escape;
125622 /* The escape character string must consist of a single UTF-8 character.
125632 escape = sqlite3Utf8Read(&zEsc);
125633 if( escape==pInfo->matchAll || escape==pInfo->matchOne ){
125636 if( escape==pInfo->matchAll ) pInfo->matchAll = 0;
125637 if( escape==pInfo->matchOne ) pInfo->matchOne = 0;
125640 escape = pInfo->matchSet;
125649 patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH);
126683 ** escape character and then return TRUE. If the function is not a
154924 ** a single escape character. The second condition is necessary so
176403 ** Decode %HH escape codes along the way.
198498 ** under construction. Enclose the string in "..." and escape
207474 const UChar32 uEsc /* The escape character */
207492 ** 3. uPattern is an unescaped escape character, or
207553 ** is implemented as like(B, A). If there is an escape character E,
207578 /* The escape character string must consist of a single UTF-8 character.
217664 const char *zStr, /* String to quote, escape and append */