Searched defs:init (Results 1 - 11 of 11) sorted by last modified time

/art/tools/amm/AmmTest/jni/
H A Dammtest.c23 char init[2 * 4096] = variable
225 uninit[4096] = init[123] + cinit[123];
/art/test/999-redefine-hiddenapi/src/
H A DMain.java27 init();
73 private static native void init(); method in class:Main
/art/test/641-iterations/src/
H A DMain.java25 static void init() { method in class:Main
57 init();
/art/test/674-hiddenapi/src-art/
H A DMain.java36 init();
179 private static native void init(); method in class:Main
/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.cc42 PluginInitializationFunction init = reinterpret_cast<PluginInitializationFunction>( local
44 if (init != nullptr) {
45 if (!init()) {
H A Dreference_table_test.cc211 jmethodID init = soa.Env()->GetMethodID(weak_ref_class, local
212 "<init>",
214 ASSERT_TRUE(init != nullptr);
216 jobject result = soa.Env()->NewObject(weak_ref_class, init, referent);
H A Dclass_linker_test.cc1319 ObjPtr<mirror::Class> init = ResolveVerifyAndClinit(type_idx, local
1324 EXPECT_TRUE(init != nullptr);
1325 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/dexlayout/
H A Ddexlayout.cc1289 void DexLayout::DumpSField(uint32_t idx, uint32_t flags, int i, dex_ir::EncodedValue* init) { argument
1306 if (init != nullptr) {
1308 DumpEncodedValue(init);
1322 if (init != nullptr) {
1324 DumpEncodedValue(init);
/art/runtime/base/
H A Darena_allocator.cc126 const size_t init = 0u; // Initial value of the correct type. local
127 return std::accumulate(alloc_stats_.begin(), alloc_stats_.end(), init);

Completed in 610 milliseconds