Home
last modified time | relevance | path

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

123456789

/art/test/113-multidex/src-multidex/
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/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/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.h94 return it->second; in Get()
100 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. in Put()
105 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. in Put()
128 if (!result.second) { in Overwrite()
130 result.first->second = v; in Overwrite()
141 return lb->second; in GetOrCreate()
144 return it->second; in GetOrCreate()
/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/tools/dexanalyze/
Ddexanalyze_bytecode.cc40 most_used.emplace_back(pair.second, pair.first); in SortByOrder()
48 CHECK(ret.emplace(pair.second, current_index++).second); in SortByOrder()
55 return os << "{" << pair.first << ", " << pair.second << "}"; in operator <<()
80 sorted.emplace_back(pair.second, pair.first);
81 total += pair.second;
88 printer(os, pair.second);
127 pair.second.types_ = SortByOrder(pair.second.types_, Order::kMostUsed); in ProcessDexFiles()
128 pair.second.fields_ = SortByOrder(pair.second.fields_, Order::kMostUsed); in ProcessDexFiles()
129 pair.second.methods_ = SortByOrder(pair.second.methods_, Order::kMostUsed); in ProcessDexFiles()
130 pair.second.strings_ = SortByOrder(pair.second.strings_, Order::kMostUsed); in ProcessDexFiles()
[all …]
/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.h107 entry.second.idx = string_idx; in Build()
109 entry.second.data_offset = data_section_size; in Build()
118 entry.second = type_idx; in Build()
127 entry.second.idx = proto_idx; in Build()
131 entry.second.data_offset = RoundUp(data_section_size, 4u); in Build()
132 data_section_size = entry.second.data_offset + 4u + num_args * sizeof(dex::TypeItem); in Build()
134 entry.second.data_offset = 0u; in Build()
143 entry.second = field_idx; in Build()
152 entry.second = method_idx; in Build()
172 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/runtime/interpreter/mterp/x86_64/
Darithmetic.S1 %def bindiv(result="", second="", tmp="", wide="", suffix="", rem="0", ext="cdq"):
10 GET_WIDE_VREG $second, %rcx # ecx <- vCC
13 GET_VREG $second, %rcx # ecx <- vCC
15 test${suffix} $second, $second
17 cmp${suffix} $$-1, $second
19 cmp${suffix} $$2, $second
22 idiv${suffix} $second
61 %def bindiv2addr(result="", second="", tmp="", wide="", suffix="", rem="0", ext="cdq"):
71 GET_WIDE_VREG $second, %rcx # ecx <- vB
74 GET_VREG $second, %rcx # ecx <- vB
[all …]
/art/test/426-monitor/
Dexpected.txt4 In second instance method
5 In second static method
/art/tools/veridex/
Dhidden_api.h48 return (it == api_list_.end()) ? hiddenapi::ApiList() : it->second; in GetApiList()
58 if (it == source_.end() || it->second == SignatureSource::UNKNOWN) { in AddSignatureSource()
60 } else if (it->second != source) { in AddSignatureSource()
64 it->second = source; in AddSignatureSource()
73 return (it == source_.end()) ? SignatureSource::UNKNOWN : it->second; in GetSignatureSource()
/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()
Ddex_reference_collection.h59 ret += pair.second.size(); in NumReferences()
76 current_vector_ = &map_.emplace(dex, IndexVector(vector_allocator_)).first->second; in GetOrInsertVector()
/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/profman/
Dboot_image_profile.cc160 if (item_percent >= (thresholdIt->second / 100.f)) { in IncludeItemInProfile()
231 if (IncludeMethodInProfile(flattend_data->GetMaxAggregationForMethods(), it.second, options)) { in GenerateBootImageProfile()
232 FlattenProfileData::ItemMetadata metadata(it.second); in GenerateBootImageProfile()
243 const FlattenProfileData::ItemMetadata& metadata = it.second; in GenerateBootImageProfile()
248 profile_classes.Put(BootImageRepresentation(it.first), it.second); in GenerateBootImageProfile()
256 preloaded_classes.Put(preloaded_class_representation, it.second); in GenerateBootImageProfile()
264 profile_content += ClassToProfileFormat(it.first, it.second, options.append_package_use_list) in GenerateBootImageProfile()
268 profile_content += MethodToProfileFormat(it.first, it.second, options.append_package_use_list) in GenerateBootImageProfile()
275 ClassToProfileFormat(it.first, it.second, options.append_package_use_list) + "\n"; in GenerateBootImageProfile()
/art/dexdump/
Ddexdump_cfg.cc171 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second; in DumpMethodCFG()
176 << " -> node" << node_id_it->second << ":p" << handler_pc in DumpMethodCFG()
188 last_node_id = it->second; in DumpMethodCFG()
213 << " -> node" << target_it->second << ":p" << (dex_pc + offset) in DumpMethodCFG()
247 << " -> node" << target_it->second << ":p" << (abs_offset) in DumpMethodCFG()
277 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second; in DumpMethodCFG()
282 << " -> node" << node_id_it->second << ":p" << handler_pc in DumpMethodCFG()
295 uint32_t this_node_id = dex_pc_to_incl_id.find(dex_pc)->second; in DumpMethodCFG()
307 << " -> node" << node_id_it->second << ":p" << handler_pc in DumpMethodCFG()
/art/libprofile/profile/
Dprofile_boot_info_test.cc62 ASSERT_EQ(loaded_info.GetMethods()[0].second, 0u); in TEST_F()
87 ASSERT_EQ(loaded_info.GetMethods()[0].second, 42u); in TEST_F()
89 ASSERT_EQ(loaded_info.GetMethods()[1].second, 108u); in TEST_F()
91 ASSERT_EQ(loaded_info.GetMethods()[2].second, 54u); in TEST_F()
/art/runtime/jit/
Djit_code_cache.cc305 it->second.IsCompiled() && in ContainsMethod()
306 ContainsElement(it->second.GetMethods(), method)) { in ContainsMethod()
311 if (it.second == method) { in ContainsMethod()
327 JniStubData& data = it->second; in GetJniStubCode()
360 code_ptr = it->second; in GetSavedEntryPointOfPreCompiledMethod()
516 CHECK(debug_info.emplace(addr).second) << "Duplicate debug info: " << addr << " " << name; in FreeAllMethodHeaders()
521 CHECK_EQ(debug_info.count(it.first), 1u) << "No debug info: " << it.second->PrettyMethod(); in FreeAllMethodHeaders()
541 it->second.RemoveMethodsIn(alloc); in RemoveMethodsIn()
542 if (it->second.GetMethods().empty()) { in RemoveMethodsIn()
543 method_headers.insert(OatQuickMethodHeader::FromCodePointer(it->second.GetCode())); in RemoveMethodsIn()
[all …]
/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/dex2oat/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/dex2oat/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()

123456789