/art/libartbase/base/ |
D | dchecked_vector.h | 41 using Base = std::vector<T, Alloc>; variable 44 using typename Base::value_type; 45 using typename Base::allocator_type; 46 using typename Base::reference; 47 using typename Base::const_reference; 48 using typename Base::pointer; 49 using typename Base::const_pointer; 50 using typename Base::iterator; 51 using typename Base::const_iterator; 52 using typename Base::reverse_iterator; [all …]
|
D | hash_map.h | 63 using Base = HashSet<std::pair<Key, Value>, 70 HashMap() : Base() { } in HashMap() 72 : Base(alloc) { } in HashMap()
|
/art/compiler/driver/ |
D | compiler_options_map-inl.h | 34 template <class Base> 35 inline bool ReadCompilerOptions(Base& map, CompilerOptions* options, std::string* error_msg) { in ReadCompilerOptions() 36 if (map.Exists(Base::CompilerFilter)) { in ReadCompilerOptions() 38 if (!CompilerFilter::ParseCompilerFilter(map.Get(Base::CompilerFilter)->c_str(), in ReadCompilerOptions() 41 map.Get(Base::CompilerFilter)->c_str()); in ReadCompilerOptions() 46 map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_); in ReadCompilerOptions() 47 map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_); in ReadCompilerOptions() 48 map.AssignIfExists(Base::NumDexMethodsThreshold, &options->num_dex_methods_threshold_); in ReadCompilerOptions() 49 map.AssignIfExists(Base::InlineMaxCodeUnitsThreshold, &options->inline_max_code_units_); in ReadCompilerOptions() 50 map.AssignIfExists(Base::GenerateDebugInfo, &options->generate_debug_info_); in ReadCompilerOptions() [all …]
|
D | compiler_options_map-storage.h | 38 template <typename Base, template <typename TV> class KeyType> \ 39 const KeyType<Type> CompilerOptionsMap<Base, KeyType>::Name {__VA_ARGS__};
|
D | compiler_options_map.h | 32 template <typename Base, template <typename TV> class KeyType> 33 struct CompilerOptionsMap : VariantMap<Base, KeyType> {
|
/art/test/476-checker-ctor-fence-redun-elim/src/ |
D | Main.java | 29 class Base { class 49 class OneFinal extends Base { 98 Base b = new OneFinal(1); in exercise() 172 Base b = new ThreeFinal(1, 1, 2); in exercise() 212 Base b = new Base(); in exercise() 214 Base b2 = new Base(); in exercise() 258 Base b = new ThreeFinal(1, 1, 2); in exercise() 264 Base b2 = new ThreeFinal(4, 5, 6); in exercise() 309 Base b = new Base(); in exercise() 316 Base b2 = new Base(); in exercise() [all …]
|
/art/test/569-checker-pattern-replacement/src-multidex/ |
D | Base.java | 17 public class Base { class 18 Base() { in Base() method in Base 24 Base(int intValue) { in Base() method in Base 28 Base(String stringValue) { in Base() method in Base 34 Base(double doubleValue, Object objectValue) { in Base() method in Base 39 Base(int intValue, double doubleValue, Object objectValue) { in Base() method in Base 45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { in Base() method in Base 53 Base(double doubleValue) { in Base() method in Base 57 Base(Object objectValue) { in Base() method in Base 62 Base(int intValue, long dummy) { in Base() method in Base
|
/art/test/077-method-override/ |
D | expected.txt | 1 declaredInBase: Base 7 overridePublicWithPrivate: Base 8 overridePrivateWithPublic: Base 10 overrideVirtualWithStatic: Base 12 overrideStaticWithVirtual: Base
|
/art/test/616-cha-interface-default/src/ |
D | Main.java | 17 class Main1 implements Base { 24 class Main3 implements Base { 34 static Base sMain1; 35 static Base sMain2; 36 static Base sMain3; 143 assertSingleImplementation(Base.class, "foo", true); in main() 159 assertSingleImplementation(Base.class, "foo", false); in main() 173 static Base createMain3() { in createMain3()
|
/art/test/139-register-natives/src/ |
D | Main.java | 52 private static void expectThrows(Base b) { in expectThrows() 60 private static void expectNotThrows(Base b) { in expectNotThrows() 70 abstract class Base { class 74 class TestSuper extends Base { 92 class TestSuper2 extends Base{ 104 class TestSuper3 extends Base {
|
/art/test/569-checker-pattern-replacement/src/ |
D | Main.java | 339 Base b = new Base(); in constructBase() 364 Base b = new Base(intValue); in constructBase() 381 Base b = new Base(0); in constructBaseWith0() 406 Base b = new Base(stringValue); in constructBase() 426 Base b = new Base(stringValue); in constructBaseWithNullString() 455 Base b = new Base(doubleValue, objectValue); in constructBase() 488 Base b = new Base(intValue, doubleValue, objectValue); in constructBase() 516 Base b = new Base(0, doubleValue, null); in constructBaseWith0DoubleNull() 540 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase() 567 Base b = new Base(doubleValue); in constructBase() [all …]
|
/art/test/616-cha-miranda/src/ |
D | Main.java | 21 abstract class Base implements Iface { class 29 class Main1 extends Base { 46 static Base sMain1; 47 static Base sMain2; 131 assertSingleImplementation(Base.class, "foo", true); in main() 147 assertSingleImplementation(Base.class, "foo", false); in main()
|
/art/test/616-cha-abstract/src/ |
D | Main.java | 17 abstract class Base { class 25 class Main1 extends Base { 42 static Base sMain1; 43 static Base sMain2; 127 assertSingleImplementation(Base.class, "foo", true); in main() 143 assertSingleImplementation(Base.class, "foo", false); in main()
|
/art/test/1961-checker-loop-vectorizer/src/ |
D | Main.java | 34 static class Base {} class in Main 35 static class Foo extends Base {} 36 static class Bar extends Base {} 44 Base base = new Foo(); in $noinline$testCheckCast()
|
/art/test/616-cha-interface/src/ |
D | Main.java | 17 interface Base { interface 22 class Main1 implements Base { 55 static Base sMain1; 56 static Base sMain2; 141 assertSingleImplementation(Base.class, "foo", true); in main() 157 assertSingleImplementation(Base.class, "foo", false); in main()
|
/art/test/065-mismatched-implements/src/ |
D | Indirect.java | 25 Base base = new Base(); in main()
|
/art/test/068-classloader/src/ |
D | Base.java | 20 public class Base { class 21 public Base() {} in Base() method in Base
|
/art/test/066-mismatched-super/src/ |
D | Main.java | 23 Base base = new Base(); in main()
|
D | Base.java | 17 public class Base extends Defs { class
|
/art/test/077-method-override/src/ |
D | Main.java | 37 ((Base)derived).overrideVirtualWithStatic(); in main() 47 ((Base)derived).overrideStaticWithVirtual(); in main()
|
/art/test/093-serialization/src/ |
D | Main.java | 92 class Base implements Serializable { class 99 public Base() { in Base() method in Base 106 class Sub extends Base {
|
/art/test/164-resolution-trampoline-dex-cache/src/ |
D | Derived.java | 17 public class Derived extends Base {
|
/art/test/159-app-image-fields/src/AAA/ |
D | Base.java | 19 class Base { class
|
/art/test/163-app-image-methods/ |
D | profile | 1 LAAA/Base;
|
/art/test/163-app-image-methods/src/AAA/ |
D | Derived.java | 19 public class Derived extends Base {
|