Searched refs:ite (Results 1 - 25 of 63) sorted by relevance

123

/external/testng/src/main/java/org/testng/
H A DIExpectedExceptionsHolder.java8 * @param ite The Throwable thrown by the test
11 String getWrongExceptionMessage(Throwable ite); argument
16 * @param ite The Throwable thrown by the test
19 boolean isThrowableMatching(Throwable ite); argument
/external/testng/src/main/java/org/testng/internal/
H A DExpectedExceptionsHolder.java44 * @param ite The exception that was just thrown
48 public boolean isExpectedException(Throwable ite) { argument
55 if (ite.getClass() == TestException.class) {
59 Class<?> realExceptionClass= ite.getClass();
62 if (exception.isAssignableFrom(realExceptionClass) && holder.isThrowableMatching(ite)) {
70 public Throwable wrongException(Throwable ite) { argument
72 return ite;
75 if (holder.isThrowableMatching(ite)) {
78 + " but got " + ite, ite);
[all...]
H A DRegexpExpectedExceptionsHolder.java32 public boolean isThrowableMatching(Throwable ite) { argument
39 final String message = ite.getMessage();
43 public String getWrongExceptionMessage(Throwable ite) { argument
46 " but got \"" + ite.getMessage() + "\"";
H A DInvoker.java285 private void handleConfigurationFailure(Throwable ite, argument
293 Throwable cause= ite.getCause() != null ? ite.getCause() : ite;
656 catch(InvocationTargetException ite) {
657 testResult.setThrowable(ite.getCause());
1351 Throwable ite= testResult.getThrowable();
1357 if (ite != null) {
1361 if (expectedExceptionsHolder.isExpectedException(ite)) {
1365 if (isSkipExceptionAndSkip(ite)){
1408 isSkipExceptionAndSkip(Throwable ite) argument
[all...]
/external/compiler-rt/lib/builtins/arm/
H A Dswitch8.S36 ite lo
H A Dswitchu8.S36 ite lo
H A Dswitch16.S38 ite lo
H A Dswitch32.S38 ite lo
H A Dcomparesf2.S99 ite ls
128 ite ls
142 ite ls
/external/llvm/test/MC/ARM/
H A Darm-thumb-trustzone.s19 ite eq
25 @ TZ: ite eq @ encoding: [0x0c,0xbf]
H A Dthumb-only-conditionals.s35 ite le
38 @ CHECK: ite le
42 ite eq
45 @ CHECK: ite eq
H A Dldr-pseudo-cond-darwin.s19 ite eq
35 ite eq
H A Dldr-pseudo-cond.s19 ite eq
35 ite eq
H A Dthumb2-branches.s136 ite eq
140 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
279 ite eq
283 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
H A DRootFinder.java50 } catch (InvocationTargetException ite) {
52 windowManagerClassName), ite.getCause());
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
H A DFieldInitializerTest.java92 InvocationTargetException ite = (InvocationTargetException) e.getCause();
93 assertTrue(ite.getTargetException() instanceof NullPointerException);
94 assertEquals("business logic failed", ite.getTargetException().getMessage());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar ... .util.List ret java.util.Iterator ite org.eclipse.equinox.frameworkadmin.BundleInfo currentBInfo ...
H A Dorg.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20100503.jar ... .frameworkadmin.BundleInfo bInfo java.util.Iterator ite Integer sL java.util.List list java. ...
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DNamePrepTransform.java210 } catch (InvocationTargetException ite) {
211 throw new RuntimeException(ite);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java209 } catch (InvocationTargetException ite) {
210 throw new RuntimeException(ite);
/external/replicaisland/src/com/replica/replicaisland/
H A DDiaryActivity.java40 } catch (InvocationTargetException ite) {
H A DDifficultyMenuActivity.java119 } catch (InvocationTargetException ite) {
152 } catch (InvocationTargetException ite) {
H A DExtrasMenuActivity.java140 } catch (InvocationTargetException ite) {
215 } catch (InvocationTargetException ite) {
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
H A DLauncher.java166 } catch (InvocationTargetException ite) {
167 showFailure(demoShort,ite.toString());
168 ite.printStackTrace();
/external/swiftshader/third_party/LLVM/test/MC/ARM/
H A Dbasic-thumb2-instructions.s1595 ite lt
1601 @ CHECK: ite lt @ encoding: [0xb4,0xbf]
1762 ite gt
1768 @ CHECK: ite gt @ encoding: [0xcc,0xbf]
1906 ite eq
1912 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
1922 ite eq
1928 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
1938 ite le
1944 @ CHECK: ite l
[all...]

Completed in 461 milliseconds

123