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

12 3 4 5 6 7 8 91011>>

  /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...]
SQLWarning.java 30 * Creates an {@code SQLWarning} object. The reason string is set to {@code
38 * Creates an {@code SQLWarning} object. The reason string is set to the
39 * given reason string, the {@code SQLState} string is set to {@code null}
43 * the reason why this warning is issued.
50 * Creates an {@code SQLWarning} object. The reason string is set to the
51 * given reason string, the {@code SQLState} string is set to the given
55 * the reason why this warning is issued.
64 * Creates an {@code SQLWarning} object. The reason string is set to the
65 * given reason string, the {@code SQLState} string is set to the given
70 * the reason why this warning is issued
    [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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.5-1.js 52 testcases[0].reason += " Object == null" ;
55 testcases[0].reason += " Function == null";
58 testcases[0].reason += " String == null";
61 testcases[0].reason += " Array == null";
64 testcases[0].reason += " Function == null";
67 testcases[0].reason += " Math == null";
70 testcases[0].reason += " Boolean == null";
73 testcases[0].reason += " Date == null";
77 testcases[0].reason += " NaN == null";
80 testcases[0].reason += " Infinity == null"
    [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/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...]
  /frameworks/base/core/java/android/os/
Power.java 96 * @param reason code to pass to the kernel (e.g. "recovery"), or null.
98 * @throws IOException if reboot fails for some reason (eg, lack of
101 public static void reboot(String reason) throws IOException
103 rebootNative(reason);
106 private static native void rebootNative(String reason) throws IOException ;
  /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,
crypto_module_password_dialog.h 27 // An enum to describe the reason for the password request.
40 // |module|. |reason| describes the purpose of the authentication and
45 CryptoModulePasswordReason reason,
53 CryptoModulePasswordReason reason,
60 browser::CryptoModulePasswordReason reason,
68 browser::CryptoModulePasswordReason reason,
  /external/webkit/Source/WebCore/platform/mac/
BlockExceptions.mm 34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
  /external/webkit/Source/WebKit/chromium/public/
WebURLError.h 44 // A namespace for "reason" to support various layers generating
49 // A numeric error code detailing the reason for this error. A value
53 int reason; member in struct:WebKit::WebURLError
58 WebURLError() : reason(0) { }
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallForwardInfo.java 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo
36 + " reason: " + reason
  /libcore/luni/src/main/java/javax/net/ssl/
SSLException.java 29 * Creates a new {@code SSLException} with the specified reason.
31 * @param reason
32 * the reason for the exception.
34 public SSLException(String reason) {
35 super(reason);
  /external/llvm/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason);
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason);
77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason);
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason);
79 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason);
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.mm 63 NSString *reason;
65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code];
71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo];
73 [reason release];
  /external/webkit/Source/WebKit/chromium/src/
WebURLError.cpp 53 reason = error.errorCode();
61 if (!reason)
64 return ResourceError(domain, reason,
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcController.java 91 * Causes {@code failed()} to return true on the client side. {@code reason}
97 void setFailed(String reason);
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 30 DWORD reason,
32 return _AtlModule.DllMain(reason, reserved);
  /external/apache-http/src/org/apache/http/
HttpResponse.java 68 * The reason phrase will be determined based on the current
77 * Sets the status line of this response with a reason phrase.
81 * @param reason the reason phrase, or <code>null</code> to omit
83 void setStatusLine(ProtocolVersion ver, int code, String reason);
90 * The reason phrase will be updated according to the new status code,
107 * Updates the status line of this response with a new reason phrase.
111 * @param reason the new reason phrase as a single-line string, or
112 * <code>null</code> to unset the reason phras
    [all...]
  /external/openssl/crypto/rand/
rand_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_RAND,0,reason)
  /external/chromium/chrome/browser/chromeos/login/
login_status_consumer.h 32 explicit LoginFailure(FailureReason reason)
33 : reason_(reason),
35 DCHECK(reason != NETWORK_AUTH_FAILED);
83 const FailureReason& reason() const { return reason_; } function in class:chromeos::LoginFailure
86 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
87 : reason_(reason),
  /external/apache-http/src/org/apache/http/message/
BasicHttpResponse.java 67 * @param catalog the reason phrase catalog, or
69 * reason phrase lookup
70 * @param locale the locale for looking up reason phrases, or
87 * The response will not have a reason phrase catalog and
98 * The response will not have a reason phrase catalog and
103 * @param reason the reason phrase to the status code, or
108 final String reason) {
109 this(new BasicStatusLine(ver, code, reason), null, null);
149 final String reason) {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
RefCountedLeakCounter.cpp 47 void RefCountedLeakCounter::suppressMessages(const char* reason)
51 leakMessageSuppressionReasons->add(reason);
54 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason)
57 ASSERT(leakMessageSuppressionReasons->contains(reason));
58 leakMessageSuppressionReasons->remove(reason);
73 // This logs only one reason. Later we could change it so we log all the reasons.

Completed in 5245 milliseconds

12 3 4 5 6 7 8 91011>>