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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/network/
WebSocketHandshakeResponse.cpp 58 const String& WebSocketHandshakeResponse::statusText() const
63 void WebSocketHandshakeResponse::setStatusText(const String& statusText)
65 m_statusText = statusText;
WebSocketHandshakeResponse.h 47 const String& statusText() const;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSocketHandshakeResponseInfo.cpp 55 void WebSocketHandshakeResponseInfo::setStatusText(const WebString& statusText)
57 m_private->setStatusText(statusText);
WebHTTPLoadInfo.cpp 85 void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText)
88 m_private->httpStatusText = statusText;
  /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 76 final int statusText;
79 statusText = R.string.uninstall_done;
82 Toast.makeText(ctx, statusText, Toast.LENGTH_LONG).show();
89 statusText = R.string.uninstall_failed_device_policy_manager;
94 statusText = R.string.uninstall_failed;
97 mStatusTextView.setText(statusText);
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 63 State.StatesEnum.DEVICE_NONE.statusText =
67 State.StatesEnum.DEVICE_USB.statusText =
69 State.StatesEnum.DEVICE_SD.statusText = strings.getString('statusDeviceSD');
70 State.StatesEnum.DEVICE_MUL.statusText =
72 State.StatesEnum.ERROR_NO_NETWORK.statusText =
76 State.StatesEnum.ERROR_DEVICE_TOO_SMALL.statusText =
78 State.StatesEnum.PROGRESS_DOWNLOAD.statusText =
80 State.StatesEnum.PROGRESS_UNZIP.statusText =
82 State.StatesEnum.PROGRESS_BURN.statusText = strings.getString('statusBurn');
83 State.StatesEnum.FAIL.statusText = strings.getString('statusError')
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectServicesList.java 80 TextView statusText = (TextView) v
82 statusText.setText(getDeviceStatus(service.device.status));
  /external/chromium_org/chrome/renderer/resources/extensions/
greasemonkey_api.js 34 statusText: isComplete ? xhr.statusText : "",
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
common.js 30 error = url + ': ' + r.status + ': ' + r.statusText;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h 100 int readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText);
WebSocketHandshake.cpp 303 String statusText;
304 int lineLength = readStatusLine(header, len, statusCode, statusText);
313 m_response.setStatusText(statusText);
406 // statusCode and statusText will be set to -1 and a null string, respectively.
407 int WebSocketHandshake::readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText)
414 statusText = String();
472 statusText = String(space2 + 1, end - space2 - 3); // Exclude "\r\n".
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadAdapter.java 112 final CharSequence statusText;
114 statusText = getDateString();
116 statusText = mResources.getString(getStatusStringId(status));
118 setTextForView(convertView, R.id.status_text, statusText);
  /external/chromium_org/remoting/webapp/
wcs_sandbox_container.js 259 statusText: xhr.statusText,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 79 readonly attribute DOMString statusText;
XMLHttpRequest.h 96 String statusText() const;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NetworkManager.js 171 networkRequest.statusText = response.statusText;
410 networkRequest.statusText = response.statusText;
HAREntry.js 98 statusText: this._request.statusText,
RequestHeadersView.js 386 statusCodeImage.title = this._request.statusCode + " " + this._request.statusText;
398 value.textContent = this._request.statusCode + " " + this._request.statusText;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/debugger/live-headers/
headers.js 52 response.statusText;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.cpp 239 String statusText;
242 statusText = response.resourceLoadInfo()->httpStatusText;
245 statusText = response.httpStatusText();
256 .setStatusText(statusText)
545 .setStatusText(response.statusText())
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java 282 String statusText = getString(R.string.status_label) +
285 reportReq.getRecipient(), statusText, null));
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 74 mStatus = (TextView) findViewById(R.id.statusText);
  /external/chromium_org/native_client_sdk/src/resources/
common.js 370 var statusText = 'NO-STATUSES';
382 statusText = opt_message;
386 statusField.innerHTML = statusText;

Completed in 303 milliseconds

1 2