Searched refs:ite (Results 1 - 25 of 60) 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 Dswitch16.S38 ite lo
H A Dswitch32.S38 ite lo
H A Dswitch8.S36 ite lo
H A Dswitchu8.S36 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 Dthumb2-branches.s136 ite eq
140 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
279 ite eq
283 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
H A Ddeprecated-v8.s33 ite ge label
H A Dbasic-thumb2-instructions.s2022 ite lt
2028 @ CHECK: ite lt @ encoding: [0xb4,0xbf]
2197 ite gt
2203 @ CHECK: ite gt @ encoding: [0xcc,0xbf]
2341 ite eq
2347 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
2357 ite eq
2363 @ CHECK: ite eq @ encoding: [0x0c,0xbf]
2373 ite le
2379 @ CHECK: ite l
[all...]
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
H A DRootFinder.java50 } catch (InvocationTargetException ite) {
52 windowManagerClassName), ite.getCause());
/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.java208 } catch (InvocationTargetException ite) {
209 throw new RuntimeException(ite);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java207 } catch (InvocationTargetException ite) {
208 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) {
H A DGameOverActivity.java121 } catch (InvocationTargetException ite) {
H A DAndouKun.java568 } catch (InvocationTargetException ite) {
608 } catch (InvocationTargetException ite) {
627 } catch (InvocationTargetException ite) {
659 } catch (InvocationTargetException ite) {
753 } catch (InvocationTargetException ite) {
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
H A DLauncher.java164 } catch (InvocationTargetException ite) {
165 showFailure(demoShort,ite.toString());
166 ite.printStackTrace();

Completed in 344 milliseconds

123