Home
last modified time | relevance | path

Searched refs:toThrow (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceCompilerMapping.java77 RuntimeException toThrow = null; in checkProperties() local
91 if (toThrow == null) { in checkProperties()
92 toThrow = new IllegalStateException("PMS compiler filter settings are bad."); in checkProperties()
94 toThrow.addSuppressed(exc); in checkProperties()
98 if (toThrow != null) { in checkProperties()
99 throw toThrow; in checkProperties()
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
DClassInSecondaryDex.java40 public static void canThrowAll(Throwable toThrow) throws Throwable { in canThrowAll() argument
41 if (toThrow != null) { in canThrowAll()
42 throw toThrow; in canThrowAll()
/frameworks/base/telecomm/java/android/telecom/
DCall.java2602 RuntimeException toThrow = null; in fireCallDestroyed()
2606 toThrow = e; in fireCallDestroyed()
2617 if (toThrow != null) { in fireCallDestroyed()
2618 throw toThrow; in fireCallDestroyed()