Searched defs:error (Results 1 - 25 of 293) sorted by last modified time

1234567891011>>

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jar ... .squareup.picasso.Picasso$LoadedFrom) abstract void error () void cancel () com.squareup.picasso.Request getRequest ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jar ... .squareup.picasso.Picasso$LoadedFrom) abstract void error () void cancel () com.squareup.picasso.Request getRequest ...
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouter.java1887 * @param error A localized error message which may be shown to the user, or null
1888 * if the cause of the error is unclear.
1892 public void onError(String error, Bundle data) { argument
2071 // initialized but it is good to check for the error in case there
2086 // initialized but it is good to check for the error in case there
H A DRegisteredMediaRouteProvider.java292 void onConnectionError(Connection connection, String error) { argument
295 Log.d(TAG, this + ": Service connection error - " + error);
543 public boolean onControlRequestFailed(int requestId, String error, Bundle data) { argument
547 callback.onError(error, data);
720 String error = (data == null ? null :
723 requestId, error, (Bundle)obj);
H A DRemotePlaybackClient.java697 public void onError(String error, Bundle data) {
698 handleError(intent, callback, error, data);
744 public void onError(String error, Bundle data) {
745 handleError(intent, callback, error, data);
764 String error, Bundle data) {
773 Log.w(TAG, "Received error from " + intent.getAction()
774 + ": error=" + error
778 callback.onError(error, code, data);
991 * @param error
763 handleError(Intent intent, ActionCallback callback, String error, Bundle data) argument
996 onError(String error, int code, Bundle data) argument
[all...]
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java931 public void setError(AccessibilityNodeInfo info, CharSequence error) { argument
1490 public void setError(AccessibilityNodeInfo info, CharSequence error) { argument
1491 info.setError(error);
3207 * Sets the error text of this node.
3214 * @param error The error text.
3218 public void setError(CharSequence error) { argument
3219 IMPL.setError(mInfo, error);
3223 * Gets the error text of this node.
3225 * @return The error tex
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java79 * <p>Also supports showing an error via {@link #setErrorEnabled(boolean)} and
291 * Set the typeface to use for the hint and any label views (such as counter and error views).
311 * Returns the typeface used for the hint and any label views (such as counter and error views).
597 // Add padding to the error and character counter so that they match the EditText
612 * Whether the error functionality is enabled or not in this layout. Enabling this
613 * functionality before setting an error message via {@link #setError(CharSequence)}, will mean
614 * that this layout will not change size when an error is displayed.
669 * Sets the text color and size for the error message from the specified
682 * Returns whether the error functionality is enabled or not in this layout.
693 * Sets an error messag
703 setError(@ullable final CharSequence error) argument
709 setError(@ullable final CharSequence error, final boolean animate) argument
963 CharSequence error; field in class:TextInputLayout.SavedState
[all...]
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DTextInputLayoutActions.java40 return "Enables/disables the error";
55 public static ViewAction setError(final CharSequence error) { argument
64 return "Sets the error";
72 layout.setError(error);
88 return "Sets the error text appearance";
136 return "Sets the error";
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java564 Log.d(TAG, "handleStopRequest: mState=" + mPlayback.getState() + " error=" + withError);
637 * Update the current media player state, optionally showing an error message.
639 * @param error if not null, error message to present to the user.
641 private void updatePlaybackState(String error) { argument
654 // If there is an error message, send it to the playback state:
655 if (error != null) {
658 stateBuilder.setErrorMessage(error);
752 public void onError(String error) { argument
753 updatePlaybackState(error);
[all...]
H A DPlayback.java390 * Called when there's an error playing media. When this happens, the media
391 * player goes to the Error state. We warn the user about the error and
398 Log.e(TAG, "Media player error: what=" + what + ", extra=" + extra);
400 mCallback.onError("MediaPlayer error " + what + " (" + extra + ")");
402 return true; // true indicates we handled the error
484 * @param error to be added to the PlaybackState
486 void onError(String error); argument
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DRemotePlayer.java149 public void onError(String error, int code, Bundle data) {
150 logError("play: failed", error, code);
191 public void onError(String error, int code, Bundle data) {
192 logError("getStatus: failed", error, code);
220 public void onError(String error, int code, Bundle data) {
221 logError("pause: failed", error, code);
246 public void onError(String error, int code, Bundle data) {
247 logError("resume: failed", error, code);
275 public void onError(String error, int code, Bundle data) {
276 logError("stop: failed", error, cod
468 logError(String message, String error, int code) argument
[all...]
H A DSessionManager.java390 private void finishItem(boolean error) { argument
393 removeItem(item.getItemId(), error ?
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java564 Log.d(TAG, "handleStopRequest: mState=" + mPlayback.getState() + " error=" + withError);
637 * Update the current media player state, optionally showing an error message.
639 * @param error if not null, error message to present to the user.
641 private void updatePlaybackState(String error) { argument
654 // If there is an error message, send it to the playback state:
655 if (error != null) {
658 stateBuilder.setErrorMessage(error);
752 public void onError(String error) { argument
753 updatePlaybackState(error);
[all...]
H A DPlayback.java390 * Called when there's an error playing media. When this happens, the media
391 * player goes to the Error state. We warn the user about the error and
398 Log.e(TAG, "Media player error: what=" + what + ", extra=" + extra);
400 mCallback.onError("MediaPlayer error " + what + " (" + extra + ")");
402 return true; // true indicates we handled the error
484 * @param error to be added to the PlaybackState
486 void onError(String error); argument
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DRemotePlayer.java149 public void onError(String error, int code, Bundle data) {
150 logError("play: failed", error, code);
191 public void onError(String error, int code, Bundle data) {
192 logError("getStatus: failed", error, code);
220 public void onError(String error, int code, Bundle data) {
221 logError("pause: failed", error, code);
246 public void onError(String error, int code, Bundle data) {
247 logError("resume: failed", error, code);
275 public void onError(String error, int code, Bundle data) {
276 logError("stop: failed", error, cod
468 logError(String message, String error, int code) argument
[all...]
H A DSessionManager.java390 private void finishItem(boolean error) { argument
393 removeItem(item.getItemId(), error ?
/frameworks/rs/cpp/
H A DRenderScript.cpp99 goto error;
115 goto error;
124 error:
190 void RS::throwError(RSError error, const char *errMsg) { argument
192 mCurrentError = error;
193 ALOGE("RS CPP error: %s", errMsg);
195 ALOGE("RS CPP error (masked by previous error): %s", errMsg);
225 ALOGE("RS::message handler realloc error %zu", rbuf_size);
/frameworks/rs/
H A DrsFont.cpp47 FT_Error error = 0; local
49 error = FT_New_Memory_Face(mRSC->mStateFont.getLib(), (const FT_Byte*)data, dataLen, 0, &mFace);
51 error = FT_New_Face(mRSC->mStateFont.getLib(), name, 0, &mFace);
54 if (error) {
63 error = FT_Set_Char_Size(mFace, (FT_F26Dot6)(fontSize * 64.0f), 0, dpi, 0);
64 if (error) {
240 FT_Error error = FT_Load_Glyph( mFace, glyph->mGlyphIndex, FT_LOAD_RENDER ); local
241 if (error) {
385 FT_Error error = FT_Init_FreeType(&mLibrary); local
386 if (error) {
[all...]
/frameworks/rs/rsov/compiler/
H A DRSSPIRVWriter.cpp142 int error; local
143 auto wordsOut = spiritPasses.run(words, &error);
145 if (error != 0) {
/frameworks/rs/rsov/compiler/spirit/
H A Dpass.cpp24 Module *Pass::run(Module *module, int *error) { argument
28 if (error) {
29 *error = intermediateError;
36 std::vector<uint32_t> Pass::runAndSerialize(Module *module, int *error) { argument
40 if (error) {
41 *error = intermediateError;
H A Dpass_queue.cpp30 Module *PassQueue::run(Module *module, int *error) { argument
48 if (error) {
49 *error = intermediateError;
54 if (error) {
55 *error = -1;
69 int *error) {
79 return runAndSerialize(module, error);
82 std::vector<uint32_t> PassQueue::runAndSerialize(Module *module, int *error) { argument
101 if (error) {
102 *error
68 run(const std::vector<uint32_t> &spirvWords, int *error) argument
[all...]
H A Dtransformer.cpp24 Module *Transformer::run(Module *module, int *error) { argument
25 auto words = runAndSerialize(module, error);
29 std::vector<uint32_t> Transformer::runAndSerialize(Module *m, int *error) { argument
58 if (error) {
59 *error = 0;
/frameworks/rs/script_api/
H A DScanner.cpp98 ostream& Scanner::error() { function in class:Scanner
99 return error(mLineNumber);
102 ostream& Scanner::error(int lineNumber) { function in class:Scanner
104 cerr << mFileName << ":" << lineNumber << ": error: ";
112 error() << "Unexpected: \" " << mValue << "\".\n";
120 error() << "Found \"" << mTag << "\" while looking for \"" << tag << "\".\n";
144 error() << "Did not expect \"" << mValue << "\" after \"" << mTag << "\".\n";
156 error() << "Missing closing double quote\n";
184 error() << "Missing variable name\n";
190 error() << "Th
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallStateException.java26 /** The error code is not valid (Not received a disconnect cause) */
44 CallStateException(int error, String string) argument
47 mError = error;
H A DRIL.java246 onError(int error, Object ret) { argument
249 ex = CommandException.fromRilErrno(error);
253 + " error: " + ex + " ret=" + RIL.retToString(mRequest, ret));
3773 int error = responseInfo.error;
3796 + " error: " + error);
3832 if (error != RadioError.NONE) {
3865 * It takes care of sending error response, logging, decrementing wakelock if needed, and
3872 if (responseInfo.error
4055 clearRequestList(int error, boolean loggable) argument
[all...]

Completed in 364 milliseconds

1234567891011>>