Lines Matching refs:escape

4050 ** ^URI hexadecimal escape sequences (%HH) are supported within the path and
4051 ** query components of a URI. A hexadecimal escape sequence consists of a
4055 ** hexadecimal escape sequences replaced by a single byte containing the
8701 ** SQL way to escape identifier names.
9807 ** string X matches the [LIKE] pattern P with escape character E.
129374 u32 matchOther /* The escape char (LIKE) or '[' (GLOB) */
129555 u32 escape;
129584 /* The escape character string must consist of a single UTF-8 character.
129594 escape = sqlite3Utf8Read(&zEsc);
129595 if( escape==pInfo->matchAll || escape==pInfo->matchOne ){
129598 if( escape==pInfo->matchAll ) pInfo->matchAll = 0;
129599 if( escape==pInfo->matchOne ) pInfo->matchOne = 0;
129602 escape = pInfo->matchSet;
129611 patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH);
130904 ** escape character and then return TRUE. If the function is not a
160459 ** a single escape character. The second condition is necessary so
182829 ** Decode %HH escape codes along the way.
204996 #define JSONB_TEXT5 9 /* Text with JSON-5 escape */
205521 ** escape any double-quotes or backslash characters contained within the
207439 ** Input z[0..n] defines JSON escape sequence including the leading '\\'.
207440 ** Decode that escape sequence into a single character. Write that
207441 ** character into *piOut. Return the number of bytes in the escape sequence.
207524 ** two comparands contains an escape sequence.
207532 int rawRight /* True if zRight is escape-free */
207588 int rawRight /* True if zRight is escape-free */
216760 const UChar32 uEsc /* The escape character */
216778 ** 3. uPattern is an unescaped escape character, or
216839 ** is implemented as like(B, A). If there is an escape character E,
216864 /* The escape character string must consist of a single UTF-8 character.
227414 const char *zStr, /* String to quote, escape and append */