Home | History | Annotate | Download | only in javascript

Lines Matching refs:cSource

405   std::string cSource = CFX_ByteString::FromUnicode(sSource).c_str();
407 printx(cFormat, cSource, cDest);
415 std::string cSource(cSource2);
420 int iSize = cSource.size();
426 cPurpose += cSource[itSource];
431 if (std::isdigit(cSource[itSource]) ||
432 (cSource[itSource] >= 'a' && cSource[itSource] <= 'z') ||
433 (cSource[itSource] >= 'A' && cSource[itSource] <= 'Z')) {
434 cPurpose += cSource[itSource];
444 if ((cSource[itSource] >= 'a' && cSource[itSource] <= 'z') ||
445 (cSource[itSource] >= 'A' && cSource[itSource] <= 'Z')) {
446 cPurpose += cSource[itSource];
456 if (std::isdigit(cSource[itSource])) {
457 cPurpose += cSource[itSource];
466 cPurpose.append(cSource, itSource, iSize - itSource);
473 for (char& c : cSource)
478 for (char& c : cSource)