HomeSort by relevance Sort by last modified time
    Searched refs:resultString (Results 1 - 25 of 30) sorted by null

1 2

  /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);
  /packages/apps/Phone/tests/src/com/android/phone/tests/
OtaspTestActivity.java 94 String resultString;
97 resultString = "User skipped!";
100 resultString = "Success!";
103 resultString = "FAILURE";
106 resultString = "Unexpected code: " + resultCode;
109 Log.i(LOG_TAG, " - result: " + resultString);
110 mResult.setText(resultString);
  /external/webkit/Source/WebCore/xml/
XSLTProcessor.cpp 129 String resultString;
131 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
133 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType, sourceNode, 0);
139 String resultString;
146 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
148 return createFragmentFromSource(resultString, resultMIMEType, outputDoc);
XSLTProcessor.h 50 bool transformToString(Node* source, String& resultMIMEType, String& resultString, String& resultEncoding);
XSLTProcessorQt.cpp 114 bool XSLTProcessor::transformToString(Node* sourceNode, String&, String& resultString, String&)
170 resultString = QString::fromUtf8(outputBuffer.readAll()).trimmed();
XSLTProcessorLibxslt.cpp 192 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
211 resultString = String::adopt(resultVector);
300 bool XSLTProcessor::transformToString(Node* sourceNode, String& mimeType, String& resultString, String& resultEncoding)
356 if ((success = saveResultToString(resultDoc, sheet, resultString))) {
  /packages/apps/Contacts/src/com/android/contacts/socialwidget/
SocialWidgetSettings.java 66 final String resultString = settings.getString(getPreferenceKey(widgetId), null);
67 final Uri result = resultString == null ? null : Uri.parse(resultString);
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 394 void PluginStream::sendJavaScriptStream(const KURL& requestURL, const CString& resultString)
396 didReceiveResponse(0, ResourceResponse(requestURL, "text/plain", resultString.length(), "", ""));
401 if (!resultString.isNull()) {
402 didReceiveData(0, resultString.data(), resultString.length());
409 destroyStream(resultString.isNull() ? NPRES_NETWORK_ERR : NPRES_DONE);
PluginStream.h 73 void sendJavaScriptStream(const KURL& requestURL, const WTF::CString& resultString);
PluginDatabase.cpp 504 static bool readUTF8String(String& resultString, char*& start, const char* end)
510 resultString = String::fromUTF8(start, len);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EventFieldEditorView.java 240 final String resultString;
242 resultString = kind.dateFormatWithoutYear.format(outCalendar.getTime());
244 resultString = kind.dateFormatWithYear.format(outCalendar.getTime());
246 onFieldChanged(column, resultString);
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 267 String resultString = String::adopt(result);
274 resultString.replace(0xE5E5, ideographicSpace);
276 return resultString;
  /external/webkit/Source/WebKit2/Shared/mac/
ArgumentCodersMac.mm 200 RetainPtr<NSMutableAttributedString> resultString(AdoptNS, [[NSMutableAttributedString alloc] initWithString:plainString.get()]);
222 [resultString.get() addAttributes:attributes.get() range:NSMakeRange(rangeLocation, rangeLength)];
225 result.adoptCF(resultString.leakRef());
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.cpp 49 static bool retrieveTextResultFromDatabase(SQLiteDatabase& db, const String& query, String& resultString)
61 resultString = statement.getColumnText(0);
65 resultString = String();
  /external/icu4c/common/
ucase.c     [all...]
uprops.cpp 133 const UChar *resultString;
134 return (UBool)(ucase_toFullFolding(csp, c, &resultString, U_FOLD_CASE_DEFAULT)>=0);
  /external/webkit/Source/WebCore/platform/text/
TextCodecICU.cpp 331 String resultString = String::adopt(result);
336 resultString.replace(0xE5E5, ideographicSpace);
338 return resultString;
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 722 BSTR resultString = 0;
729 resultString = SysAllocStringLen(result.data(), result.size());
749 framePrivate->renderTreeAsExternalRepresentation(gLayoutTestController->isPrinting(), &resultString);
752 if (!resultString)
755 unsigned stringLength = SysStringLen(resultString);
756 int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0);
758 ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0);
785 SysFreeString(resultString);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]
  /external/icu4c/test/intltest/
convtest.cpp     [all...]
regextst.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 750 String resultString;
751 result.getString(scriptState, resultString);
755 if (resultString.isNull())
763 plugin->didEvaluateJavaScript(request->requestID(), decodeURLEscapeSequences(request->request().url()), resultString);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 598 for (String resultString : results) {
599 mOutStream.println(resultString);
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js     [all...]

Completed in 546 milliseconds

1 2