/aosp12/frameworks/layoutlib/bridge/src/android/graphics/drawable/ |
H A D | DrawableInflater_Delegate.java | 23 import android.view.InflateException; 52 final InflateException ie = new InflateException("Error inflating class " + className); in inflateFromClass() 57 final InflateException ie = in inflateFromClass() 58 new InflateException("Class is not a Drawable " + className); in inflateFromClass() 63 final InflateException ie = new InflateException("Class not found " + className); in inflateFromClass() 67 final InflateException ie = new InflateException("Error inflating class " + className); in inflateFromClass()
|
/aosp12/frameworks/base/core/java/android/preference/ |
H A D | GenericInflater.java | 25 import android.view.InflateException; 314 throw new InflateException(parser.getPositionDescription() in inflate() 339 } catch (InflateException e) { in inflate() 343 InflateException ex = new InflateException(e.getMessage()); in inflate() 347 InflateException ex = new InflateException( in inflate() 376 throws ClassNotFoundException, InflateException { in createItem() 395 InflateException ie = new InflateException(attrs in createItem() 406 InflateException ie = new InflateException(attrs in createItem() 446 } catch (InflateException e) { in createItemFromTag() 450 InflateException ie = new InflateException(attrs in createItemFromTag() [all …]
|
/aosp12/frameworks/base/graphics/java/android/graphics/drawable/ |
H A D | DrawableInflater.java | 28 import android.view.InflateException; 136 throw new InflateException("<drawable> tag must specify class attribute"); in inflateFromXmlForDensity() 213 final InflateException ie = new InflateException( in inflateFromClass() 219 final InflateException ie = new InflateException( in inflateFromClass() 225 final InflateException ie = new InflateException( in inflateFromClass() 230 final InflateException ie = new InflateException( in inflateFromClass()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | InflateException.java | 22 public class InflateException extends RuntimeException { class 24 public InflateException() { in InflateException() method in InflateException 28 public InflateException(String detailMessage, Throwable throwable) { in InflateException() method in InflateException 32 public InflateException(String detailMessage) { in InflateException() method in InflateException 36 public InflateException(Throwable throwable) { in InflateException() method in InflateException
|
H A D | LayoutInflater.java | 597 throws InflateException, IOException, XmlPullParserException { in advanceToRootNode() 706 final InflateException ie = new InflateException(e.getMessage(), e); in inflate() 710 final InflateException ie = new InflateException( in inflate() 775 throws ClassNotFoundException, InflateException { in createView() 804 throws ClassNotFoundException, InflateException { in createView() 869 final InflateException ie = new InflateException( in createView() 877 final InflateException ie = new InflateException( in createView() 886 final InflateException ie = new InflateException( in createView() 1018 } catch (InflateException e) { in createViewFromTag() 1022 final InflateException ie = new InflateException( in createViewFromTag() [all …]
|
H A D | MenuInflater.java | 116 throw new InflateException("Error inflating menu XML", e); in inflate() 118 throw new InflateException("Error inflating menu XML", e); in inflate() 245 InflateException ex = new InflateException( in InflatedOnMenuItemClickListener()
|
/aosp12/frameworks/base/core/java/android/transition/ |
H A D | TransitionInflater.java | 27 import android.view.InflateException; 81 InflateException ex = new InflateException(e.getMessage()); in inflateTransition() 85 InflateException ex = new InflateException( in inflateTransition() 110 InflateException ex = new InflateException(e.getMessage()); in inflateTransitionManager() 114 InflateException ex = new InflateException( in inflateTransitionManager() 203 throw new InflateException(tag + " tag must have a 'class' attribute"); in createCustom() 221 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom() 224 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom() 227 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom() 230 throw new InflateException("Could not instantiate " + expectedType + " class " + in createCustom() [all …]
|
H A D | Transition.java | 35 import android.view.InflateException; 314 throw new InflateException("Unknown match type in matchOrder: '" + token + "'"); in parseMatchOrder()
|
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/ |
H A D | PreferenceInflater.java | 30 import android.view.InflateException; 67 throw new InflateException("Error inflating class " + name, e); in newPreference() 69 throw new InflateException("No such class: " + name, e); in newPreference() 71 throw new InflateException("While create instance of" + name, e); in newPreference() 99 throw new InflateException("No root element found"); in inflate() 103 throw new InflateException(e); in inflate() 105 throw new InflateException(parser.getPositionDescription(), e); in inflate()
|
/aosp12/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/ |
H A D | SimpleInflater.java | 25 import android.view.InflateException; 98 throw new InflateException(parser.getPositionDescription() + ": No start tag found!"); in inflate() 105 throw new InflateException(e.getMessage(), e); in inflate() 107 throw new InflateException(parser.getPositionDescription() + ": " + e.getMessage(), e); in inflate() 130 } catch (InflateException e) { in createItemFromTag() 133 throw new InflateException( in createItemFromTag()
|
H A D | ReflectionInflater.java | 23 import android.view.InflateException; 108 throw new InflateException( in createItem()
|
/aosp12/frameworks/base/core/java/android/view/animation/ |
H A D | PathInterpolator.java | 28 import android.view.InflateException; 116 throw new InflateException("The path is null, which is created" in parseInterpolatorFromTypeArray() 122 throw new InflateException("pathInterpolator requires the controlX1 attribute"); in parseInterpolatorFromTypeArray() 124 throw new InflateException("pathInterpolator requires the controlY1 attribute"); in parseInterpolatorFromTypeArray() 133 throw new InflateException( in parseInterpolatorFromTypeArray()
|
/aosp12/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
H A D | SimpleInflater.java | 29 import android.view.InflateException; 55 throw new InflateException("Error inflating menu XML", e); in inflate() 57 throw new InflateException("Error inflating menu XML", e); in inflate()
|
/aosp12/frameworks/layoutlib/bridge/src/android/preference/ |
H A D | BridgePreferenceInflater.java | 24 import android.view.InflateException; 50 } catch (ClassNotFoundException | InflateException exception) { in createItem()
|
/aosp12/frameworks/layoutlib/bridge/src/android/view/ |
H A D | BridgeInflater.java | 152 } catch (InflateException e) { in onCreateView() 311 } catch (InflateException e) { in createViewFromTag() 336 InflateException exception = new InflateException(); in createViewFromTag()
|
/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
H A D | FrameworkActionBar.java | 33 import android.view.InflateException; 97 throw new InflateException("Unable to find action bar layout (" + LAYOUT_ATTR_NAME in getLayoutResource()
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A D | AnimatorInflater.java | 37 import android.view.InflateException; 308 throw new InflateException(" Can't morph from " + fromString + " to " + in getPVH() 467 throw new InflateException(arrayAnimator.getPositionDescription() in setupAnimatorForPath() 520 throw new InflateException(arrayObjectAnimator.getPositionDescription() in setupObjectAnimator()
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 7459 android.view.InflateException
|
H A D | boot-image-profile.txt | 17067 …ructor;Ljava/lang/reflect/Constructor;]Landroid/view/InflateException;Landroid/view/InflateExcepti… 17077 …ption;Landroid/view/InflateException;,Ljava/lang/IllegalStateException;]Landroid/view/InflateExcep… 31132 Landroid/view/InflateException;
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/base/core/api/ |
H A D | current.txt | 47253 public class InflateException extends java.lang.RuntimeException { 47254 ctor public InflateException(); 47255 ctor public InflateException(String, Throwable); 47256 ctor public InflateException(String); 47257 ctor public InflateException(Throwable); 47840 … android.util.AttributeSet) throws java.lang.ClassNotFoundException, android.view.InflateException; 47841 … android.util.AttributeSet) throws java.lang.ClassNotFoundException, android.view.InflateException;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 7480 android.view.InflateException
|
H A D | boot-image-profile.txt | 17116 …ructor;Ljava/lang/reflect/Constructor;]Landroid/view/InflateException;Landroid/view/InflateExcepti… 17126 …ption;Landroid/view/InflateException;,Ljava/lang/IllegalStateException;]Landroid/view/InflateExcep… 40796 Landroid/view/InflateException;
|
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | android-22.txt | 32234 public class InflateException extends java.lang.RuntimeException { 32235 ctor public InflateException(); 32236 ctor public InflateException(java.lang.String, java.lang.Throwable); 32237 ctor public InflateException(java.lang.String); 32238 ctor public InflateException(java.lang.Throwable); 32757 … android.util.AttributeSet) throws java.lang.ClassNotFoundException, android.view.InflateException;
|