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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshakeResponse.h 47 const String& statusText() const;
48 void setStatusText(const String& statusText);
WebSocketHandshakeResponse.cpp 61 const String& WebSocketHandshakeResponse::statusText() const
66 void WebSocketHandshakeResponse::setStatusText(const String& statusText)
68 m_statusText = statusText;
WebSocketHandshake.h 99 int readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText);
WebSocketHandshake.cpp 290 String statusText;
291 int lineLength = readStatusLine(header, len, statusCode, statusText);
300 m_response.setStatusText(statusText);
393 // statusCode and statusText will be set to -1 and a null string, respectively.
394 int WebSocketHandshake::readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText)
401 statusText = String();
457 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 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/third_party/WebKit/Source/core/platform/chromium/support/
WebHTTPLoadInfo.cpp 85 void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText)
88 m_private->httpStatusText = statusText;
  /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;
  /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 223 statusText: xhr.statusText,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 91 [GetterRaisesException] readonly attribute DOMString statusText;
XMLHttpRequest.h 88 String statusText(ExceptionState&) const;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NetworkManager.js 171 networkRequest.statusText = response.statusText;
441 networkRequest.statusText = response.statusText;
HAREntry.js 94 statusText: this._request.statusText,
RequestHeadersView.js 381 statusCodeImage.title = this._request.statusCode + " " + this._request.statusText;
393 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 238 String statusText;
241 statusText = response.resourceLoadInfo()->httpStatusText;
244 statusText = response.httpStatusText();
255 .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/examples/
common.js 321 var statusText = 'NO-STATUSES';
333 statusText = opt_message;
337 statusField.innerHTML = statusText;
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceResponse.cpp 262 void ResourceResponse::setHTTPStatusText(const AtomicString& statusText)
264 m_httpStatusText = statusText;

Completed in 2516 milliseconds

1 2