Lines Matching defs:source
55 * Redistribution and use of the "XMLParser library from Business-Insight" in source and binary forms, with or without
57 * * Redistributions of source code must retain the above copyright
813 XMLSTR ToXMLStringTool::toXMLUnSafe(XMLSTR dest, XMLCSTR source) {
817 while ((ch = *source)) {
823 source++;
829 *(dest++) = *(source++);
833 *(dest++) = *(source++);
835 *(dest++) = *(source++);
837 *(dest++) = *(source++);
839 *(dest++) = *(source++);
850 int ToXMLStringTool::lengthXMLString(XMLCSTR source) {
854 while ((ch = *source)) {
859 source++;
866 source++;
870 source += ch;
886 XMLSTR ToXMLStringTool::toXML(XMLCSTR source) {
887 int l = lengthXMLString(source) + 1;
892 return toXMLUnSafe(buf, source);