Searched defs:init (Results 1 - 7 of 7) sorted by relevance

/art/test/641-iterations/src/
H A DMain.java25 static void init() { method in class:Main
57 init();
/art/test/561-shared-slowpaths/src/
H A DMain.java27 private static void init(int[] x, int [] y, int l1, int h1, int l2, int h2) { method in class:Main
36 // Test that each of the six possible exceptions situations for init()
47 init(x, y, 0, 100, 0, 100);
61 init(null, y, 0, 100, 0, 100);
75 init(x, y, -1, 100, 0, 100);
89 init(x, y, 0, 101, 0, 100);
103 init(x, null, 0, 100, 0, 100);
117 init(x, y, 0, 100, -1, 100);
131 init(x, y, 0, 100, 0, 101);
/art/runtime/
H A Dplugin.cc47 PluginInitializationFunction init = reinterpret_cast<PluginInitializationFunction>( local
49 if (init != nullptr) {
50 if (!init()) {
H A Dclass_linker_test.cc1276 mirror::Class* init = ResolveVerifyAndClinit(type_idx, getS0, soa.Self(), true, false); local
1277 EXPECT_TRUE(init != nullptr);
1278 EXPECT_TRUE(init->IsInitialized());
/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java262 init();
265 private static void init() { method in class:TestAnnotations.VMRuntime
/art/runtime/base/
H A Darena_allocator.cc118 const size_t init = 0u; // Initial value of the correct type. local
119 return std::accumulate(alloc_stats_.begin(), alloc_stats_.end(), init);
/art/dexlayout/
H A Ddexlayout.cc1225 void DexLayout::DumpSField(uint32_t idx, uint32_t flags, int i, dex_ir::EncodedValue* init) { argument
1242 if (init != nullptr) {
1244 DumpEncodedValue(init);
1258 if (init != nullptr) {
1260 DumpEncodedValue(init);

Completed in 5319 milliseconds