HomeSort by relevance Sort by last modified time
    Searched defs:resultString (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebCore/xml/
XSLTProcessor.cpp 124 String resultString;
126 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
128 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType, sourceNode, 0);
134 String resultString;
141 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
143 return createFragmentFromSource(resultString, resultMIMEType, outputDoc);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 35 String resultString = LaunchpadActivity.RECEIVER_LOCAL;
37 resultString = "Successfully registered, but expected it to fail";
42 //resultString = "This is the correct behavior but not yet implemented";
43 resultString = LaunchpadActivity.RECEIVER_LOCAL;
46 resultString = "Successfully bound to service, but expected it to fail";
58 //resultString = "This is the correct behavior but not yet implemented";
59 resultString = LaunchpadActivity.RECEIVER_LOCAL;
70 data.writeString(resultString);
  /external/icu4c/common/
uprops.cpp 305 const UChar *resultString;
306 return (UBool)(ucase_toFullFolding(csp, c, &resultString, U_FOLD_CASE_DEFAULT)>=0);
ucase.c     [all...]
  /external/webkit/WebCore/platform/text/
TextCodecICU.cpp 329 String resultString = String::adopt(result);
334 resultString.replace(0xE5E5, ideographicSpace);
336 return resultString;
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.cpp 266 String resultString = String::adopt(result);
273 resultString.replace(0xE5E5, ideographicSpace);
275 return resultString;
  /external/chromium/third_party/icu/source/test/cintltst/
reapits.c 612 UChar resultString[40];
619 TEST_ASSERT(uregex_group(re, 0, resultString, sizeof(resultString)/2, &status) == 3)
620 TEST_ASSERT_STRING("345", resultString, TRUE);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
convtest.cpp     [all...]
regextst.cpp     [all...]
  /external/icu4c/test/cintltst/
reapits.c 657 UChar resultString[40];
664 TEST_ASSERT(uregex_group(re, 0, resultString, sizeof(resultString)/2, &status) == 3)
665 TEST_ASSERT_STRING("345", resultString, TRUE);
    [all...]
  /external/icu4c/test/intltest/
convtest.cpp     [all...]
regextst.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 667 QString resultString;
669 resultString = dumpFramesAsText(mainFrame);
671 resultString = mainFrame->renderTreeDump();
673 if (!resultString.isEmpty()) {
674 fprintf(stdout, "%s", resultString.toUtf8().constData());
  /external/icu4c/i18n/
rematch.cpp     [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp 509 String resultString;
513 if (getString(parentFrame->script(), result.jsValue(), resultString))
514 cstr = resultString.utf8();
521 if (result.getString(resultString))
522 cstr = resultString.utf8();
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 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);
    [all...]

Completed in 800 milliseconds