Home | History | Annotate | Download | only in win

Lines Matching defs:resultString

654     BSTR resultString = 0;
661 resultString = SysAllocStringLen(result.data(), result.size());
681 framePrivate->renderTreeAsExternalRepresentation(&resultString);
684 if (!resultString)
687 unsigned stringLength = SysStringLen(resultString);
688 int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0);
690 ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0);
716 SysFreeString(resultString);