Lines Matching refs:zText
12155 char *zText; /* The string collected so far */ member
21275 char *zOld = (p->zText==p->zBase ? 0 : p->zText);
21291 assert( p->zText!=0 || p->nChar==0 );
21292 if( zOld==0 && p->nChar>0 ) memcpy(zNew, p->zText, p->nChar);
21293 p->zText = zNew;
21311 while( (N--)>0 ) p->zText[p->nChar++] = ' ';
21325 memcpy(&p->zText[p->nChar], z, N);
21336 assert( p->zText!=0 || p->nChar==0 || p->accError );
21343 assert( p->zText );
21344 memcpy(&p->zText[p->nChar], z, N);
21362 if( p->zText ){
21363 p->zText[p->nChar] = 0;
21364 if( p->useMalloc && p->zText==p->zBase ){
21366 p->zText = sqlite3DbMallocRaw(p->db, p->nChar+1 );
21368 p->zText = sqlite3_malloc(p->nChar+1);
21370 if( p->zText ){
21371 memcpy(p->zText, p->zBase, p->nChar+1);
21377 return p->zText;
21384 if( p->zText!=p->zBase ){
21386 sqlite3DbFree(p->db, p->zText);
21388 sqlite3_free(p->zText);
21391 p->zText = 0;
21398 p->zText = p->zBase = zBase;
67858 return p && p->str.zText && p->str.nChar
67859 && p->str.zText[p->str.nChar-1]=='\n';
67897 if( p->str.zText && p->nIndent<ArraySize(p->aIndent) ){
67898 const char *z = p->str.zText;
92658 char *zText = 0;
92662 zText = (char *)contextMalloc(context, (2*(i64)nBlob)+4);
92663 if( zText ){
92666 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
92667 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
92669 zText[(nBlob*2)+2] = '\'';
92670 zText[(nBlob*2)+3] = '\0';
92671 zText[0] = 'X';
92672 zText[1] = '\'';
92673 sqlite3_result_text(context, zText, -1, SQLITE_TRANSIENT);
92674 sqlite3_free(zText);
98733 static const char zText[] = "onoffalseyestruefull";
98743 if( iLength[i]==n && sqlite3StrNICmp(&zText[iOffset[i]],z,n)==0 ){
121148 static const char zText[553] = {
121262 if( aLen[i]==n && sqlite3StrNICmp(&zText[aOffset[i]],z,n)==0 ){
137573 const char *zText, /* Text of document to be inserted */
137597 if( zText==0 ){
137602 rc = sqlite3Fts3OpenTokenizer(pTokenizer, iLangid, zText, -1, &pCsr);
137708 const char *zText = (const char *)sqlite3_value_text(apVal[i]);
137709 int rc = fts3PendingTermsAdd(p, iLangid, zText, iCol, &aSz[iCol]);
137863 const char *zText = (const char *)sqlite3_column_text(pSelect, i);
137864 rc = fts3PendingTermsAdd(p, iLangid, zText, -1, &aSz[iCol]);
139805 const unsigned char *zText = sqlite3_column_text(pStmt, iCol);
139806 if( zText ){
139810 for(i=0; zText[i]>='0' && zText[i]<='9'; i++){
139811 iVal = iVal*10 + (zText[i] - '0');
139814 while( zText[i]==' ' ) i++;
139816 if( zText[i]=='-' ){
139820 for(/* no-op */; zText[i]>='0' && zText[i]<='9'; i++){
139821 iVal = iVal*10 + (zText[i] - '0');
141966 const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1);
141970 rc = sqlite3Fts3OpenTokenizer(p->pTokenizer, iLang, zText, nText,&pT);
142141 const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1);
142144 rc = sqlite3Fts3OpenTokenizer(pT, pCsr->iLangid, zText, -1, &pTC);
147994 char *zText = 0;
148026 if( zText ){
148027 char *zTextNew = sqlite3_mprintf("%s {%s}", zText, zCell);
148028 sqlite3_free(zText);
148029 zText = zTextNew;
148031 zText = sqlite3_mprintf("{%s}", zCell);
148035 sqlite3_result_text(ctx, zText, -1, sqlite3_free);