• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/sqlite3/

Lines Matching refs:GLOB

4959 ** [GLOB] operators.</dd>)^
5114 ** or [GLOB] operator or if the parameter is compared to an indexed column
9957 ** string X matches the [GLOB] pattern P.
9958 ** ^The definition of [GLOB] pattern matching used in
9959 ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the
13536 ** Maximum length (in bytes) of the pattern in a LIKE or GLOB
18241 #define EP_InfixFunc 0x000080 /* True for an infix function: LIKE, GLOB, etc */
104910 ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
119028 ** A structure defining how to do GLOB-style comparisons.
119038 ** For LIKE and GLOB matching on EBCDIC machines, assume that every
119067 ** a GLOB or LIKE expression. Return values:
119107 u32 matchOther /* The escape char (LIKE) or '[' (GLOB) */
119249 ** Count the number of times that the LIKE operator (or GLOB which is
119268 ** the GLOB operator.
119294 /* Limit the length of the LIKE or GLOB pattern to avoid problems
119301 sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1);
120286 ** between uppercase and lowercase (as does GLOB) then *pIsNocase is set to
129050 /* Reinstall the LIKE and GLOB functions. The variant of LIKE
143070 ** overload MATCH, LIKE, GLOB, and REGEXP operators.
143566 u8 eMatchOp; /* Op for vtab MATCH/LIKE/GLOB/REGEXP terms */
144188 ** x GLOB 'abc*' AND x>='abc' AND x<'acd'
146567 ** Check to see if the given expression is a LIKE or GLOB operator that
146731 ** 2. column GLOB expr SQLITE_INDEX_CONSTRAINT_GLOB
146776 /* Built-in operators MATCH, GLOB, LIKE, and REGEXP attach to a
147716 Expr *pStr1 = 0; /* RHS of LIKE/GLOB operator */
147717 int isComplete = 0; /* RHS of LIKE/GLOB ends with wildcard */
147722 unsigned char eOp2 = 0; /* op2 value for LIKE/REGEXP/GLOB */
147924 /* Add constraints to reduce the search space on a LIKE or GLOB
147941 Expr *pLeft; /* LHS of LIKE/GLOB operator */
147942 Expr *pStr2; /* Copy of pStr1 - RHS of LIKE/GLOB operator */
148072 ** is one of MATCH, LIKE, GLOB, REGEXP, !=, IS, IS NOT, or NOT NULL.
162694 ** 63: GLOB
162842 testcase( i==59 ); /* GLOB */
197629 ** Maximum length (in bytes) of the pattern in a LIKE or GLOB
197777 /* Limit the length of the LIKE or GLOB pattern to avoid problems
197781 sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1);
216485 ** Argument zText contains the text of a LIKE or GLOB pattern matched
216488 ** GLOB. If successful, SQLITE_OK is returned. Otherwise, an SQLite error
218394 ** This function is used when parsing LIKE or GLOB patterns against
227033 ** GLOB against other column: "G<column-number>"