Home
last modified time | relevance | path

Searched refs:Base (Results 1 – 25 of 64) sorted by relevance

123

/art/libartbase/base/
Ddchecked_vector.h41 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 …]
Dhash_map.h80 using Base = HashSet<std::pair<Key, Value>,
88 using Base::Base;
91 typename Base::iterator Overwrite(const Key& k, const Value& v) { in Overwrite()
92 auto res = Base::insert({ k, v }).first; in Overwrite()
/art/test/476-checker-ctor-fence-redun-elim/src/
DMain.java29 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/compiler/driver/
Dcompiler_options_map-inl.h53 template <class Base>
54 inline bool ReadCompilerOptions(Base& map, CompilerOptions* options, std::string* error_msg) {
55 if (map.Exists(Base::CompilerFilter)) {
56 options->SetCompilerFilter(*map.Get(Base::CompilerFilter));
58 map.AssignIfExists(Base::CompileArtTest, &options->compile_art_test_);
59 map.AssignIfExists(Base::HugeMethodMaxThreshold, &options->huge_method_threshold_);
60 map.AssignIfExists(Base::LargeMethodMaxThreshold, &options->large_method_threshold_);
61 map.AssignIfExists(Base::NumDexMethodsThreshold, &options->num_dex_methods_threshold_);
62 map.AssignIfExists(Base::InlineMaxCodeUnitsThreshold, &options->inline_max_code_units_);
63 map.AssignIfExists(Base::GenerateDebugInfo, &options->generate_debug_info_);
[all …]
Dcompiler_options_map.h33 template <typename Base, template <typename TV> class KeyType>
34 struct CompilerOptionsMap : VariantMap<Base, KeyType> {
Dcompiler_options_map-storage.h38 template <typename Base, template <typename TV> class KeyType> \
39 const KeyType<Type> CompilerOptionsMap<Base, KeyType>::Name {__VA_ARGS__};
/art/test/179-nonvirtual-jni/
Dexpected-stdout.txt2 Call lookup: Base, caller: Base, Obj: Base
3 Hello from Base
4 Call lookup: Base, caller: Base, Obj: Ext
5 Hello from Base
6 Call lookup: Base, caller: Ext, Obj: Ext
7 Hello from Base
/art/test/569-checker-pattern-replacement/src-multidex/
DBase.java17 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 unused) { in Base() method in Base
/art/test/179-nonvirtual-jni/src/
DMain.java18 public static class Base { class in Main
23 public static class Ext extends Base{
32 callSayHiMethodNonvirtualWith(Base.class, Base.class, new Base()); in main()
38 callSayHiMethodNonvirtualWith(Base.class, Base.class, new Ext()); in main()
44 callSayHiMethodNonvirtualWith(Base.class, Ext.class, new Ext()); in main()
/art/test/077-method-override/
Dexpected-stdout.txt1 declaredInBase: Base
7 overridePublicWithPrivate: Base
8 overridePrivateWithPublic: Base
10 overrideVirtualWithStatic: Base
12 overrideStaticWithVirtual: Base
/art/test/569-checker-pattern-replacement/src/
DMain.java343 Base b = new Base(); in constructBase()
368 Base b = new Base(intValue); in constructBase()
385 Base b = new Base(0); in constructBaseWith0()
410 Base b = new Base(stringValue); in constructBase()
430 Base b = new Base(stringValue); in constructBaseWithNullString()
459 Base b = new Base(doubleValue, objectValue); in constructBase()
492 Base b = new Base(intValue, doubleValue, objectValue); in constructBase()
520 Base b = new Base(0, doubleValue, null); in constructBaseWith0DoubleNull()
544 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
571 Base b = new Base(doubleValue); in constructBase()
[all …]
/art/test/616-cha-interface-default/src/
DMain.java17 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/
DMain.java52 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/616-cha-miranda/src/
DMain.java21 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/
DMain.java17 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/616-cha-interface/src/
DMain.java17 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/1961-checker-loop-vectorizer/src/
DMain.java34 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/065-mismatched-implements/src/
DIndirect.java25 Base base = new Base(); in main()
/art/test/068-classloader/src/
DBase.java20 public class Base { class
21 public Base() {} in Base() method in Base
/art/test/066-mismatched-super/src/
DMain.java23 Base base = new Base(); in main()
DBase.java17 public class Base extends Defs { class
/art/test/093-serialization/src/
DMain.java92 class Base implements Serializable { class
99 public Base() { in Base() method in Base
106 class Sub extends Base {
/art/test/077-method-override/src/
DMain.java37 ((Base)derived).overrideVirtualWithStatic(); in main()
47 ((Base)derived).overrideStaticWithVirtual(); in main()
/art/test/164-resolution-trampoline-dex-cache/src/
DDerived.java17 public class Derived extends Base {
/art/test/163-app-image-methods/src/AAA/
DBase.java19 class Base { class

123