• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/sqlite/

Lines Matching refs:FUNCTION

8814 ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are
8817 ** FUNCTION(zName, nArg, iArg, bNC, xFunc)
8828 ** FUNCTION().
8838 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \
13314 FUNCTION(julianday, -1, 0, 0, juliandayFunc ),
13315 FUNCTION(date, -1, 0, 0, dateFunc ),
13316 FUNCTION(time, -1, 0, 0, timeFunc ),
13317 FUNCTION(datetime, -1, 0, 0, datetimeFunc ),
13318 FUNCTION(strftime, -1, 0, 0, strftimeFunc ),
13319 FUNCTION(current_time, 0, 0, 0, ctimeFunc ),
13320 FUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc),
13321 FUNCTION(current_date, 0, 0, 0, cdateFunc ),
71714 FUNCTION(sqlite_rename_table, 2, 0, 0, renameTableFunc),
71716 FUNCTION(sqlite_rename_trigger, 2, 0, 0, renameTriggerFunc),
71719 FUNCTION(sqlite_rename_parent, 3, 0, 0, renameParentFunc),
80022 FUNCTION(ltrim, 1, 1, 0, trimFunc ),
80023 FUNCTION(ltrim, 2, 1, 0, trimFunc ),
80024 FUNCTION(rtrim, 1, 2, 0, trimFunc ),
80025 FUNCTION(rtrim, 2, 2, 0, trimFunc ),
80026 FUNCTION(trim, 1, 3, 0, trimFunc ),
80027 FUNCTION(trim, 2, 3, 0, trimFunc ),
80028 FUNCTION(min, -1, 0, 1, minmaxFunc ),
80029 FUNCTION(min, 0, 0, 1, 0 ),
80031 FUNCTION(max, -1, 1, 1, minmaxFunc ),
80032 FUNCTION(max, 0, 1, 1, 0 ),
80034 FUNCTION(typeof, 1, 0, 0, typeofFunc ),
80035 FUNCTION(length, 1, 0, 0, lengthFunc ),
80036 FUNCTION(substr, 2, 0, 0, substrFunc ),
80037 FUNCTION(substr, 3, 0, 0, substrFunc ),
80038 FUNCTION(abs, 1, 0, 0, absFunc ),
80040 FUNCTION(round, 1, 0, 0, roundFunc ),
80041 FUNCTION(round, 2, 0, 0, roundFunc ),
80043 FUNCTION(upper, 1, 0, 0, upperFunc ),
80044 FUNCTION(lower, 1, 0, 0, lowerFunc ),
80045 FUNCTION(coalesce, 1, 0, 0, 0 ),
80046 FUNCTION(coalesce, 0, 0, 0, 0 ),
80047 /* FUNCTION(coalesce, -1, 0, 0, ifnullFunc ), */
80049 FUNCTION(hex, 1, 0, 0, hexFunc ),
80050 /* FUNCTION(ifnull, 2, 0, 0, ifnullFunc ), */
80052 FUNCTION(random, 0, 0, 0, randomFunc ),
80053 FUNCTION(randomblob, 1, 0, 0, randomBlob ),
80054 FUNCTION(nullif, 2, 0, 1, nullifFunc ),
80055 FUNCTION(sqlite_version, 0, 0, 0, versionFunc ),
80056 FUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ),
80058 FUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ),
80059 FUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ),
80061 FUNCTION(quote, 1, 0, 0, quoteFunc ),
80062 FUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid),
80063 FUNCTION(changes, 0, 0, 0, changes ),
80064 FUNCTION(total_changes, 0, 0, 0, total_changes ),
80065 FUNCTION(replace, 3, 0, 0, replaceFunc ),
80066 FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ),
80068 FUNCTION(soundex, 1, 0, 0, soundexFunc ),
80071 FUNCTION(load_extension, 1, 0, 0, loadExt ),
80072 FUNCTION(load_extension, 2, 0, 0, loadExt ),