Lines Matching refs:zText

246 extern LPWSTR sqlite3_win32_utf8_to_unicode(const char *zText);
13375 const char *zText = (const char*)sqlite3_value_text(argv[0]);
13376 if( zText && zText[0]=='\'' ){
13386 for(i=0; zText[i]; i++){
13387 if( zNL==0 && zText[i]=='\n' ){
13388 zNL = recoverUnusedString(zText, "\\n", "\\012", zBuf1);
13391 if( zCR==0 && zText[i]=='\r' ){
13392 zCR = recoverUnusedString(zText, "\\r", "\\015", zBuf2);
13414 for(i=0; zText[i]; i++){
13415 if( zText[i]=='\n' ){
13418 }else if( zText[i]=='\r' ){
13422 zOut[iOut] = zText[i];
15503 char zText[1]; /* Text to display for this row */
16417 static void eqp_append(ShellState *p, int iEqpId, int p2, const char *zText){
16420 if( zText==0 ) return;
16421 nText = strlen(zText);
16423 utf8_printf(p->out, "%d,%d,%s\n", iEqpId, p2, zText);
16429 memcpy(pNew->zText, zText, nText+1);
16470 z = pRow->zText;
16487 if( pRow->zText[0]=='-' ){
16492 utf8_printf(p->out, "%s\n", pRow->zText+3);
19384 const char *zText = (const char*)sqlite3_value_text(argv[0]);
19386 if( zText && zText[0]=='\'' ){
19396 for(i=0; zText[i]; i++){
19397 if( zNL==0 && zText[i]=='\n' ){
19398 zNL = unused_string(zText, "\\n", "\\012", zBuf1);
19401 if( zCR==0 && zText[i]=='\r' ){
19402 zCR = unused_string(zText, "\\r", "\\015", zBuf2);
19424 for(i=0; zText[i]; i++){
19425 if( zText[i]=='\n' ){
19428 }else if( zText[i]=='\r' ){
19432 zOut[iOut] = zText[i];
19639 static char **readline_completion(const char *zText, int iStart, int iEnd){
19641 return rl_completion_matches(zText, readline_completion_generator);
25815 static void printBold(const char *zText){
25824 printf("%s", zText);
25830 static void printBold(const char *zText){
25831 printf("\033[1m%s\033[0m", zText);