Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 219) 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-stdout.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.cc176 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
179 second.SetBit(64); in TEST()
181 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
188 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
191 second.SetBit(64); in TEST()
192 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
202 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
204 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
205 second.SetBit(4); in TEST()
206 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
[all …]
Dstats-inl.h52 sorted_children.emplace(std::make_pair(-it.second.Value(), it.first), it.second); in Dump()
65 it.second.Dump(os, it.first.second, total, unit_size, unit); in Dump()
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-stdout.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/libdexfile/dex/
Dtest_dex_file_builder.h105 entry.second.idx = string_idx;
107 entry.second.data_offset = data_section_size;
116 entry.second = type_idx;
125 entry.second.idx = proto_idx;
129 entry.second.data_offset = RoundUp(data_section_size, 4u);
130 data_section_size = entry.second.data_offset + 4u + num_args * sizeof(dex::TypeItem);
132 entry.second.data_offset = 0u;
141 entry.second = field_idx;
150 entry.second = method_idx;
169 uint32_t raw_offset = data_section_offset + entry.second.data_offset;
[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/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/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/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-stdout.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/runtime/jit/
Djit_code_cache.cc295 it->second.IsCompiled() && in ContainsMethod()
296 ContainsElement(it->second.GetMethods(), method)) { in ContainsMethod()
301 if (it.second == method) { in ContainsMethod()
317 JniStubData& data = it->second; in GetJniStubCode()
334 code_ptr = it->second; in GetSavedEntryPointOfPreCompiledMethod()
437 ProfilingInfo* info = it.second; in SweepRootTables()
494 CHECK(debug_info.emplace(addr).second) << "Duplicate debug info: " << addr << " " << name; in FreeAllMethodHeaders()
499 CHECK_EQ(debug_info.count(it.first), 1u) << "No debug info: " << it.second->PrettyMethod(); in FreeAllMethodHeaders()
520 it->second.RemoveMethodsIn(alloc); in RemoveMethodsIn()
521 if (it->second.GetMethods().empty()) { in RemoveMethodsIn()
[all …]
/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/test/003-omnibus-opcodes/src/
DThrow.java90 boolean second = false; in rethrow()
108 second = true; in rethrow()
113 Main.assertTrue(second); in rethrow()
/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/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc77 if (it != syms.end() && it->second.st_value == sym.st_value) { in WriteMinidebugInfo()
86 const Elf_Sym& sym = entry.second; in WriteMinidebugInfo()
105 if (/* inserted */ it.second) { in WriteMinidebugInfo()
108 new_cie_offset[cie] = it.first->second; in WriteMinidebugInfo()
123 const CIE* cie = entry.second; in WriteMinidebugInfo()
/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/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