HomeSort by relevance Sort by last modified time
    Searched full:reason (Results 101 - 125 of 6774) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.h 40 const char *reason);
44 const char *reason );
54 const char *reason);
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/skia/src/ports/
SkTLS_win.cpp 49 void NTAPI onTLSCallback(PVOID unused, DWORD reason, PVOID unused2) {
50 if ((DLL_THREAD_DETACH == reason || DLL_PROCESS_DETACH == reason) && gOnce) {
  /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);
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
RoomInvitation.java 65 * Text provided by the inviter explaining the reason why the invitee is invited.
67 private String reason; field in class:RoomInvitation
69 public RoomInvitation(Type type, String invitee, String sessionID, String reason) {
73 this.reason = reason;
96 return reason;
115 if (reason != null) {
116 buf.append("<reason>").append(reason).append("</reason>");
    [all...]
RoomTransfer.java 65 * Text provided by the inviter explaining the reason why the invitee is invited.
67 private String reason; field in class:RoomTransfer
69 public RoomTransfer(RoomTransfer.Type type, String invitee, String sessionID, String reason) {
73 this.reason = reason;
96 return reason;
115 if (reason != null) {
116 buf.append("<reason>").append(reason).append("</reason>");
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneNotifier.java 40 /** TODO - reason should never be null */
41 public void notifyDataConnection(Phone sender, String reason, String apnType,
44 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TestPhoneNotifier.java 51 public void notifyDataConnection(Phone sender, String reason, String apnType) {
54 public void notifyDataConnection(Phone sender, String reason, String apnType,
58 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType) {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLKeyException.java 30 * @param reason
33 public SSLKeyException(String reason) {
34 super(reason);
SSLPeerUnverifiedException.java 32 * @param reason
35 public SSLPeerUnverifiedException(String reason) {
36 super(reason);
SSLProtocolException.java 31 * @param reason
34 public SSLProtocolException(String reason) {
35 super(reason);
  /external/chromium_org/content/browser/download/
download_file_impl.cc 120 DownloadInterruptReason reason = file_.Rename(new_path); local
121 if (reason != DOWNLOAD_INTERRUPT_REASON_NONE) {
134 base::Bind(callback, reason, new_path));
144 DownloadInterruptReason reason = DOWNLOAD_INTERRUPT_REASON_NONE; local
147 reason = file_.Rename(new_path);
149 if (reason == DOWNLOAD_INTERRUPT_REASON_NONE) {
156 reason = file_.AnnotateWithSourceInformation();
159 if (reason != DOWNLOAD_INTERRUPT_REASON_NONE) {
172 base::Bind(callback, reason, new_path));
215 DownloadInterruptReason reason = DOWNLOAD_INTERRUPT_REASON_NONE local
    [all...]
download_file.h 26 // Callback used with Initialize. On a successful initialize, |reason| will
28 // set to the reason for the failure.
29 typedef base::Callback<void(DownloadInterruptReason reason)>
32 // Callback used with Rename*(). On a successful rename |reason| will be
34 // was done to. On a failed rename, |reason| will contain the
36 typedef base::Callback<void(DownloadInterruptReason reason,
44 // on success, or a network download interrupt reason on failure.
  /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;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
TrampolineActivity.java 49 private static final String KEY_REASON = "reason";
61 final int reason; local
67 reason = cursor.getInt(cursor.getColumnIndexOrThrow(DownloadManager.COLUMN_REASON));
77 Log.d(Constants.TAG, "Found " + id + " with status " + status + ", reason " + reason);
86 if (reason == DownloadManager.PAUSED_QUEUED_FOR_WIFI) {
103 FailedDialogFragment.show(getFragmentManager(), id, reason); local
160 public static void show(FragmentManager fm, long id, int reason) {
164 args.putInt(KEY_REASON, reason);
178 final int reason = getArguments().getInt(KEY_REASON) local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
47 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
98 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
107 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
108 - (id) initWithName:(NSString *)aMsg reason:(NSString *)aCause userInfo:(NSDictionary *)userInfo;
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog_nss.cc 32 browser::CryptoModulePasswordReason reason,
51 browser::CryptoModulePasswordReason reason,
56 reason_(reason),
136 browser::CryptoModulePasswordReason reason,
142 (new SlotUnlocker(modules, reason, host, callback))->Start();
150 browser::CryptoModulePasswordReason reason,
156 UnlockSlotsIfNecessary(modules, reason, host, callback);
  /external/chromium_org/content/browser/
power_save_blocker_win.cc 20 HANDLE CreatePowerRequest(POWER_REQUEST_TYPE type, const std::string& reason) {
42 string16 wide_reason = ASCIIToUTF16(reason);
46 context.Reason.SimpleReasonString = const_cast<wchar_t*>(wide_reason.c_str());
113 Delegate(PowerSaveBlockerType type, const std::string& reason)
114 : type_(type), reason_(reason) {}
161 const std::string& reason)
162 : delegate_(new Delegate(type, 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/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLDataExceptionTest.java 48 "The reason of SQLDataException set and get should be equivalent",
62 assertNull("The reason of SQLDataException should be null",
79 "The reason of SQLDataException set and get should be equivalent",
96 "The reason of SQLDataException set and get should be equivalent",
112 assertNull("The reason of SQLDataException should be null",
127 assertNull("The reason of SQLDataException should be null",
144 "The reason of SQLDataException set and get should be equivalent",
161 "The reason of SQLDataException set and get should be equivalent",
178 "The reason of SQLDataException set and get should be equivalent",
194 "The reason of SQLDataException set and get should be equivalent"
    [all...]
SQLFeatureNotSupportedExceptionTest.java 50 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
68 "The reason of SQLFeatureNotSupportedException should be null",
86 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
105 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
123 "The reason of SQLFeatureNotSupportedException should be null",
141 "The reason of SQLFeatureNotSupportedException should be null",
159 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
177 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
195 "The reason of SQLFeatureNotSupportedException set and get should be equivalent",
213 "The reason of SQLFeatureNotSupportedException set and get should be equivalent"
    [all...]
SQLIntegrityConstraintViolationExceptionTest.java 50 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
69 "The reason of SQLIntegrityConstraintViolationException should be null",
88 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
108 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
128 "The reason of SQLIntegrityConstraintViolationException should be null",
146 "The reason of SQLIntegrityConstraintViolationException should be null",
166 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
187 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
208 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent",
228 "The reason of SQLIntegrityConstraintViolationException set and get should be equivalent"
    [all...]
SQLInvalidAuthorizationSpecExceptionTest.java 50 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
69 "The reason of SQLInvalidAuthorizationSpecException should be null",
88 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
108 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
128 "The reason of SQLInvalidAuthorizationSpecException should be null",
146 "The reason of SQLInvalidAuthorizationSpecException should be null",
165 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
185 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
205 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent",
224 "The reason of SQLInvalidAuthorizationSpecException set and get should be equivalent"
    [all...]
SQLNonTransientConnectionExceptionTest.java 50 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
68 "The reason of SQLNonTransientConnectionException should be null",
87 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
107 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
126 "The reason of SQLNonTransientConnectionException should be null",
144 "The reason of SQLNonTransientConnectionException should be null",
163 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
183 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
203 "The reason of SQLNonTransientConnectionException set and get should be equivalent",
222 "The reason of SQLNonTransientConnectionException set and get should be equivalent"
    [all...]
SQLNonTransientExceptionTest.java 49 "The reason of SQLNonTransientException set and get should be equivalent",
64 assertNull("The reason of SQLNonTransientException should be null",
81 "The reason of SQLNonTransientException set and get should be equivalent",
98 "The reason of SQLNonTransientException set and get should be equivalent",
114 assertNull("The reason of SQLNonTransientException should be null",
129 assertNull("The reason of SQLNonTransientException should be null",
146 "The reason of SQLNonTransientException set and get should be equivalent",
163 "The reason of SQLNonTransientException set and get should be equivalent",
180 "The reason of SQLNonTransientException set and get should be equivalent",
196 "The reason of SQLNonTransientException set and get should be equivalent"
    [all...]

Completed in 989 milliseconds

1 2 3 45 6 7 8 91011>>