Searched refs:that (Results 1 – 25 of 89) sorted by relevance
1234
/art/runtime/jdwp/ |
D | README.txt | 3 This is a reasonably complete implementation, but only messages that are 5 behind this is that it's better to leave a call unimplemented than have 6 something that appears implemented but has never been tested. 9 runtime, so that the code might be useful in other projects. Once you get
|
/art/test/064-field-access/ |
D | info.txt | 1 The documentation lists exceptional conditions and the exceptions that 5 IllegalAccessException, while passing in a data type that doesn't match 9 This exercises the various failure modes to ensure that behavior is
|
/art/runtime/mirror/ |
D | string.cc | 136 bool String::Equals(String* that) { in Equals() argument 137 if (this == that) { in Equals() 140 } else if (that == NULL) { in Equals() 143 } else if (this->GetLength() != that->GetLength()) { in Equals() 149 for (int32_t i = 0; i < that->GetLength(); ++i) { in Equals() 150 if (this->CharAt(i) != that->CharAt(i)) { in Equals()
|
/art/ |
D | NOTICE | 26 the copyright owner that is granting the License. 29 other entities that control, are controlled by, or are under common 30 control with that entity. For the purposes of this definition, 50 copyright notice that is included in or attached to the work 54 form, that is based on (or derived from) the Work and for which the 57 of this License, Derivative Works shall not include works that remain 63 to that Work or Derivative Works thereof, that is intentionally 70 and issue tracking systems that are managed by, or on behalf of, the 72 excluding communication that is conspicuously marked or otherwise 92 by such Contributor that are necessarily infringed by their [all …]
|
/art/compiler/dex/quick/mips/ |
D | README.mips | 10 expectation is that when it is first tried out on actual hardware lots of 13 problems that need to be addressed: 20 o The memory model. Verify that GenMemoryBarrier() generates the 30 means that no floating point promotion is allowed. Among the solution are: 35 kHeapRef & kMustNotAlias) to positions occuped by MIPS registers that 47 slot and adjust the displacement. However, given that code expansion is
|
/art/test/118-noimage-dex2oat/ |
D | info.txt | 1 Test that disables dex2oat'ing the image.
|
/art/test/116-nodex2oat/ |
D | info.txt | 1 Test that disables dex2oat'ing the application.
|
/art/test/117-nopatchoat/ |
D | info.txt | 1 Test that disables patchoat'ing the application.
|
/art/test/119-noimage-patchoat/ |
D | info.txt | 1 Test that disables patchoat'ing the image.
|
/art/test/059-finalizer-throw/ |
D | info.txt | 1 Verify that exceptions thrown from finalizers are ignored.
|
/art/test/056-const-string-jumbo/ |
D | info.txt | 1 Test that the opcode const-string/jumbo works.
|
/art/test/122-npe/ |
D | info.txt | 1 Test that our NPE checks and stack traces work.
|
/art/test/058-enum-order/ |
D | info.txt | 1 Test that the ordering of enums is as expected.
|
/art/test/103-string-append/ |
D | info.txt | 1 Simple test that triggers GC by appending to a String.
|
/art/test/062-character-encodings/ |
D | info.txt | 1 Test that the list of character encodings is what we expect.
|
/art/test/067-preemptive-unpark/ |
D | info.txt | 1 Test that Unsafe.unpark() operates as expected, in particular across a gc.
|
/art/test/202-thread-oome/ |
D | info.txt | 1 Tests that we throw OOME if Thread.nativeCreate fails, rather than aborting.
|
/art/test/061-out-of-memory/ |
D | info.txt | 1 Tests the various ways that an OutOfMemoryError can be constructed and thrown.
|
/art/test/120-hashcode/ |
D | info.txt | 1 Check that object hashCode and System.identityHashCode never cause the hash to change.
|
/art/test/132-daemon-locks-shutdown/ |
D | info.txt | 1 Tests that we can shut down the runtime with daemons still looping over locks.
|
/art/test/089-many-methods/ |
D | info.txt | 1 Test that we print a reasonable message when the application exceeds more
|
/art/test/126-miranda-multidex/ |
D | info.txt | 1 This test ensures that cross-dex-file Miranda methods are correctly resolved.
|
/art/test/111-unresolvable-exception/ |
D | info.txt | 1 Test that we do not segfault when we check a catch handler
|
/art/test/096-array-copy-concurrent-gc/ |
D | info.txt | 1 This is a test to verify that System.arraycopy works nice together with
|
/art/test/085-old-style-inner-class/ |
D | info.txt | 1 Test that the conversion of an old-style (pre-1.5) inner class results
|
1234