/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/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/chrome/browser/resources/ |
imageburner.html | 139 .statusText { 236 var statusText = document.createElement('div'); 237 statusText.id = id + 'StatusText'; 238 statusText.className = 'statusText'; 239 statusDiv.appendChild(statusText); 260 case 'statusText': 291 case 'statusText':
|
/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);
|
/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,
|
/external/webkit/Source/WebKit/chromium/src/ |
WebHTTPLoadInfo.cpp | 86 void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText) 89 m_private->httpStatusText = statusText;
|
/development/samples/RSSReader/res/layout/ |
rss_layout.xml | 36 <TextView android:id="@+id/statustext"
|
/external/webkit/Source/WebCore/inspector/front-end/ |
NetworkManager.js | 93 resource.statusText = response.statusText; 275 resource.statusText = response.statusText;
|
HAREntry.js | 77 statusText: this._resource.statusText,
|
/packages/apps/SpeechRecorder/res/layout/ |
recorder.xml | 35 <TextView android:id="@+id/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...] |
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequest.idl | 106 readonly attribute DOMString statusText
|
XMLHttpRequest.h | 80 String statusText(ExceptionCode&) const;
|
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/ |
tst_qdeclarativewebview.cpp | 107 QCOMPARE(wv->property("statusText").toString(), QLatin1String("status here")); 183 QCOMPARE(wv->property("statusText").toString(), QLatin1String("status here")); 205 QCOMPARE(wv->property("statusText").toString(), QString()); 262 QCOMPARE(wv->property("statusText").toString(), QString()); // HTML 'status bar' text, not error message
|
/frameworks/base/docs/html/guide/topics/admin/ |
device-admin.jd | 633 String statusText; 642 statusText = "Expiration in " + countdownString(mSecUntilExpiration); 644 statusText = "Expired " + countdownString(-mSecUntilExpiration) + " ago"; 649 statusText += " / timeout period " + countdownString(expirationTimeout); 652 statusText += " / Aggregate "; 656 statusText += "expiration in " + countdownString(mSecUntilExpiration); 658 statusText += "expired " + countdownString(-mSecUntilExpiration) + " ago"; 661 statusText = "<inactive>"; 663 mPasswordExpirationStatus.setText(statusText);</pre> [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();
|
/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/WebCore/platform/network/ |
ResourceResponseBase.cpp | 242 void ResourceResponseBase::setHTTPStatusText(const String& statusText) 246 m_httpStatusText = statusText;
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
download_item_cell.mm | 242 string16 statusText = downloadModel->GetStatusText(); 243 if (statusText.empty()) { 249 NSString* statusString = base::SysUTF16ToNSString(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());
|