Searched refs:second (Results 1 - 25 of 140) sorted by relevance

123456

/art/test/113-multidex/src/
H A DMain.java21 Inf1 second = new Second();
22 System.out.println(second.getClass().getName());
23 second.zcall();
24 second.zcall1();
25 second.zcall2();
26 second.zcall3();
27 second.zcall4();
28 second.zcall5();
29 second.zcall6();
30 second
[all...]
/art/test/MultiDex/
H A DMain.java19 Second second = new Second();
20 System.out.println(second.getSecond());
/art/test/MultiDexModifiedSecondary/
H A DMain.java19 Second second = new Second();
20 System.out.println(second.getSecond());
/art/runtime/
H A Dclass_reference.h31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.second) {
H A Dsafe_map.h87 return it->second;
93 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value.
98 DCHECK(result.second); // Check we didn't accidentally overwrite an existing value.
121 if (!result.second) {
123 result.first->second = v;
134 return lb->second;
137 return it->second;
/art/runtime/interpreter/mterp/x86_64/
H A Dbindiv.S1 %default {"result":"","second":"","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
20 idiv${suffix} $second
H A Dbindiv2addr.S1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"}
11 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/504-regression-baseline-entry/smali/
H A DTest.smali22 goto :second
27 :second
/art/runtime/base/
H A Dbit_vector_test.cc147 BitVector second(5, true, Allocator::GetMallocAllocator());
150 second.SetBit(64);
152 bool changed = first.UnionIfNotIn(&second, &third);
159 BitVector second(5, true, Allocator::GetMallocAllocator());
162 second.SetBit(64);
163 bool changed = first.UnionIfNotIn(&second, &third);
173 BitVector second(5, true, Allocator::GetMallocAllocator());
175 EXPECT_TRUE(first.IsSubsetOf(&second));
176 second.SetBit(4);
177 EXPECT_TRUE(first.IsSubsetOf(&second));
[all...]
/art/compiler/dex/quick/
H A Ddex_file_to_method_inliner_map.cc36 delete entry.second;
46 return it->second;
/art/test/003-omnibus-opcodes/src/
H A DThrow.java90 boolean second = false;
108 second = true;
113 Main.assertTrue(second);
/art/compiler/dex/
H A Dverification_results.cc64 DCHECK_EQ(it->second->GetDevirtMap().size(), verified_method->GetDevirtMap().size());
65 DCHECK_EQ(it->second->GetSafeCastSet().size(), verified_method->GetSafeCastSet().size());
80 return (it != verified_methods_.end()) ? it->second : nullptr;
/art/compiler/utils/
H A Dtest_dex_file_builder.h104 entry.second.idx = string_idx;
106 entry.second.data_offset = data_section_size;
115 entry.second = type_idx;
124 entry.second.idx = proto_idx;
128 entry.second.data_offset = RoundUp(data_section_size, 4u);
129 data_section_size = entry.second.data_offset + 4u + num_args * sizeof(DexFile::TypeItem);
131 entry.second.data_offset = 0u;
140 entry.second = field_idx;
149 entry.second = method_idx;
169 uint32_t raw_offset = data_section_offset + entry.second
[all...]
/art/runtime/interpreter/mterp/arm/
H A DbinopLit16.S20 cmp r1, #0 @ is second operand zero?
/art/runtime/interpreter/mterp/mips/
H A Dbinop.S24 # is second operand zero?
H A Dbinop2addr.S20 # is second operand zero?
H A DbinopLit16.S21 # cmp a1, 0; is second operand zero?
/art/runtime/interpreter/mterp/mips64/
H A Dbinop.S23 beqz a1, common_errDivideByZero # is second operand zero?
H A Dbinop2addr.S23 beqz a1, common_errDivideByZero # is second operand zero?
H A DbinopLit16.S20 beqz a1, common_errDivideByZero # is second operand zero?
H A DbinopLit8.S21 beqz a1, common_errDivideByZero # is second operand zero?
H A DbinopWide.S23 beqz a1, common_errDivideByZero # is second operand zero?
H A DbinopWide2addr.S23 beqz a1, common_errDivideByZero # is second operand zero?
/art/runtime/jdwp/
H A Dobject_registry.cc126 ObjectRegistryEntry* entry = it->second;
157 const ObjectRegistryEntry* entry = pair.second;
178 ObjectRegistryEntry& entry = *it->second;
191 ObjectRegistryEntry& entry = *it->second;
200 Promote(*it->second);
208 Demote(*it->second);
238 ObjectRegistryEntry& entry = *it->second;
254 ObjectRegistryEntry* entry = it->second;
263 if (entry == inner_it->second) {
/art/runtime/jit/
H A Doffline_profiling_info.cc199 const DexFileData& dex_data = it.second;
248 if (info_it->second.checksum != checksum) {
252 return &info_it->second;
528 if ((info_it != info_.end()) && (info_it->second.checksum != other_it.second.checksum)) {
536 const DexFileData& other_dex_data = other_it.second;
541 info_it->second.method_set.insert(other_dex_data.method_set.begin(),
543 info_it->second.class_set.insert(other_dex_data.class_set.begin(),
552 if (method_ref.dex_file->GetLocationChecksum() != info_it->second.checksum) {
555 const std::set<uint16_t>& methods = info_it->second
[all...]

Completed in 396 milliseconds

123456