HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 26 - 50 of 1591) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 39 private final String reason; field in class:ShortestUsageMark
47 * @param reason the reason for this mark.
49 public ShortestUsageMark(String reason)
52 this.reason = reason;
60 * @param reason the reason for this mark.
64 String reason,
68 this(previousUsageMark, reason, cost, clazz, null)
    [all...]
  /external/chromium_org/content/browser/
power_save_blocker_impl.cc 14 const std::string& reason) {
15 return scoped_ptr<PowerSaveBlocker>(new PowerSaveBlockerImpl(type, reason));
  /external/chromium_org/net/http/
http_status_code.cc 14 #define HTTP_STATUS(label, code, reason) case HTTP_ ## label: return reason;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
AutocompleteErrorEvent.idl 28 [InitializedByEventConstructor] readonly attribute DOMString reason;
AutocompleteErrorEvent.h 34 String reason; member in struct:WebCore::AutocompleteErrorEventInit
44 static PassRefPtr<AutocompleteErrorEvent> create(const String& reason)
46 return adoptRef(new AutocompleteErrorEvent(reason));
54 const String& reason() const { return m_reason; } function in class:WebCore::AutocompleteErrorEvent
64 AutocompleteErrorEvent(const String& reason)
66 , m_reason(reason)
73 , m_reason(initializer.reason)
  /frameworks/base/core/java/android/view/
IApplicationToken.aidl 26 boolean keyDispatchingTimedOut(String reason);
  /external/smack/src/org/jivesoftware/smackx/muc/
InvitationRejectionListener.java 34 * @param reason the reason why the invitee declined the invitation.
36 public abstract void invitationDeclined(String invitee, String reason);
  /libcore/crypto/src/main/java/org/conscrypt/
Message.java 55 * @param reason
57 protected void fatalAlert(byte description, String reason) {
58 throw new AlertException(description, new SSLHandshakeException(reason));
64 * @param reason
67 protected void fatalAlert(byte description, String reason, Throwable cause) {
68 throw new AlertException(description, new SSLException(reason, cause));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_flush.h 40 const char *reason);
44 const char *reason );
54 const char *reason);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.h 40 const char *reason);
44 const char *reason );
54 const char *reason);
  /libcore/luni/src/main/java/java/sql/
BatchUpdateException.java 49 * <i>reason</i>, <i>SQLState</i>, and <i>update counts</i> set to {@code
56 * Creates an BatchUpdateException object. The reason is set to
60 * @param cause the Throwable object for the underlying reason this SQLException
69 * Creates an BatchUpdateException object. The Reason string is set to the
74 * @param cause the Throwable object for the underlying reason this SQLException
88 * @param cause the Throwable object for the underlying reason this SQLException
92 public BatchUpdateException(String reason, int[] updateCounts,
94 super(reason, cause);
104 * @param cause the Throwable object for the underlying reason this SQLException
108 public BatchUpdateException(String reason, String SQLState
    [all...]
SQLClientInfoException.java 33 * Creates an SQLClientInfoException object. The Reason string is set to
41 * Creates an SQLClientInfoException object. The Reason string is set to the
42 * given reason string, the SQLState string is set to null and the Error
55 * Creates an SQLClientInfoException object. The Reason string is set to the
64 * the Throwable object for the underlying reason this
74 * Creates an SQLClientInfoException object. The Reason string is set to
75 * reason, and the Map<String,ClientInfoStatus> object is set to the failed
78 * @param reason
79 * the string to use as the Reason string
84 public SQLClientInfoException(String reason,
    [all...]
  /external/javassist/src/main/javassist/compiler/
CompileError.java 23 private String reason; field in class:CompileError
26 reason = s;
31 reason = s;
46 return reason;
50 return "compile error: " + reason;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
DisconnectMessage.java 50 private String reason; field in class:DisconnectMessage
54 return reason;
57 public void setReason(String reason) {
58 this.reason = reason;
  /external/chromium_org/third_party/icu/source/tools/icuinfo/
testplug.c 30 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
47 UPlugReason reason,
50 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
52 if(reason==UPLUG_REASON_QUERY) {
64 UPlugReason reason,
66 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
68 if(reason==UPLUG_REASON_QUERY) {
82 UPlugReason reason,
    [all...]
  /external/icu4c/tools/icuinfo/
testplug.c 30 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
47 UPlugReason reason,
50 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
52 if(reason==UPLUG_REASON_QUERY) {
64 UPlugReason reason,
66 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
68 if(reason==UPLUG_REASON_QUERY) {
82 UPlugReason reason,
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
close_wsh.py 45 code, reason = line.split(' ', 1)
46 if code is None or reason is None:
48 request.ws_stream.close_connection(int(code), reason)
50 # and reason. If you want to send a broken close frame for a test,
52 # > data = struct.pack('!H', int(code)) + reason.encode('UTF-8')
60 code, reason = request.ws_close_code, request.ws_close_reason
65 reason = ''
66 return code, reason
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReasonParser.java 33 * Parser for Reason header.
46 * @param reason the header to parse
48 public ReasonParser(String reason) {
49 super(reason);
71 headerName(TokenTypes.REASON);
74 Reason reason = new Reason(); local
79 reason.setProtocol(value);
80 super.parse(reason);
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi_dll.cc 20 DWORD reason,
22 if (reason == DLL_PROCESS_ATTACH) {
28 } else if (reason == DLL_PROCESS_DETACH) {
  /external/chromium_org/chrome_frame/crash_reporting/
crash_dll.cc 31 extern "C" BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason,
33 if (reason == DLL_PROCESS_ATTACH)
35 else if (reason == DLL_PROCESS_DETACH)
  /external/chromium_org/chrome/app/
delay_load_hook_win.h 15 extern "C" FARPROC WINAPI ChromeDelayLoadHook(unsigned reason,
  /external/chromium_org/chrome/browser/chromeos/system/
automatic_reboot_manager_observer.h 13 enum Reason {
20 virtual void OnRebootScheduled(Reason reason) = 0;
  /external/chromium_org/tools/gyp/test/win/large-pdb/
dllmain.cc 7 BOOL WINAPI DllMain(HINSTANCE hinstance, DWORD reason, LPVOID reserved) {
  /external/qemu/
cpus.h 28 void vm_state_notify(int running, int reason);
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog_openssl.cc 12 browser::CryptoModulePasswordReason reason,
20 browser::CryptoModulePasswordReason reason,

Completed in 777 milliseconds

12 3 4 5 6 7 8 91011>>