HomeSort by relevance Sort by last modified time
    Searched refs:ite (Results 1 - 25 of 147) 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() + "\"";
  /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
inst-po-3.d 14 0000000c <.text\+0xc> bf0c ite eq
arm-it-auto.s 67 @ite eq - this group finishes due to the mov.n pc, rn
81 @ite eq - testing condition change (eq -> gt)
85 @ite gt (group shall finish due to another condition change)
  /external/compiler-rt/lib/builtins/arm/
switch16.S 38 ite lo
switch32.S 38 ite lo
switch8.S 36 ite lo
switchu8.S 36 ite lo
comparesf2.S 99 ite ls
128 ite ls
142 ite ls
  /art/test/086-null-super/src/
Main.java 155 } catch (InvocationTargetException ite) {
156 Throwable cause = ite.getCause();
158 System.err.println("Got expected ITE/NPE");
160 System.err.println("Got unexpected ITE");
161 ite.printStackTrace();
  /art/test/087-gc-after-link/src/
Main.java 171 } catch (InvocationTargetException ite) {
172 Throwable cause = ite.getCause();
174 System.err.println("Got expected ITE/NPE");
176 System.err.println("Got unexpected ITE");
177 ite.printStackTrace();
  /art/test/068-classloader/src/
FancyLoader.java 102 } catch (InvocationTargetException ite) {
103 throw new ClassNotFoundException("newInstance failed", ite);
124 } catch (InvocationTargetException ite) {
126 ite.getCause());
  /art/test/138-duplicate-classes-check2/src/
FancyLoader.java 103 } catch (InvocationTargetException ite) {
104 throw new ClassNotFoundException("newInstance failed", ite);
125 } catch (InvocationTargetException ite) {
127 ite.getCause());
  /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
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
RootFinder.java 50 } catch (InvocationTargetException ite) {
52 windowManagerClassName), ite.getCause());
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 101 maptype::iterator ite(m.begin());
106 CPPUNIT_ASSERT( ite == cite );
107 CPPUNIT_ASSERT( !(ite != cite) );
108 CPPUNIT_ASSERT( cite == ite );
109 CPPUNIT_ASSERT( !(cite != ite) );
143 mmap::iterator ite(m.begin());
145 CPPUNIT_ASSERT( ite == cite );
146 CPPUNIT_ASSERT( !(ite != cite) );
147 CPPUNIT_ASSERT( cite == ite );
148 CPPUNIT_ASSERT( !(cite != ite) );
    [all...]
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 101 maptype::iterator ite(m.begin());
106 CPPUNIT_ASSERT( ite == cite );
107 CPPUNIT_ASSERT( !(ite != cite) );
108 CPPUNIT_ASSERT( cite == ite );
109 CPPUNIT_ASSERT( !(cite != ite) );
143 mmap::iterator ite(m.begin());
145 CPPUNIT_ASSERT( ite == cite );
146 CPPUNIT_ASSERT( !(ite != cite) );
147 CPPUNIT_ASSERT( cite == ite );
148 CPPUNIT_ASSERT( !(cite != ite) );
    [all...]

Completed in 1068 milliseconds

1 2 3 4 5 6