HomeSort by relevance Sort by last modified time
    Searched full:errorresourceid (Results 1 - 5 of 5) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 61 private int errorResourceId;
99 int errorResourceId,
125 errorResourceId,
171 int errorResourceId,
192 this.errorResourceId = errorResourceId;
380 if (errorDrawable == null && errorResourceId > 0) {
381 errorDrawable = context.getResources().getDrawable(errorResourceId);
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 256 public void onEvaluate(String expr, String result, int errorResourceId) {
259 } else if (errorResourceId != INVALID_RES_ID) {
260 onError(errorResourceId);
382 private void onError(final int errorResourceId) {
385 mResultEditText.setText(errorResourceId);
393 mResultEditText.setText(errorResourceId);
CalculatorExpressionEvaluator.java 83 public void onEvaluate(String expr, String result, int errorResourceId);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java 199 public final int errorResourceId; // Error string or INVALID_RES_ID.
206 errorResourceId = Calculator.INVALID_RES_ID;
214 errorResourceId = errorId;
222 return errorResourceId != Calculator.INVALID_RES_ID;
389 if (result.errorResourceId == R.string.timeout) {
395 mCalculator.onError(result.errorResourceId);
    [all...]
Calculator.java 753 void onError(final int errorResourceId) {
756 mResultText.announceForAccessibility(getResources().getString(errorResourceId));
762 mResultText.displayError(errorResourceId);
767 mResultText.displayError(errorResourceId);
    [all...]

Completed in 1551 milliseconds