Searched refs:error (Results 101 - 125 of 446) sorted by path

1234567891011>>

/frameworks/base/core/java/android/print/
H A DIWriteResultCallback.aidl30 void onWriteFailed(CharSequence error, int sequence);
H A DPrintDocumentAdapter.java140 * LayoutResultCallback#onLayoutFailed(CharSequence)}, if an error occurred;
198 * CharSequence)}, if an error occurred; or {@link WriteResultCallback#onWriteCancelled()},
278 * Notifies that an error occurred while writing the data.
280 * @param error The <strong>localized</strong> error message.
281 * shown to the user. May be <code>null</code> if error is unknown.
283 public void onWriteFailed(CharSequence error) { argument
322 * Notifies that an error occurred while laying out the document.
324 * @param error The <strong>localized</strong> error messag
327 onLayoutFailed(CharSequence error) argument
[all...]
H A DPrintManager.java872 public void onLayoutFailed(CharSequence error) { argument
887 callback.onLayoutFailed(error, mSequence);
975 public void onWriteFailed(CharSequence error) { argument
990 callback.onWriteFailed(error, mSequence);
/frameworks/base/core/java/android/printservice/
H A DIPrintServiceClient.aidl34 boolean setPrintJobState(in PrintJobId printJobId, int state, String error);
H A DPrintJob.java157 * not successfully printed due to an error. This is a final state.
246 * @param error The human readable, short, and translated reason
254 public boolean fail(String error) { argument
257 return setState(PrintJobInfo.STATE_FAILED, error);
377 private boolean setState(int state, String error) { argument
379 if (mPrintServiceClient.setPrintJobState(mCachedInfo.getId(), state, error)) {
384 mCachedInfo.setStateReason(error);
/frameworks/base/core/java/android/speech/
H A DIRecognitionListener.aidl60 * A network or recognition error occurred.
62 * @param error code is defined in {@link SpeechRecognizer}
64 void onError(in int error);
H A DRecognitionListener.java62 * A network or recognition error occurred.
64 * @param error code is defined in {@link SpeechRecognizer}
66 void onError(int error); argument
H A DRecognitionService.java172 * @param listener to send the error message to in case of error
268 * The service should call this method when a network or recognition error occurred.
270 * @param error code is defined in {@link SpeechRecognizer}
272 public void error(int error) throws RemoteException { argument
274 mListener.onError(error);
H A DSpeechRecognizer.java86 /** Audio recording error. */
89 /** Server sends error status. */
483 public void onError(final int error) { argument
484 Message.obtain(mInternalHandler, MSG_ERROR, error).sendToTarget();
/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java201 // This is not an error that would prevent synthesis. Hence no
249 public void error() { method in class:FileSynthesisCallback
250 error(TextToSpeech.ERROR_SYNTHESIS);
254 public void error(int errorCode) { method in class:FileSynthesisCallback
255 if (DBG) Log.d(TAG, "FileSynthesisRequest.error()");
H A DPlaybackSynthesisCallback.java90 // This happens when stop() or error() were called before start() was.
210 // Not an error that would prevent synthesis. Hence no
237 // Signal done or error to item
248 public void error() { method in class:PlaybackSynthesisCallback
249 error(TextToSpeech.ERROR_SYNTHESIS);
253 public void error(int errorCode) { method in class:PlaybackSynthesisCallback
254 if (DBG) Log.d(TAG, "error() [will call stop]");
H A DSynthesisCallback.java25 * {@link #error} can be called at any stage in the synthesis process to
26 * indicate that an error has occurred, but if the call is made after a call
80 * This method has to be called if {@link #start} and/or {@link #error} was called.
93 public void error(); method in interface:SynthesisCallback
105 public void error(int errorCode); method in interface:SynthesisCallback
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java48 * made immutable and calling a state mutation method generates an error.
2159 * Sets the error text of this node.
2166 * @param error The error text.
2170 public void setError(CharSequence error) { argument
2172 mError = error;
2176 * Gets the error text of this node.
2178 * @return The error text.
3149 builder.append("; error: ").append(mError);
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java177 /** Generic error */
201 /** Generic file error */
209 * Report an error to the host application. These errors are unrecoverable
213 * @param errorCode The error code corresponding to an ERROR_* value.
214 * @param description A String describing the error.
225 * Report web resource loading error to the host application. These errors usually indicate
231 * @param error Information about the error occured.
233 public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) { argument
236 error
292 onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java196 * This flag is set if the TextView tries to display an error before it
198 * It causes the error to be shown later, when onAttachedToWindow()
449 public void setError(CharSequence error, Drawable icon) { argument
450 mError = TextUtils.stringOrSpannedString(error);
494 * Returns the X offset to make the pointy top of the error point
495 * at the middle of the error icon.
525 * Returns the Y offset to make the pointy top of the error point
526 * at the bottom of the error icon.
H A DTextView.java2656 // From a developer's perspective, the error drawable isn't
4032 ss.error = getError();
4095 if (ss.error != null) {
4096 final CharSequence error = ss.error;
4097 // Display the error later, after the first layout pass
4101 setError(error);
4893 * Returns the error message that was set to be displayed with
4894 * {@link #setError}, or <code>null</code> if no error was set
4895 * or if it the error wa
4910 setError(CharSequence error) argument
4931 setError(CharSequence error, Drawable icon) argument
9830 CharSequence error; field in class:TextView.SavedState
[all...]
/frameworks/base/core/jni/
H A DAndroid.mk265 LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code \
H A Dandroid_database_SQLiteConnection.cpp49 * longer than this amount of time then SQLite will generate a SQLITE_BUSY error.
50 * The SQLITE_BUSY error is then raised as a SQLiteDatabaseLockedException.
216 goto error; // out of memory error
227 error:
297 // Error messages like 'near ")": syntax error' are not
298 // always helpful enough, so construct an error string that
515 int error = 0; local
518 error = errno;
519 ALOGE("ashmem_create_region failed: %s", strerror(error));
[all...]
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp35 #error Need to convert float array to SkScalar array before calling the following function.
H A DPath.cpp211 #error Need to convert float array to SkScalar array before calling the following function.
386 // Now that each division can use linear interpolation with less than the allowed error
H A DPathEffect.cpp44 #error Need to convert float array to SkScalar array before calling the following function.
H A DShader.cpp40 #error Need to convert float array to SkScalar array before calling the following function.
117 #error Need to convert float array to SkScalar array before calling the following function.
161 #error Need to convert float array to SkScalar array before calling the following function.
200 #error Need to convert float array to SkScalar array before calling the following function.
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp96 const long error = FPDF_GetLastError(); local
97 switch (error) {
101 "cannot create document. Error: %ld", error);
105 "cannot create document. Error: %ld", error);
H A DPdfRenderer.cpp88 const long error = FPDF_GetLastError(); local
89 switch (error) {
93 "cannot create document. Error: %ld", error);
97 "cannot create document. Error: %ld", error);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp755 goto error;
774 error:

Completed in 2518 milliseconds

1234567891011>>