Searched refs:second (Results 1 - 25 of 140) sorted by last modified time

123456

/art/test/504-regression-baseline-entry/smali/
H A DTest.smali22 goto :second
27 :second
/art/test/
H A DAndroid.run-test.mk336 # * 137-cfi needs to unwind a second forked process. We're using a primitive sleep to wait till we
337 # hope the second process got into the expected state. The slowness of gcstress makes this bad.
/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/tools/dexfuzz/src/dexfuzz/program/
H A DCodeTranslator.java329 MTryBlock second = mutatableCode.mutatableTries.get(i + 1);
332 if (first.endInsn.location > second.startInsn.location) {
336 Log.debug("2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn);
340 MInsn newInsn = second.startInsn;
346 second.startInsn = newInsn;
348 Log.debug("Now 2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn);
535 public int compare(MInsn first, MInsn second) {
536 if (first.location < second
[all...]
/art/test/098-ddmc/src/
H A DMain.java75 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations());
76 System.out.println("second > first =" + (second.numberOfEntries > first.numberOfEntries));
/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/imgdiag/
H A Dimgdiag.cc131 // In actuality there's more than 1 map, but the second one is read-only.
678 mirror::Class* klass = vk_pair.second;
705 off_t offset = pair.second;
756 off_t offset = pair.second;
788 mirror::Class* klass = vk_pair.second;
827 os << " " << PrettyClass(vk_pair.second) << " (" << vk_pair.first << ")\n";
888 value_key_vector.push_back(std::make_pair(value_mapper(kv_pair.second), kv_pair.first));
/art/oatdump/
H A Doatdump.cc93 return it->second.get();
260 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
1949 it->second.bytes += object_bytes_in;
1950 it->second.count += 1;
2114 double average = static_cast<double>(sizes_and_count.second.bytes) /
2115 static_cast<double>(sizes_and_count.second.count);
2116 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
2119 descriptor.c_str(), sizes_and_count.second.bytes,
2120 sizes_and_count.second.count, average, percent);
2121 object_bytes_total += sizes_and_count.second
[all...]
/art/patchoat/
H A Dpatchoat.cc283 space_to_memmap_map.find(space)->second.get(),
288 timings)).first->second;
321 PatchOat& p = space_to_patchoat_map.find(space)->second;
329 bool skip_patching_oat = space_to_skip_patching_map.find(space)->second;
H A Dpatchoat.h157 return reinterpret_cast<T*>(space_map_->find(image_space)->second->Begin() + heap_off);
/art/runtime/
H A Dart_method.h135 if (input.second != updated.second) {
136 SetImplementationMethod(table_index, pointer_size, updated.second);
H A Dclass_linker.cc2249 if (pair.second != nullptr) {
2259 *pair.second);
2383 if (pair.second != nullptr) {
2389 *pair.second);
7136 ArtMethod* new_vtable_method = translated_method_it->second;
7155 if (translation_it->second.IsInConflict()) {
7165 } else if (translation_it->second.IsAbstract()) {
7175 DCHECK(translation_it->second.IsTranslation());
7176 translated_method = translation_it->second.GetTranslation();
7183 auto* new_method = it->second;
[all...]
H A Dclass_reference.h31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.second) {
H A Ddebugger.cc4847 const gc::AllocRecord* record = &it->second;
4986 const gc::AllocRecord* record = &it->second;
5037 const gc::AllocRecord* record = &it->second;
H A Ddex_file_verifier.cc1647 if (UNLIKELY(it->second != type)) {
1649 offset, type, it->second);
H A Delf_file.cc879 if (!result.second) {
881 if ((symbol->st_value != result.first->second->st_value) ||
882 (symbol->st_size != result.first->second->st_size) ||
883 (symbol->st_info != result.first->second->st_info) ||
884 (symbol->st_other != result.first->second->st_other) ||
885 (symbol->st_shndx != result.first->second->st_shndx)) {
896 return it->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...]
H A Dhash_set_test.cc275 ASSERT_EQ(it->second, 123);
278 ASSERT_EQ(it->second, 124);
H A Dmutex.cc79 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
276 most_common_blocked.Overwrite(blocked_tid, it->second + count);
282 most_common_blocker.Overwrite(owner_tid, it->second + count);
291 if (pair.second > max_tid_count) {
293 max_tid_count = pair.second;
302 if (pair.second > max_tid_count) {
304 max_tid_count = pair.second;
H A Dstl_util.h79 delete i->second;
H A Dvariant_map.h304 key.ValueDelete(it->second);
345 void* value = kv_pair.second;
439 return reinterpret_cast<const TValue*>(it->second);
450 kv_pair.first->ValueDelete(kv_pair.second);
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc830 pair.second->Assign(soa_->Decode<mirror::Object*>(pair.first));
919 pair.second->Assign(soa_->Decode<mirror::Object*>(pair.first));
1981 // In the second case, we need to execute the binding and continue with the actual native function
/art/runtime/gc/accounting/
H A Dmod_union_table.cc324 for (mirror::HeapReference<mirror::Object>* ref : ref_pair.second) {
336 for (mirror::HeapReference<mirror::Object>* obj_ptr : ref_pair.second) {
360 for (mirror::HeapReference<mirror::Object>* ref : ref_pair.second) {
399 found->second = cards_references;
411 std::vector<mirror::HeapReference<mirror::Object>*>& references = it->second;
/art/runtime/gc/
H A Dallocation_record.cc105 AllocRecord& record = it->second;
146 AllocRecord& record = it->second;

Completed in 388 milliseconds

123456