/packages/apps/PackageInstaller/res/values/ |
strings.xml | 51 <!-- Reason displayed when installation fails because the installation package itself is invalid 54 <!-- Reason displayed when installation fails because the package an existing package is 58 <!-- Reason displayed when installation fails because the package specifies a minimum compatible 62 <!-- Reason displayed when installation fails because the package specifies it is compatible 66 <!-- Reason displayed when installation fails because the package specifies it is compatible 70 <!-- Reason displayed when installation fails because the package was deleted during the 74 <!-- Reason displayed when installation fails because the package could not be verified 78 <!-- Reason displayed when installation fails because the package could not be verified 82 <!-- Message presented when an application could not be installed on the tablet for some reason. [CHAR LIMIT=100] --> 84 <!-- Message presented when an application could not be installed on the phone for some reason. [CHAR LIMIT=100] -- [all...] |
/external/chromium_org/net/websockets/ |
websocket_channel.cc | 191 const std::string& reason) { 201 // TODO(ricea): Validate |code|? Check that |reason| is valid UTF-8? 203 SendClose(code, reason); // Sets state_ to SEND_CLOSED 361 std::string reason = "Abnormal Closure"; local 364 reason = closing_reason_; 366 event_interface_->OnDropChannel(code, reason); 550 std::string reason; local 551 ParseClose(data_buffer, &code, &reason); 558 SendClose(code, reason); // Sets state_ to CLOSE_WAIT 561 closing_reason_ = reason; [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WorkerThreadableWebSocketChannel.cpp | 132 void WorkerThreadableWebSocketChannel::close(int code, const String& reason) 135 m_bridge->close(code, reason); 138 void WorkerThreadableWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) 148 m_bridge->fail(reason, level, callStack->at(0).sourceURL(), callStack->at(0).lineNumber()); 152 m_bridge->fail(reason, level, m_sourceURLAtConnection, m_lineNumberAtConnection); 155 m_bridge->fail(reason, level, sourceURL, lineNumber); 258 void WorkerThreadableWebSocketChannel::Peer::close(int code, const String& reason) 263 m_mainWebSocketChannel->close(code, reason); 266 void WorkerThreadableWebSocketChannel::Peer::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) 271 m_mainWebSocketChannel->fail(reason, level, sourceURL, lineNumber) [all...] |
/external/chromium_org/chrome/browser/chromeos/ |
swap_metrics.cc | 46 explicit Backend(const std::string& reason); 83 const std::string& reason, 87 const std::string& reason, 108 // Reason for sampling. 121 SwapMetrics::Backend::Backend(const std::string& reason) 126 reason_(reason) { 216 const std::string& reason, 221 reason.c_str(), 237 const std::string& reason, 242 reason.c_str() [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
bcmevent.h | 60 uint32 reason; /* Reason code (if applicable) */ member in struct:__anon32650 74 uint32 reason; /* Reason code (if applicable) */ member in struct:__anon32651 113 #define WLC_E_ROAM 19 /* roam attempt occurred: indicate status & reason */ 117 #define WLC_E_PRUNE 23 /* AP was pruned from join list for reason */ 250 /* roam reason codes */ 268 /* prune reason codes */ 285 /* WPA failure reason codes carried in the WLC_E_PSK_SUP event */ 286 #define WLC_E_SUP_OTHER 0 /* Other reason */ [all...] |
/ndk/sources/cxx-stl/gabi++/src/ |
helper_func_internal.cc | 69 results.reason = _URC_FATAL_PHASE1_ERROR; 74 results.reason = _URC_FATAL_PHASE1_ERROR; 79 results.reason = _URC_FATAL_PHASE2_ERROR; 83 results.reason = _URC_FATAL_PHASE1_ERROR; 92 results.reason = _URC_CONTINUE_UNWIND; 126 results.reason = _URC_CONTINUE_UNWIND; 136 results.reason = _URC_HANDLER_FOUND; 140 results.reason = _URC_CONTINUE_UNWIND; 163 results.reason = _URC_HANDLER_FOUND; 195 results.reason = _URC_HANDLER_FOUND [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
AMutableArray.m | 107 reason:[NSString stringWithFormat:@"Attempt to retrieve objectAtIndex %d past end", anIdx] 123 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"Attempt to insert nil objectAtIndex" userInfo:nil]; 126 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insertObjectAtIndex past end" userInfo:nil]; 144 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insert removeObjectAtIndex past end" userInfo:nil]; 160 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeLastObject from 0" userInfo:nil]; 172 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeAllObjects from 0" userInfo:nil]; 192 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to replace object past end" userInfo:nil];
|
/external/chromium_org/content/child/npapi/ |
plugin_stream.cc | 237 bool PluginStream::Close(NPReason reason) { 242 if (reason == NPRES_DONE) { 256 if (reason == NPRES_DONE) 262 NPError err = instance_->NPP_DestroyStream(&stream_, reason); 267 Notify(reason); 275 void PluginStream::Notify(NPReason reason) { 277 instance_->NPP_URLNotify(stream_.url, reason, notify_data_);
|
/external/chromium_org/chrome/browser/resources/options/ |
pref_ui.js | 11 * The element is disabled if at least one reason is true, and the reasons 15 * @param {string} reason The reason for disabling the element. 17 * for the given |reason|. 19 function updateDisabledState_(el, reason, disabled) { 23 // The element has been previously disabled without a reason, so we add 28 // If the element is not disabled, there should be no reason, except for 35 el.disabledReasons[reason] = true; 37 delete el.disabledReasons[reason]; 95 setDisabled: function(reason, disabled) [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
data_type_manager_impl.cc | 79 syncer::ConfigureReason reason) { 81 ConfigureImpl(desired_types, reason); 86 syncer::ConfigureReason reason) { 89 ConfigureImpl(remainder, reason); 94 syncer::ConfigureReason reason) { 96 DCHECK_NE(reason, syncer::CONFIGURE_REASON_UNKNOWN); 98 << " with reason " << reason; 107 reason == syncer::CONFIGURE_REASON_RECONFIGURATION && 120 last_configure_reason_ = reason; [all...] |
data_type_manager_impl.h | 52 syncer::ConfigureReason reason) OVERRIDE; 57 syncer::ConfigureReason reason) OVERRIDE; 94 void Restart(syncer::ConfigureReason reason); 112 syncer::ConfigureReason reason); 136 // The reason for the last reconfigure attempt. Note: this will be set to a
|
/external/chromium_org/remoting/protocol/ |
jingle_session.cc | 48 Authenticator::RejectionReason reason) { 49 switch (reason) { 362 // here. Parse the response stanza to find failure reason. 529 switch (message.reason) { 609 JingleMessage::Reason reason; local 612 reason = JingleMessage::SUCCESS; 616 reason = JingleMessage::DECLINE; 619 reason = JingleMessage::INCOMPATIBLE_PARAMETERS; 622 reason = JingleMessage::CANCEL [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecICU.cpp | 362 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err) 364 if (reason == UCNV_UNASSIGNED) { 371 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err); 376 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err) 379 if (reason == UCNV_UNASSIGNED && (outChar = fallbackForGBK(codePoint))) { 385 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err); 390 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err) 392 if (reason == UCNV_UNASSIGNED) { 399 urlEscapedEntityCallback(context, fromUArgs, codeUnits, length, codePoint, reason, err); 402 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err) [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
ConnectivityManagerMobileTest.java | 136 log("reason: " + 142 log("reason: " + 181 log("reason: " + 188 log("reason: " + 252 log("reason: " + 298 log("reason: " + 305 log("reason: " + 340 log("reason: " + 364 log("reason: " + 370 log("reason: " [all...] |
/external/chromium_org/content/browser/ |
power_save_blocker_x11.cc | 75 Delegate(PowerSaveBlockerType type, const std::string& reason); 133 const std::string& reason) 135 reason_(reason), 205 // reason: The reason for the inhibit 234 // reason: The reason for the inhibit 334 PowerSaveBlockerType type, const std::string& reason) 335 : delegate_(new Delegate(type, reason)) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationSyncDisabledTipView.java | 197 LogUtils.i(LOG_TAG, "Sync is off with reason %d", mReasonSyncOff); 238 private void setReasonSyncOff(int reason) { 239 if (mReasonSyncOff != reason) { 240 mReasonSyncOff = reason; 312 final String reason; local 316 reason = "auto_sync_off"; 320 reason = "account_sync_off"; 323 reason = null; 326 Analytics.getInstance().sendEvent("list_swipe", "sync_disabled_tip", reason, 0);
|
/external/apache-http/src/org/apache/http/impl/ |
DefaultHttpResponseFactory.java | 57 /** The catalog for looking up reason phrases. */ 64 * @param catalog the catalog of reason phrases 69 ("Reason phrase catalog must not be null."); 92 final String reason = reasonCatalog.getReason(status, loc); local 93 StatusLine statusline = new BasicStatusLine(ver, status, reason);
|
/external/chromium_org/chrome/test/webdriver/commands/ |
chrome_commands.cc | 271 std::string reason; local 272 if (!GetStringParameter("reason", &reason)) { 273 response->SetError(new Error(kBadRequest, "'reason' missing or invalid")); 277 Error* error = session_->HeapProfilerDump(reason);
|
/external/chromium_org/jingle/notifier/listener/ |
non_blocking_push_client.cc | 45 NotificationsDisabledReason reason) OVERRIDE; 130 NotificationsDisabledReason reason) { 135 parent_push_client_, reason)); 228 NotificationsDisabledReason reason) { 231 OnNotificationsDisabled(reason));
|
/external/chromium_org/ppapi/utility/websocket/ |
websocket_api.h | 48 /// <code>code</code> and <code>reason</code>. 51 /// @param[in] reason A <code>Var</code> of string type which represents the 52 /// WebSocket close reason. Ignored if it is undefined type. 57 int32_t Close(uint16_t code, const Var& reason); 113 const Var& reason) = 0;
|
/external/chromium_org/sandbox/win/src/ |
Wow64.cc | 165 DWORD reason = ::WaitForSingleObject(process_info.process_handle(), INFINITE); 171 if (WAIT_TIMEOUT == reason) 186 DWORD reason = ::WaitForSingleObject(dll_load_, INFINITE); local 187 if (WAIT_TIMEOUT == reason || WAIT_ABANDONED == reason)
|
/external/llvm/include/llvm/Support/ |
ErrorHandling.h | 27 const std::string& reason, 77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 79 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 81 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 83 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
|
/external/qemu/ |
cbuffer.c | 31 const char* reason = NULL; local 34 reason = "rpos is out of bounds"; 37 reason = "count is incorrect"; 39 if (!reason) 43 file, lineno, reason, cb->rpos, cb->count, cb->size);
|
/frameworks/base/core/java/android/webkit/ |
GeolocationPermissions.java | 88 // Must be a no-op for backward compatibility: see the hidden constructor for reason. 103 // Must be a no-op for backward compatibility: see the hidden constructor for reason. 112 // Must be a no-op for backward compatibility: see the hidden constructor for reason. 121 // Must be a no-op for backward compatibility: see the hidden constructor for reason. 128 // Must be a no-op for backward compatibility: see the hidden constructor for reason.
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
signin_screen_handler.cc | 157 const char* ErrorReasonString(ErrorScreenActor::ErrorReason reason) { 158 switch (reason) { 197 ErrorScreenActor::ErrorReason reason) { 199 reason != ErrorScreenActor::ERROR_REASON_PORTAL_DETECTED && 200 reason != ErrorScreenActor::ERROR_REASON_LOADING_TIMEOUT; 204 ErrorScreenActor::ErrorReason reason) { 206 reason == ErrorScreenActor::ERROR_REASON_PORTAL_DETECTED; 210 ErrorScreenActor::ErrorReason reason, 213 reason == ErrorScreenActor::ERROR_REASON_PROXY_AUTH_CANCELLED || 214 reason == ErrorScreenActor::ERROR_REASON_PROXY_CONNECTION_FAILED | [all...] |