Searched refs:that (Results 1 – 25 of 140) sorted by relevance
123456
/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/test/484-checker-register-hints/ |
D | info.txt | 1 Checks that the register allocator does not punish other 2 blocks because one block forced spilling. The block that
|
/art/test/801-VoidCheckCast/ |
D | info.txt | 1 A test that is only available as a DEX binary. 3 This tests that an attempt to use check-cast with the void type doesn't
|
/art/test/134-reg-promotion/ |
D | info.txt | 1 Test that a vreg value that was defined by a const 0 and is used is both ref
|
/art/test/435-new-instance/ |
D | info.txt | 1 Tests that new-instance throws: 6 This also verifies that we don't remove dead (code) new-instances which may
|
/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/tools/dexfuzz/ |
D | README | 16 In typical operation, you provide DexFuzz with a set of DEX files that are the "seeds" 31 2. Make sure you have an Android device connected via ADB, that is capable of 36 that are mutated to form new tests. 37 5. Create a directory on your device that mutated test files can be pushed to and 59 Note that if you wanted to test both ARM and ARM64 on an ARM64 device, you can use 93 VerifyFail - the number of mutated files that ended up failing to verify, either 96 avoid attempting to mutate a file indefinitely, it is possible that 99 Timed Out - mutated files that timed out for one or more backends. 105 Successful - mutated files that executed and all backends agreed on the resulting 108 Divergence - mutated files that executed and some backend disagreed about the
|
/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/435-try-finally-without-catch/ |
D | info.txt | 9 that clever regarding exception handling: if the divisor is known to 15 clause but with no `catch' block: in that case, the generated Dex code 18 clue that it contains a `try' statement, which it cannot optimize 19 (yet). With no hint that this method might contain one (or several)
|
/art/runtime/mirror/ |
D | string.cc | 128 bool String::Equals(String* that) { in Equals() argument 129 if (this == that) { in Equals() 132 } else if (that == nullptr) { in Equals() 135 } else if (this->GetLength() != that->GetLength()) { in Equals() 141 for (int32_t i = 0; i < that->GetLength(); ++i) { in Equals() 142 if (this->CharAt(i) != that->CharAt(i)) { in Equals()
|
/art/cmdline/ |
D | README.md | 6 This directory contains the classes that do common command line tool initialization and parsing. The 16 generate a type-safe value parser that process a user-provided list of strings (`argv`). Currently, 32 // Note that some template boilerplate has been avoided for clarity. 81 type of value (such as an int or double as in the above `FruitVariantMap` example). To do that, a 82 _wildcard_ must be used to denote the location within the token that the type will be parsed out of. 93 Everything that follows a `WithType<T>()` call is thus type checked to only take `T` values. 96 argument that only cares about presence). 132 (Note that this method will not work when the argument definitions have a wildcard because there is 133 no way to position-ally match that). 154 Currently, only `IntoKey` is supported, but that may change in the future. [all …]
|
/art/test/431-type-propagation/smali/ |
D | TypePropagation.smali | 27 # the verifier, it assumes that the integer input must be converted 29 # hasn't ensured that. Therefore, the compiler must remove 33 # Do a call to create an environment that will capture all Dex registers.
|
/art/test/464-checker-inline-sharpen-calls/ |
D | info.txt | 1 Check that we inline sharpen calls.
|
/art/test/465-checker-clinit-gvn/ |
D | info.txt | 1 Check that we GVN HClinitCheck instructions.
|
/art/test/409-materialized-condition/ |
D | info.txt | 1 Test that materialized conditions are evaluated correctly.
|
/art/test/119-noimage-patchoat/ |
D | info.txt | 1 Test that disables patchoat'ing the image.
|
/art/test/116-nodex2oat/ |
D | info.txt | 1 Test that disables dex2oat'ing the application.
|
/art/test/118-noimage-dex2oat/ |
D | info.txt | 1 Test that disables dex2oat'ing the image.
|
/art/test/117-nopatchoat/ |
D | info.txt | 1 Test that disables patchoat'ing the application.
|
/art/test/137-cfi/ |
D | info.txt | 1 Test that unwinding with CFI info works.
|
/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.
|
123456