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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog_openssl.cc 12 CryptoModulePasswordReason reason,
20 CryptoModulePasswordReason reason,
crypto_module_password_dialog.h 26 // An enum to describe the reason for the password request.
39 // |module|. |reason| describes the purpose of the authentication and
45 CryptoModulePasswordReason reason,
52 NewCryptoModuleBlockingDialogDelegate(CryptoModulePasswordReason reason,
59 CryptoModulePasswordReason reason,
67 CryptoModulePasswordReason reason,
  /external/chromium_org/chrome/installer/gcapi/
gcapi_test.cc 12 DWORD reason = 0; local
20 FALSE, GCAPI_INVOKED_STANDARD_SHELL, &reason);
22 TRUE, GCAPI_INVOKED_STANDARD_SHELL, &reason);
27 printf("Static call returned result as %d and reason as %d.\n",
28 result_flag_on, reason);
41 DWORD reason = 0; local
46 BOOL result_flag_off = gccfn(FALSE, GCAPI_INVOKED_STANDARD_SHELL, &reason);
47 BOOL result_flag_on = gccfn(TRUE, GCAPI_INVOKED_STANDARD_SHELL, &reason);
52 printf("Dynamic call returned result as %d and reason as %d.\n",
53 result_flag_on, reason);
    [all...]
  /external/chromium_org/jingle/notifier/listener/
fake_push_client_observer.cc 19 NotificationsDisabledReason reason) {
20 last_notifications_disabled_reason_ = reason;
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
BlockExceptions.mm 34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalProfilers.idl 36 void dumpHeapProfiling(DOMString reason);
  /external/chromium_org/third_party/WebKit/public/platform/
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
65 WebURLError() : reason(0), isCancellation(false) { }
  /external/smack/src/org/jivesoftware/smackx/muc/
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);
  /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...]
  /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/chromium_org/third_party/WebKit/Source/wtf/
RefCountedLeakCounter.cpp 51 void RefCountedLeakCounter::suppressMessages(const char* reason)
55 leakMessageSuppressionReasons->add(reason);
58 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason)
61 ASSERT(leakMessageSuppressionReasons->contains(reason));
62 leakMessageSuppressionReasons->remove(reason);
77 // This logs only one reason. Later we could change it so we log all the reasons.
  /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/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/chromium_org/base/win/
dllmain.cc 43 static void NTAPI on_callback(PVOID h, DWORD reason, PVOID reserved);
94 BOOL WINAPI DllMain(PVOID h, DWORD reason, PVOID reserved) {
95 if (DLL_PROCESS_DETACH == reason && base::win::ShouldCrashOnProcessDetach())
98 if (DLL_THREAD_DETACH != reason && DLL_PROCESS_DETACH != reason)
107 (*it)(h, reason, reserved);
112 static void NTAPI on_callback(PVOID h, DWORD reason, PVOID reserved) {
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.h 48 String reason; member in struct:WebCore::CloseEventInit
58 static PassRefPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason)
60 return adoptRef(new CloseEvent(wasClean, code, reason));
70 String reason() const { return m_reason; } function in class:WebCore::CloseEvent
84 CloseEvent(bool wasClean, int code, const String& reason)
88 , m_reason(reason)
97 , m_reason(initializer.reason)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_flush.c 48 const char *reason)
55 lp_setup_flush(llvmpipe->setup, fence, reason);
79 const char *reason )
82 llvmpipe_flush(pipe, &fence, reason);
105 const char *reason)
121 llvmpipe_finish(pipe, reason);
127 llvmpipe_flush(pipe, NULL, reason);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.c 48 const char *reason)
55 lp_setup_flush(llvmpipe->setup, fence, reason);
79 const char *reason )
82 llvmpipe_flush(pipe, &fence, reason);
105 const char *reason)
121 llvmpipe_finish(pipe, reason);
127 llvmpipe_flush(pipe, NULL, reason);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebURLError.cpp 53 reason = error.errorCode();
63 if (!reason)
66 ResourceError resourceError = ResourceError(domain, reason,
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/chromium/chrome/browser/ui/
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,

Completed in 2542 milliseconds

1 23 4 5 6 7 8 91011>>