HomeSort by relevance Sort by last modified time
    Searched refs:InflateException (Results 1 - 25 of 50) 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 final InflateException ie = new InflateException(e.getMessage(), e);
539 final InflateException ie = new InflateException(parser.getPositionDescription(
    [all...]
MenuInflater.java 101 * {@link InflateException} if there is an error.
116 throw new InflateException("Error inflating menu XML", e);
118 throw new InflateException("Error inflating menu XML", e);
245 InflateException ex = new InflateException(
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 23 import android.view.InflateException;
33 InflateException ne = null;
37 ne = new InflateException();
39 } catch (InflateException e) {
44 fail("should throw out InflateException");
54 ne = new InflateException(detailMessage, throwable);
56 } catch (InflateException e) {
61 fail("should throw out InflateException");
68 ne = new InflateException(detailMessage);
70 } catch (InflateException e)
    [all...]
LayoutInflaterTest.java 42 import android.view.InflateException;
120 throw new InflateException();
148 } catch (InflateException e) {
164 } catch (InflateException e) {
176 } catch (InflateException e) {
207 } catch (InflateException e) {
346 } catch (InflateException e) {
409 @Test(expected = InflateException.class)
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceInflater.java 26 import android.view.InflateException;
151 throw new InflateException(parser.getPositionDescription()
164 } catch (InflateException e) {
167 final InflateException ex = new InflateException(e.getMessage());
171 final InflateException ex = new InflateException(
213 throws ClassNotFoundException, InflateException {
236 throw new InflateException(attrs
257 final InflateException ie = new InflateException(attr
    [all...]
  /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/graphics/java/android/graphics/drawable/
DrawableInflater.java 29 import android.view.InflateException;
133 throw new InflateException("<drawable> tag must specify class attribute");
208 final InflateException ie = new InflateException(
214 final InflateException ie = new InflateException(
220 final InflateException ie = new InflateException(
225 final InflateException ie = new InflateException(
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
SimpleInflater.java 25 import android.view.InflateException;
101 throw new InflateException(parser.getPositionDescription()
109 throw new InflateException(e.getMessage(), e);
111 throw new InflateException(parser.getPositionDescription() + ": " + e.getMessage(), e);
132 } catch (InflateException e) {
135 throw new InflateException(attrs.getPositionDescription()
ReflectionInflater.java 23 import android.view.InflateException;
112 throw new InflateException(attrs.getPositionDescription()
  /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 27 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...]
  /frameworks/layoutlib/bridge/src/android/preference/
BridgePreferenceInflater.java 24 import android.view.InflateException;
50 } catch (ClassNotFoundException | InflateException exception) {
  /frameworks/support/transition/src/android/support/transition/
TransitionInflater.java 28 import android.view.InflateException;
72 throw new InflateException(e.getMessage(), e);
74 throw new InflateException(
94 InflateException ex = new InflateException(e.getMessage());
98 InflateException ex = new InflateException(
183 throw new InflateException("Could not add transition to another transition.");
195 throw new InflateException(tag + " tag must have a 'class' attribute");
215 throw new InflateException("Could not instantiate " + expectedType + " class
    [all...]
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 25 import android.view.InflateException;
116 throw new InflateException("The path is null, which is created"
122 throw new InflateException("pathInterpolator requires the controlX1 attribute");
124 throw new InflateException("pathInterpolator requires the controlY1 attribute");
133 throw new InflateException(
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
PathInterpolatorCompat.java 32 import android.view.InflateException;
86 throw new InflateException("The path is null, which is created"
92 throw new InflateException("pathInterpolator requires the controlX1 attribute");
94 throw new InflateException("pathInterpolator requires the controlY1 attribute");
105 throw new InflateException("pathInterpolator requires both controlX2 and"
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsActivityTest.java 27 import android.view.InflateException;
96 } catch (InflateException e) {
125 } 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/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/view/
SupportMenuInflater.java 40 import android.view.InflateException;
107 * {@link InflateException} if there is an error.
129 throw new InflateException("Error inflating menu XML", e);
131 throw new InflateException("Error inflating menu XML", e);
251 InflateException ex = new InflateException(
  /frameworks/layoutlib/bridge/src/android/view/
BridgeInflater.java 190 } catch (InflateException e) {
191 // Don't catch the InflateException below as that results in hiding the real cause.
227 } catch (InflateException e) {
250 // Wrap the real exception in an InflateException so that the calling
252 InflateException exception = new InflateException();
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatViewInflater.java 45 import android.view.InflateException;
213 throws ClassNotFoundException, InflateException {
  /frameworks/support/design/tests/src/android/support/design/widget/
TabLayoutTest.java 49 import android.view.InflateException;
102 assertTrue(throwable instanceof InflateException
  /frameworks/data-binding/extensions/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.

Completed in 3243 milliseconds

1 2