HomeSort by relevance Sort by last modified time
    Searched refs:InflateException (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/core/java/android/view/
InflateException.java 22 public class InflateException extends RuntimeException {
24 public InflateException() {
28 public InflateException(String detailMessage, Throwable throwable) {
32 public InflateException(String detailMessage) {
36 public InflateException(Throwable throwable) {
LayoutInflater.java 349 * throw an {@link InflateException}. This filter will replace any previous filter set on this
364 * {@link InflateException} if there is an error.
379 * {@link InflateException} if there is an error. *
399 * {@link InflateException} if there is an error.
431 * {@link InflateException} if there is an error.
470 throw new InflateException(parser.getPositionDescription()
485 throw new InflateException("<merge /> can be used only with a valid "
535 InflateException ex = new InflateException(e.getMessage());
539 InflateException ex = new InflateException
    [all...]
MenuInflater.java 98 * {@link InflateException} if there is an error.
113 throw new InflateException("Error inflating menu XML", e);
115 throw new InflateException("Error inflating menu XML", e);
242 InflateException ex = new InflateException(
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 19 import android.view.InflateException;
23 InflateException ne = null;
27 ne = new InflateException();
29 } catch (InflateException e) {
34 fail("should throw out InflateException");
44 ne = new InflateException(detailMessage, throwable);
46 } catch (InflateException e) {
51 fail("should throw out InflateException");
58 ne = new InflateException(detailMessage);
60 } catch (InflateException e)
    [all...]
LayoutInflaterTest.java 36 import android.view.InflateException;
114 throw new InflateException();
143 } catch (InflateException e) {
163 } catch (InflateException e) {
175 } catch (InflateException e) {
206 } catch (InflateException e) {
355 } catch (InflateException e) {
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceInflater.java 27 import android.view.InflateException;
156 throw new InflateException(parser.getPositionDescription()
169 } catch (InflateException e) {
172 final InflateException ex = new InflateException(e.getMessage());
176 final InflateException ex = new InflateException(
218 throws ClassNotFoundException, InflateException {
240 throw new InflateException(attrs
261 final InflateException ie = new InflateException(attr
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java 22 import android.view.InflateException;
67 throw new InflateException("Error inflating class " + name, e);
69 throw new InflateException("No such class: " + name, e);
71 throw new InflateException("While create instance of" + name, e);
99 throw new InflateException("No root element found");
103 throw new InflateException(e);
105 throw new InflateException(parser.getPositionDescription(), e);
  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java 30 import android.view.InflateException;
67 throw new InflateException("Error inflating class " + name, e);
69 throw new InflateException("No such class: " + name, e);
71 throw new InflateException("While create instance of" + name, e);
99 throw new InflateException("No root element found");
103 throw new InflateException(e);
105 throw new InflateException(parser.getPositionDescription(), e);
  /frameworks/base/core/java/android/preference/
GenericInflater.java 32 import android.view.InflateException;
307 throw new InflateException(parser.getPositionDescription()
332 } catch (InflateException e) {
336 InflateException ex = new InflateException(e.getMessage());
340 InflateException ex = new InflateException(
369 throws ClassNotFoundException, InflateException {
388 InflateException ie = new InflateException(attr
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionInflater.java 32 import android.view.InflateException;
81 InflateException ex = new InflateException(e.getMessage());
85 InflateException ex = new InflateException(
110 InflateException ex = new InflateException(e.getMessage());
114 InflateException ex = new InflateException(
191 throw new InflateException("Could not add transition to another transition.")
    [all...]
Transition.java 33 import android.view.InflateException;
312 throw new InflateException("Unknown match type in matchOrder: '" + token + "'");
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 107 throw new InflateException("You must specify a layout in the"
128 throw new InflateException("You must specifiy a layout in the"
131 throw new InflateException("You must specifiy a valid layout "
147 throw new InflateException(childParser.getPositionDescription() +
222 throw new InflateException("<include /> can only be used inside of a ViewGroup");
BridgeInflater.java 142 } catch (InflateException e) {
147 // Wrap the real exception in an InflateException so that the calling
149 InflateException exception = new InflateException();
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 25 import android.view.InflateException;
112 throw new InflateException("The path is null, which is created"
118 throw new InflateException("pathInterpolator requires the controlX1 attribute");
120 throw new InflateException("pathInterpolator requires the controlY1 attribute");
129 throw new InflateException(
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsActivityTest.java 24 import android.view.InflateException;
88 } catch (InflateException e) {
117 } catch (InflateException e) {
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SimpleInflater.java 29 import android.view.InflateException;
55 throw new InflateException("Error inflating menu XML", e);
57 throw new InflateException("Error inflating menu XML", e);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DataBindingUtilTest.java 22 import android.view.InflateException;
101 } catch (InflateException e) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
SupportMenuInflater.java 36 import android.view.InflateException;
98 * {@link InflateException} if there is an error.
120 throw new InflateException("Error inflating menu XML", e);
122 throw new InflateException("Error inflating menu XML", e);
242 InflateException ex = new InflateException(
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
FrameworkActionBar.java 34 import android.view.InflateException;
99 throw new InflateException("Unable to find action bar layout (" + LAYOUT_ATTR_NAME
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
AppCompatViewInflater.java 38 import android.view.InflateException;
142 throws ClassNotFoundException, InflateException {
  /frameworks/data-binding/library/src/main/java/android/databinding/
DataBindingUtil.java 21 import android.view.InflateException;
83 * @throws InflateException When a merge layout was used and attachToParent was false.
109 * @throws InflateException When a merge layout was used and attachToParent was false.
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 34 import android.view.InflateException;
335 throw new InflateException(" Can't morph from " + fromString + " to " +
494 throw new InflateException(arrayAnimator.getPositionDescription()
542 throw new InflateException(arrayObjectAnimator.getPositionDescription()
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 1523 milliseconds

1 2