Searched refs:cQuote (Results 1 – 3 of 3) sorted by relevance
182 const char cQuote = '"'; in ValidateQuotedText() local183 m_argValue = rArg.Trim(cQuote).StripSlashes(); in ValidateQuotedText()265 const char cQuote = '"'; in IsStringArgQuotedText() local266 const size_t nPos = vrTxt.find(cQuote); in IsStringArgQuotedText()286 const size_t nPos2 = vrTxt.rfind(cQuote); in IsStringArgQuotedText()
627 const char cQuote = '"'; in RemoveRepeatedCharacters() local630 const size_t nPos = find(cQuote, vnPos); in RemoveRepeatedCharacters()638 if (at(nPosNext) == cQuote) in RemoveRepeatedCharacters()657 const char cQuote = '"'; in IsQuoted() local659 if (at(0) != cQuote) in IsQuoted()663 if ((nLen > 0) && (at(nLen - 1) != cQuote)) in IsQuoted()767 const char cQuote('"'); in FindFirstQuote() local774 const size_t nQuotePos(find(cQuote, nPos)); in FindFirstQuote()
2192 int cQuote = c; in csv_read_one_field() local2197 if( c==cQuote ){ in csv_read_one_field()2198 if( pc==cQuote ){ in csv_read_one_field()2203 if( (c==cSep && pc==cQuote) in csv_read_one_field()2204 || (c==rSep && pc==cQuote) in csv_read_one_field()2205 || (c==rSep && pc=='\r' && ppc==cQuote) in csv_read_one_field()2206 || (c==EOF && pc==cQuote) in csv_read_one_field()2208 do{ p->n--; }while( p->z[p->n]!=cQuote ); in csv_read_one_field()2212 if( pc==cQuote && c!='\r' ){ in csv_read_one_field()2214 p->zFile, p->nLine, cQuote); in csv_read_one_field()[all …]