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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ResponseInit.h 17 , statusText("OK")
20 // FIXME: Spec uses ByteString for statusText. http://crbug.com/347426
21 options.get("statusText", statusText);
26 String statusText;
Response.cpp 34 response.setStatusText(statusText());
41 , m_statusText(responseInit.statusText)
Response.h 31 String statusText() const { return m_statusText; }
  /external/chromium_org/third_party/WebKit/Source/platform/network/
WebSocketHandshakeResponse.cpp 59 const String& WebSocketHandshakeResponse::statusText() const
64 void WebSocketHandshakeResponse::setStatusText(const String& statusText)
66 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);
WebServiceWorkerResponse.cpp 15 WebString statusText;
45 void WebServiceWorkerResponse::setStatusText(const WebString& statusText)
47 m_private->statusText = statusText;
50 WebString WebServiceWorkerResponse::statusText() const
52 return m_private->statusText;
WebHTTPLoadInfo.cpp 85 void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText)
88 m_private->httpStatusText = statusText;
  /external/chromium_org/tools/sheriffing/
buildinfo.js 8 var statusText;
10 statusText = 'running ' + json.currentStep.name;
12 statusText = json.text.join(' ');
17 if (statusText.indexOf('exception') != -1) {
19 } else if (statusText.indexOf('running') != -1) {
21 } else if (statusText.indexOf('successful') != -1) {
23 } else if (statusText.indexOf('failed') != -1) {
25 } else if (statusText.indexOf('offline') != -1) {
27 } else if (statusText.indexOf('warnings') != -1) {
38 this.statusText = statusText
    [all...]
  /external/chromium_org/content/test/data/service_worker/
sync.js 10 statusText: 'OK'
fetch_event.js 12 statusText: 'Moved Permanently',
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 103 final String statusText;
106 statusText = getString(R.string.uninstall_done);
109 Toast.makeText(ctx, statusText, Toast.LENGTH_LONG).show();
116 statusText = getString(R.string.uninstall_failed_device_policy_manager);
140 statusText = getString(R.string.uninstall_blocked_device_owner);
144 statusText = getString(R.string.uninstall_failed);
147 statusText = String.format(
155 statusText = getString(R.string.uninstall_failed);
158 mStatusTextView.setText(statusText);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/
fetchPolyfill.js 34 statusText: xhr.statusText,
  /external/chromium_org/third_party/WebKit/public/platform/
WebServiceWorkerResponse.h 47 WebString statusText() const;
  /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");
  /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/extensions/renderer/resources/
greasemonkey_api.js 34 statusText: isComplete ? xhr.statusText : "",
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h 103 int readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText);
WebSocketHandshake.cpp 283 String statusText;
284 int lineLength = readStatusLine(header, len, statusCode, statusText);
293 m_response.setStatusText(statusText);
376 // statusCode and statusText will be set to -1 and a null string, respectively.
377 int WebSocketHandshake::readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText)
384 statusText = String();
442 statusText = String(space2 + 1, end - space2 - 3); // Exclude "\r\n".
  /external/chromium_org/remoting/webapp/
wcs_sandbox_container.js 259 statusText: xhr.statusText,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 81 readonly attribute DOMString statusText;
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net.js 72 reject(Error(xhr.statusText));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestHeadersView.js 389 statusCodeImage.title = this._request.statusCode + " " + this._request.statusText;
401 var statusText = this._request.statusCode + " " + this._request.statusText;
403 statusText += " " + WebInspector.UIString("(from cache)");
406 statusTextElement.textContent = statusText;

Completed in 1505 milliseconds

1 2