Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 213) sorted by relevance

123456789

/art/test/113-multidex/src/
DMain.java21 Inf1 second = new Second(); in main() local
22 System.out.println(second.getClass().getName()); in main()
23 second.zcall(); in main()
24 second.zcall1(); in main()
25 second.zcall2(); in main()
26 second.zcall3(); in main()
27 second.zcall4(); in main()
28 second.zcall5(); in main()
29 second.zcall6(); in main()
30 second.zcall7(); in main()
[all …]
/art/test/626-const-class-linking/
Dexpected.txt3 second: Test class loader: DefiningLoader
5 second: Test class loader: DefiningLoader
8 second: Test class loader: DefiningLoader
10 second: Test class loader: DefiningLoader
13 second: Test class loader: DefiningLoader
15 second: Test class loader: DefiningLoader
17 second: Test class loader: DefiningLoader
19 second: Test class loader: DefiningLoader
25 second: Test class loader: DefiningLoader
27 second: Test class loader: DefiningLoader
[all …]
/art/libartbase/base/
Dbit_vector_test.cc147 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
150 second.SetBit(64); in TEST()
152 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
159 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
162 second.SetBit(64); in TEST()
163 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
173 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
175 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
176 second.SetBit(4); in TEST()
177 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
[all …]
Dsafe_map.h90 return it->second; in Get()
96 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. in Put()
101 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. in Put()
124 if (!result.second) { in Overwrite()
126 result.first->second = v; in Overwrite()
137 return lb->second; in GetOrCreate()
140 return it->second; in GetOrCreate()
/art/test/626-const-class-linking/src/
DClassPair.java19 public Class<?> second; field in ClassPair
21 public ClassPair(Class<?> first, Class<?> second) { in ClassPair() argument
23 this.second = second; in ClassPair()
29 String second_loader_name = second.getClassLoader().getClass().getName(); in print()
30 System.out.println("second: " + second.getName() + " class loader: " + second_loader_name); in print()
/art/runtime/interpreter/mterp/x86_64/
Dbindiv.S10 GET_WIDE_VREG $second, %rcx # ecx <- vCC
13 GET_VREG $second, %rcx # ecx <- vCC
15 test${suffix} $second, $second
17 cmp${suffix} $$-1, $second
20 idiv${suffix} $second
Dbindiv2addr.S11 GET_WIDE_VREG $second, %rcx # ecx <- vB
14 GET_VREG $second, %rcx # ecx <- vB
16 test${suffix} $second, $second
18 cmp${suffix} $$-1, $second
21 idiv${suffix} $second
/art/test/985-re-obsolete/
Dexpected.txt27 second - Goodbye - private - Transformed
29 second - Pre Start private method call - Transformed
30 second - Hello - private - Transformed
31 second - Post Start private method call - Transformed
33 second - Pre Finish private method call - Transformed
34 second - Goodbye - private - Transformed
35 second - Post Finish private method call - Transformed
/art/test/001-HelloWorld/src/
DMain.java30 final CountDownLatch second = new CountDownLatch(1); in main() local
37 second.await(); in main()
47 second.countDown(); in main()
/art/test/170-interface-init/src/
DMain.java29 final CountDownLatch second = new CountDownLatch(1); in main() local
36 second.await(); in main()
46 second.countDown(); in main()
/art/libdexfile/dex/
Dtest_dex_file_builder.h106 entry.second.idx = string_idx; in Build()
108 entry.second.data_offset = data_section_size; in Build()
117 entry.second = type_idx; in Build()
126 entry.second.idx = proto_idx; in Build()
130 entry.second.data_offset = RoundUp(data_section_size, 4u); in Build()
131 data_section_size = entry.second.data_offset + 4u + num_args * sizeof(DexFile::TypeItem); in Build()
133 entry.second.data_offset = 0u; in Build()
142 entry.second = field_idx; in Build()
151 entry.second = method_idx; in Build()
171 uint32_t raw_offset = data_section_offset + entry.second.data_offset; in Build()
[all …]
/art/test/MultiDex/
DMain.java19 Second second = new Second(); in main() local
20 System.out.println(second.getSecond()); in main()
/art/test/MultiDexModifiedSecondary/
DMain.java19 Second second = new Second(); in main() local
20 System.out.println(second.getSecond()); in main()
/art/test/426-monitor/
Dexpected.txt4 In second instance method
5 In second static method
/art/runtime/
Dcha_test.cc49 ASSERT_EQ(dependents[0].second, METHOD_HEADER2); in TEST_F()
57 ASSERT_EQ(dependents[0].second, METHOD_HEADER2); in TEST_F()
59 ASSERT_EQ(dependents[1].second, METHOD_HEADER3); in TEST_F()
69 ASSERT_EQ(dependents[0].second, METHOD_HEADER3); in TEST_F()
85 ASSERT_EQ(dependents[0].second, METHOD_HEADER1); in TEST_F()
Dimtable_test.cc84 classes.second->FindDeclaredVirtualMethodByName(method_name, pointer_size); in LoadMethods()
94 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second)); in TEST_F()
101 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second)); in TEST_F()
/art/test/003-omnibus-opcodes/src/
DThrow.java90 boolean second = false; in rethrow()
108 second = true; in rethrow()
113 Main.assertTrue(second); in rethrow()
/art/runtime/jdwp/
Dobject_registry.cc135 ObjectRegistryEntry* entry = it->second; in ContainsLocked()
166 const ObjectRegistryEntry* entry = pair.second; in Clear()
187 ObjectRegistryEntry& entry = *it->second; in InternalGet()
200 ObjectRegistryEntry& entry = *it->second; in GetJObject()
209 Promote(*it->second); in DisableCollection()
217 Demote(*it->second); in EnableCollection()
247 ObjectRegistryEntry& entry = *it->second; in IsCollected()
263 ObjectRegistryEntry* entry = it->second; in DisposeObject()
272 if (entry == inner_it->second) { in DisposeObject()
/art/dexdump/
Ddexdump_cfg.cc173 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second; in dumpMethodCFGImpl()
178 << " -> node" << node_id_it->second << ":p" << handler_pc in dumpMethodCFGImpl()
190 last_node_id = it->second; in dumpMethodCFGImpl()
215 << " -> node" << target_it->second << ":p" << (dex_pc + offset) in dumpMethodCFGImpl()
249 << " -> node" << target_it->second << ":p" << (abs_offset) in dumpMethodCFGImpl()
279 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second; in dumpMethodCFGImpl()
284 << " -> node" << node_id_it->second << ":p" << handler_pc in dumpMethodCFGImpl()
297 uint32_t this_node_id = dex_pc_to_incl_id.find(dex_pc)->second; in dumpMethodCFGImpl()
309 << " -> node" << node_id_it->second << ":p" << handler_pc in dumpMethodCFGImpl()
/art/compiler/utils/
Datomic_dex_ref_map-inl.h107 return (it != arrays_.end()) ? &it->second : nullptr; in GetArray()
114 return (it != arrays_.end()) ? &it->second : nullptr; in GetArray()
121 const ElementArray& elements = pair.second; in Visit()
131 for (auto& element : it.second) { in ClearEntries()
/art/runtime/jit/
Djit_code_cache.cc322 it->second.IsCompiled() && in ContainsMethod()
323 ContainsElement(it->second.GetMethods(), method)) { in ContainsMethod()
328 if (it.second == method) { in ContainsMethod()
341 JniStubData& data = it->second; in GetJniStubCode()
619 it->second.RemoveMethodsIn(alloc); in RemoveMethodsIn()
620 if (it->second.GetMethods().empty()) { in RemoveMethodsIn()
621 method_headers.insert(OatQuickMethodHeader::FromCodePointer(it->second.GetCode())); in RemoveMethodsIn()
624 it->first.UpdateShorty(it->second.GetMethods().front()); in RemoveMethodsIn()
629 if (alloc.ContainsUnsafe(it->second)) { in RemoveMethodsIn()
828 JniStubData* data = &it->second; in CommitCodeInternal()
[all …]
/art/compiler/linker/x86/
Drelative_patcher_x86_test.cc35 return result.second; in GetMethodOffset()
100 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size()); in TEST_F()
131 uint32_t diff = bss_begin_ + kStringEntryOffset - (result.second + anchor_offset); in TEST_F()
163 uint32_t diff = kStringOffset - (result.second + anchor_offset); in TEST_F()
/art/compiler/linker/x86_64/
Drelative_patcher_x86_64_test.cc39 return result.second; in GetMethodOffset()
120 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size()); in TEST_F()
144 uint32_t diff = bss_begin_ + kStringEntryOffset - (result.second + kDexCacheLoadCode.size()); in TEST_F()
168 uint32_t diff = kStringOffset - (result.second + kStringReferenceCode.size()); in TEST_F()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java336 MTryBlock second = mutatableCode.mutatableTries.get(i + 1); in updateTryBlocks() local
339 if (first.endInsn.location > second.startInsn.location) { in updateTryBlocks()
343 Log.debug("2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn); in updateTryBlocks()
347 MInsn newInsn = second.startInsn; in updateTryBlocks()
353 second.startInsn = newInsn; in updateTryBlocks()
355 Log.debug("Now 2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn); in updateTryBlocks()
543 public int compare(MInsn first, MInsn second) { in alignDataInstructions()
544 if (first.location < second.location) { in alignDataInstructions()
546 } else if (first.location > second.location) { in alignDataInstructions()
/art/test/504-regression-baseline-entry/smali/
DTest.smali22 goto :second
27 :second

123456789