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

1 2

  /external/webkit/Source/WebCore/websockets/
WebSocketHandshakeResponse.cpp 73 const String& WebSocketHandshakeResponse::statusText() const
78 void WebSocketHandshakeResponse::setStatusText(const String& statusText)
80 m_statusText = statusText;
WebSocketHandshakeResponse.h 49 const String& statusText() const;
50 void setStatusText(const String& statusText);
WebSocketHandshake.h 88 int readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText);
WebSocketHandshake.cpp 318 String statusText;
319 int lineLength = readStatusLine(header, len, statusCode, statusText);
328 m_response.setStatusText(statusText);
420 // statusCode and statusText will be set to -1 and a null string, respectively.
421 int WebSocketHandshake::readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText)
428 statusText = String();
484 statusText = String(space2 + 1, end - space2 - 3); // Exclude "\r\n".
  /development/samples/MultiResolution/src/com/example/android/multires/
MultiRes.java 70 TextView statusText = (TextView) findViewById(R.id.status_text);
71 statusText.setText(String.format("%d/%d", photoIndex + 1,
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 126 TextView statusText = (TextView) mContentView.findViewById(R.id.status_text);
127 statusText.setText("Sending: " + uri);
213 private TextView statusText;
217 * @param statusText
219 public FileServerAsyncTask(Context context, View statusText) {
221 this.statusText = (TextView) statusText;
258 statusText.setText("File copied - " + result);
273 statusText.setText("Opening a server socket");
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 73 final int statusText;
76 statusText = R.string.uninstall_done;
82 statusText = R.string.uninstall_failed_device_policy_manager;
87 statusText = R.string.uninstall_failed;
90 mStatusTextView.setText(statusText);
  /external/webkit/Source/WebKit/chromium/src/
WebHTTPLoadInfo.cpp 86 void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText)
89 m_private->httpStatusText = statusText;
  /external/webkit/Source/WebCore/inspector/front-end/
HAREntry.js 77 statusText: this._resource.statusText,
NetworkManager.js 93 resource.statusText = response.statusText;
275 resource.statusText = response.statusText;
ResourceHeadersView.js 265 var statusTextEscaped = this._resource.statusCode + " " + this._resource.statusText.escapeHTML();
NetworkPanel.js     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebCoreResourceLoader.cpp 149 jstring statusText, jstring mimeType, jlong expectedLength,
171 if (statusText) {
172 WTF::String status = jstringToWtfString(env, statusText);
  /external/webkit/Source/WebKit/win/
WebURLResponse.cpp 375 String statusText = CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(statusCode);
376 if (!statusText)
379 *statusString = BString(statusText).release();
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.idl 106 readonly attribute DOMString statusText
XMLHttpRequest.h 80 String statusText(ExceptionCode&) const;
XMLHttpRequest.cpp 941 String XMLHttpRequest::statusText(ExceptionCode& ec) const
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java 266 String statusText = getString(R.string.status_label) +
269 reportReq.getRecipient(), statusText));
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview_p.h 96 Q_PROPERTY(QString statusText READ statusText NOTIFY statusTextChanged)
155 QString statusText() const;
qdeclarativewebview.cpp 64 QString statusText;
689 \qmlproperty string WebView::statusText
696 d->statusText = text;
705 QString QDeclarativeWebView::statusText() const
707 return d->statusText;
    [all...]
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 74 mStatus = (TextView) findViewById(R.id.statusText);
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.cpp 242 void ResourceResponseBase::setHTTPStatusText(const String& statusText)
246 m_httpStatusText = statusText;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 429 void WebChromeClient::setStatusbarText(const String& statusText)
433 uiDelegate->setStatusText(m_webView, BString(statusText));
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 237 responseObject->setString("statusText", response.resourceLoadInfo() ? response.resourceLoadInfo()->httpStatusText : response.httpStatusText());
499 responseObject->setString("statusText", response.statusText());
  /frameworks/base/core/java/android/webkit/
LoadListener.java     [all...]

Completed in 1541 milliseconds

1 2