Home
last modified time | relevance | path

Searched refs:sqlite3_str_append (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c1128 sqlite3_str_append(pOut, "-", 1); in qrfApproxInt64()
1149 sqlite3_str_append(pOut, &aSuffix[i/3], 1); in qrfApproxInt64()
1790 sqlite3_str_append(pOut, (const char*)z, i); in qrfEncodeText()
1793 case '>': sqlite3_str_append(pOut, "<", 4); break; in qrfEncodeText()
1794 case '&': sqlite3_str_append(pOut, "&", 5); break; in qrfEncodeText()
1795 case '<': sqlite3_str_append(pOut, "&lt;", 4); break; in qrfEncodeText()
1796 case '"': sqlite3_str_append(pOut, "&quot;", 6); break; in qrfEncodeText()
1797 case '\'': sqlite3_str_append(pOut, "&#39;", 5); break; in qrfEncodeText()
1807 sqlite3_str_append(pOut, "\"", 1); in qrfEncodeText()
1812 sqlite3_str_append(pOut, (const char*)z, i); in qrfEncodeText()
[all …]
H A Dsqlite3ext.h657 #define sqlite3_str_append sqlite3_api->str_append macro
H A Dsqlite3.h8879 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
H A Dsqlite3.c9200 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
26863 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc()
26930 sqlite3_str_append(&sRes, cf=='p' ? "PM" : "pm", 2); in strftimeFunc()
26932 sqlite3_str_append(&sRes, cf=='p' ? "AM" : "am", 2); in strftimeFunc()
26999 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc()
32600 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf()
32604 sqlite3_str_append(pAccum, "%", 1); in sqlite3_str_vappendf()
33148 sqlite3_str_append(pAccum, buf, length); in sqlite3_str_vappendf()
33157 sqlite3_str_append(pAccum, in sqlite3_str_vappendf()
33340 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); in sqlite3_str_vappendf()
[all …]