Home | History | Annotate | Download | only in xml

Lines Matching refs:ws

335       WideString ws;
338 ws = L"<?xml version=\"1.0\" encoding=\"";
341 ws += L"UTF-16";
343 ws += L"UTF-16be";
345 ws += L"UTF-8";
347 ws += L"\"?>";
348 pXMLStream->WriteString(ws.AsStringView());
350 ws = WideString::Format(L"<?%ls", pInstruction->GetName().c_str());
351 pXMLStream->WriteString(ws.AsStringView());
361 ws = L" ";
362 ws += it.first;
363 ws += L"=\"";
364 ws += wsValue;
365 ws += L"\"";
366 pXMLStream->WriteString(ws.AsStringView());
370 ws = L" \"";
371 ws += target;
372 ws += L"\"";
373 pXMLStream->WriteString(ws.AsStringView());
375 ws = L"?>";
376 pXMLStream->WriteString(ws.AsStringView());
381 WideString ws;
382 ws = L"<";
383 ws += static_cast<CFX_XMLElement*>(pNode)->GetName();
384 pXMLStream->WriteString(ws.AsStringView());
394 ws = L" ";
395 ws += it.first;
396 ws += L"=\"";
397 ws += wsValue;
398 ws += L"\"";
399 pXMLStream->WriteString(ws.AsStringView());
402 ws = L"\n>";
403 pXMLStream->WriteString(ws.AsStringView());
409 ws = L"</";
410 ws += static_cast<CFX_XMLElement*>(pNode)->GetName();
411 ws += L"\n>";
413 ws = L"\n/>";
415 pXMLStream->WriteString(ws.AsStringView());
419 WideString ws = static_cast<CFX_XMLText*>(pNode)->GetText();
420 ws.Replace(L"&", L"&amp;");
421 ws.Replace(L"<", L"&lt;");
422 ws.Replace(L">", L"&gt;");
423 ws.Replace(L"\'", L"&apos;");
424 ws.Replace(L"\"", L"&quot;");
425 pXMLStream->WriteString(ws.AsStringView());
429 WideString ws = L"<![CDATA[";
430 ws += static_cast<CFX_XMLCharData*>(pNode)->GetText();
431 ws += L"]]>";
432 pXMLStream->WriteString(ws.AsStringView());