Lines Matching defs:FUNCTION

9671 ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are
9674 ** FUNCTION(zName, nArg, iArg, bNC, xFunc)
9685 ** FUNCTION().
9695 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \
14311 FUNCTION(julianday, -1, 0, 0, juliandayFunc ),
14312 FUNCTION(date, -1, 0, 0, dateFunc ),
14313 FUNCTION(time, -1, 0, 0, timeFunc ),
14314 FUNCTION(datetime, -1, 0, 0, datetimeFunc ),
14315 FUNCTION(strftime, -1, 0, 0, strftimeFunc ),
14316 FUNCTION(current_time, 0, 0, 0, ctimeFunc ),
14317 FUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc),
14318 FUNCTION(current_date, 0, 0, 0, cdateFunc ),
77008 FUNCTION(sqlite_rename_table, 2, 0, 0, renameTableFunc),
77010 FUNCTION(sqlite_rename_trigger, 2, 0, 0, renameTriggerFunc),
77013 FUNCTION(sqlite_rename_parent, 3, 0, 0, renameParentFunc),
85575 FUNCTION(ltrim, 1, 1, 0, trimFunc ),
85576 FUNCTION(ltrim, 2, 1, 0, trimFunc ),
85577 FUNCTION(rtrim, 1, 2, 0, trimFunc ),
85578 FUNCTION(rtrim, 2, 2, 0, trimFunc ),
85579 FUNCTION(trim, 1, 3, 0, trimFunc ),
85580 FUNCTION(trim, 2, 3, 0, trimFunc ),
85581 FUNCTION(min, -1, 0, 1, minmaxFunc ),
85582 FUNCTION(min, 0, 0, 1, 0 ),
85584 FUNCTION(max, -1, 1, 1, minmaxFunc ),
85585 FUNCTION(max, 0, 1, 1, 0 ),
85587 FUNCTION(typeof, 1, 0, 0, typeofFunc ),
85588 FUNCTION(length, 1, 0, 0, lengthFunc ),
85589 FUNCTION(substr, 2, 0, 0, substrFunc ),
85590 FUNCTION(substr, 3, 0, 0, substrFunc ),
85591 FUNCTION(abs, 1, 0, 0, absFunc ),
85593 FUNCTION(round, 1, 0, 0, roundFunc ),
85594 FUNCTION(round, 2, 0, 0, roundFunc ),
85596 FUNCTION(upper, 1, 0, 0, upperFunc ),
85597 FUNCTION(lower, 1, 0, 0, lowerFunc ),
85598 FUNCTION(coalesce, 1, 0, 0, 0 ),
85599 FUNCTION(coalesce, 0, 0, 0, 0 ),
85600 /* FUNCTION(coalesce, -1, 0, 0, ifnullFunc ), */
85602 FUNCTION(hex, 1, 0, 0, hexFunc ),
85603 /* FUNCTION(ifnull, 2, 0, 0, ifnullFunc ), */
85605 FUNCTION(random, 0, 0, 0, randomFunc ),
85606 FUNCTION(randomblob, 1, 0, 0, randomBlob ),
85607 FUNCTION(nullif, 2, 0, 1, nullifFunc ),
85608 FUNCTION(sqlite_version, 0, 0, 0, versionFunc ),
85609 FUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ),
85610 FUNCTION(sqlite_log, 2, 0, 0, errlogFunc ),
85612 FUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ),
85613 FUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ),
85615 FUNCTION(quote, 1, 0, 0, quoteFunc ),
85616 FUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid),
85617 FUNCTION(changes, 0, 0, 0, changes ),
85618 FUNCTION(total_changes, 0, 0, 0, total_changes ),
85619 FUNCTION(replace, 3, 0, 0, replaceFunc ),
85620 FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ),
85622 FUNCTION(soundex, 1, 0, 0, soundexFunc ),
85625 FUNCTION(load_extension, 1, 0, 0, loadExt ),
85626 FUNCTION(load_extension, 2, 0, 0, loadExt ),