Lines Matching defs:zNL
13381 const char *zNL = 0;
13387 if( zNL==0 && zText[i]=='\n' ){
13388 zNL = recoverUnusedString(zText, "\\n", "\\012", zBuf1);
13389 nNL = (int)strlen(zNL);
13397 if( zNL || zCR ){
13407 if( zNL && zCR ){
13416 memcpy(&zOut[iOut], zNL, nNL);
13427 if( zNL ){
13429 memcpy(&zOut[iOut], zNL, nNL); iOut += nNL;
16030 const char *zNL = 0;
16041 zNL = unused_string(z, "\\n", "\\012", zBuf1);
16064 raw_printf(out, "%s", zNL);
16074 raw_printf(out, ",'%s',char(10))", zNL);
19391 const char *zNL = 0;
19397 if( zNL==0 && zText[i]=='\n' ){
19398 zNL = unused_string(zText, "\\n", "\\012", zBuf1);
19399 nNL = strlen(zNL);
19407 if( zNL || zCR ){
19417 if( zNL && zCR ){
19426 memcpy(&zOut[iOut], zNL, nNL);
19437 if( zNL ){
19439 memcpy(&zOut[iOut], zNL, nNL); iOut += nNL;