/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);
|
DefaultUserStatusListener.java | 34 public void kicked(String actor, String reason) { 43 public void banned(String actor, String reason) {
|
UserStatusListener.java | 36 * @param reason the reason provided by the actor to kick you from the room. 38 public abstract void kicked(String actor, String reason); 61 * @param reason the reason provided by the administrator to banned you. 63 public abstract void banned(String actor, String reason);
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
Message.java | 57 * @param reason 59 protected void fatalAlert(byte description, String reason) { 60 throw new AlertException(description, new SSLHandshakeException(reason)); 66 * @param reason 69 protected void fatalAlert(byte description, String reason, Throwable cause) { 70 throw new AlertException(description, new SSLException(reason, cause));
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.5-3.js | 54 testcases[0].reason += " Object == null" ; 57 testcases[0].reason += " Function == null"; 60 testcases[0].reason += " String == null"; 63 testcases[0].reason += " Array == null"; 66 testcases[0].reason += " Function == null"; 69 testcases[0].reason += " Math == null"; 72 testcases[0].reason += " Boolean == null"; 75 testcases[0].reason += " Date == null"; 79 testcases[0].reason += " NaN == null"; 82 testcases[0].reason += " Infinity == null" [all...] |
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...] |
/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/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/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,
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
DelayInformation.java | 33 * information such as the JID of the entity that originally sent the packet as well as the reason 59 private String reason; field in class:DelayInformation 102 * Returns a natural-language description of the reason for the delay or <tt>null</tt> if 105 * @return a natural-language description of the reason for the delay or <tt>null</tt>. 108 return reason; 112 * Sets a natural-language description of the reason for the delay or <tt>null</tt> if 115 * @param reason a natural-language description of the reason for the delay or <tt>null</tt>. 117 public void setReason(String reason) { 118 this.reason = reason [all...] |
/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/opt/telephony/src/java/com/android/internal/telephony/ |
CallForwardInfo.java | 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo 37 + " 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/antlr/antlr-3.4/runtime/Python/unittests/ |
testbase.py | 5 name, reason = self.args 7 (self.__class__.__name__, name, reason)) 10 def broken(reason, *exceptions): 20 raise BrokenTest(test_method.__name__, reason) 23 replacement.todo = 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/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
RevokedOffer.java | 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
36 private String reason;
field in class:RevokedOffer 45 * @param reason the server issued message as to why this revocation was issued.
49 String reason, Date timestamp) {
56 this.reason = reason;
89 return this.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,
|