HomeSort by relevance Sort by last modified time
    Searched refs:ite (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/testng/src/main/java/org/testng/
IExpectedExceptionsHolder.java 8 * @param ite The Throwable thrown by the test
11 String getWrongExceptionMessage(Throwable ite);
16 * @param ite The Throwable thrown by the test
19 boolean isThrowableMatching(Throwable ite);
  /art/test/601-method-access/src/
Main.java 28 } catch (InvocationTargetException ite) {
29 if (ite.getCause() instanceof IllegalAccessError) {
32 System.out.println("Got unexpected failure " + ite.getCause());
  /external/testng/src/main/java/org/testng/internal/
ExpectedExceptionsHolder.java 44 * @param ite The exception that was just thrown
48 public boolean isExpectedException(Throwable ite) {
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) {
72 return ite;
75 if (holder.isThrowableMatching(ite)) {
78 + " but got " + ite, ite);
    [all...]
RegexpExpectedExceptionsHolder.java 32 public boolean isThrowableMatching(Throwable ite) {
39 final String message = ite.getMessage();
43 public String getWrongExceptionMessage(Throwable ite) {
46 " but got \"" + ite.getMessage() + "\"";
  /art/test/161-final-abstract-class/src/
Main.java 37 } catch (InvocationTargetException ite) {
38 if (ite.getCause() instanceof InstantiationError) {
40 ite.getCause().getClass().getName() + ": " + ite.getCause().getMessage());
42 ite.printStackTrace(System.out);
  /external/compiler-rt/lib/builtins/arm/
switch8.S 36 ite lo
switchu8.S 36 ite lo
switch16.S 38 ite lo
switch32.S 38 ite lo
comparesf2.S 99 ite ls
128 ite ls
142 ite ls
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
inst-po.s 9 @ ite eq
17 @ ite eq
inst-po-3.s 14 @ ite eq
inst-po-be.d 11 00000004 <.text\+0x4> bf0c ite eq
16 0000000e <.text\+0xe> bf0c ite eq
inst-po.d 9 00000004 <.text\+0x4> bf0c ite eq
14 0000000e <.text\+0xe> bf0c ite eq
  /art/test/647-jni-get-field-id/src/
Main.java 54 } catch (InvocationTargetException ite) {
55 if (!(ite.getCause() instanceof NoSuchFieldError) ||
56 !(ite.getCause().getCause() instanceof NoClassDefFoundError)) {
57 throw ite;
59 NoClassDefFoundError ncdfe = (NoClassDefFoundError) ite.getCause().getCause();
DefiningLoader.java 109 } catch (InvocationTargetException ite) {
110 throw new ClassNotFoundException("newInstance failed", ite);
130 } catch (InvocationTargetException ite) {
132 ite.getCause());
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
ModuleMergerTest.java 65 Iterator<IRemoteTest> ite = res1.iterator(); local
67 ModuleMerger.arePartOfSameSuite((ITestSuite) ite.next(), (ITestSuite) ite.next()));
145 Iterator<IRemoteTest> ite = res1.iterator(); local
146 ITestSuite split1 = (ITestSuite) ite.next();
147 ITestSuite split2 = (ITestSuite) ite.next();
  /art/test/086-null-super/src/
Main.java 153 } catch (InvocationTargetException ite) {
154 Throwable cause = ite.getCause();
156 System.out.println("Got expected ITE/NPE");
158 System.out.println("Got unexpected ITE");
159 ite.printStackTrace(System.out);
  /art/test/087-gc-after-link/src/
Main.java 169 } catch (InvocationTargetException ite) {
170 Throwable cause = ite.getCause();
172 System.out.println("Got expected ITE/NPE");
174 System.out.println("Got unexpected ITE");
175 ite.printStackTrace(System.out);
  /art/test/068-classloader/src/
FancyLoader.java 102 } catch (InvocationTargetException ite) {
103 throw new ClassNotFoundException("newInstance failed", ite);
123 } catch (InvocationTargetException ite) {
125 ite.getCause());
  /art/test/626-const-class-linking/src/
DefiningLoader.java 109 } catch (InvocationTargetException ite) {
110 throw new ClassNotFoundException("newInstance failed", ite);
130 } catch (InvocationTargetException ite) {
132 ite.getCause());
Main.java 107 } catch (InvocationTargetException ite) {
108 String message = ite.getCause().getMessage();
115 System.out.println(ite.getCause().getClass().getName() + ": " + message);
137 } catch (InvocationTargetException ite) {
138 results[my_index] = ite.getCause();
174 } catch (InvocationTargetException ite) {
175 results[my_index] = ite.getCause();
209 } catch (InvocationTargetException ite) {
210 results[my_index] = ite.getCause();
244 } catch (InvocationTargetException ite) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
InvocationTargetExceptionTest.java 225 InvocationTargetException ite = new InvocationTargetException(null); local
226 ite.printStackTrace();
247 InvocationTargetException ite = new InvocationTargetException( local
249 ite.printStackTrace(ps);
263 InvocationTargetException ite; local
267 ite = new InvocationTargetException(new InvocationTargetException(
269 ite.printStackTrace(pw);
278 ite = new InvocationTargetException(new InvocationTargetException(
280 ite.printStackTrace(pw);
  /external/llvm/test/MC/ARM/
arm-thumb-trustzone.s 19 ite eq
25 @ TZ: ite eq @ encoding: [0x0c,0xbf]
thumb-only-conditionals.s 35 ite le
38 @ CHECK: ite le
42 ite eq
45 @ CHECK: ite eq

Completed in 339 milliseconds

1 2 3 4 5 6