Searched refs:first (Results 1 - 25 of 29) sorted by relevance

12

/art/runtime/
H A Dclass_reference.h35 return (lhs.first < rhs.first);
H A Dreference_table.cc156 int first = count - kLast; local
157 if (first < 0) {
158 first = 0;
160 os << " Last " << (count - first) << " entries (of " << count << "):\n";
161 for (int idx = count - 1; idx >= first; --idx) {
H A Dsafe_map.h83 result.first->second = v;
H A Delf_file.cc82 // first just map ELF header to get program header size information
464 CHECK_EQ(symbol.st_value, result.first->second->st_value);
465 CHECK_EQ(symbol.st_size, result.first->second->st_size);
466 CHECK_EQ(symbol.st_info, result.first->second->st_info);
467 CHECK_EQ(symbol.st_other, result.first->second->st_other);
468 CHECK_EQ(symbol.st_shndx, result.first->second->st_shndx);
618 // If p_vaddr is zero, it must be the first loadable segment,
620 // specific address requested, so first request a contiguous chunk
626 // base_address_ after the first zero segment).
H A Ddisassembler_arm.cc164 bool first = true; local
167 if (first) {
168 first = false;
H A Druntime.cc390 const std::string option(options[i].first);
391 if (true && options[0].first == "-Xzygote") {
404 const StringPiece& value = options[i].first;
1007 // Register Throwable first so that registration of other native methods can throw exceptions
/art/compiler/utils/
H A Ddedupe_set.h35 if (a.first < b.first) return true;
36 if (a.first > b.first) return true;
/art/compiler/dex/quick/mips/
H A Dutility_mips.cc338 LIR *first = NULL; local
353 first = NewLIR3(kMipsAddu, t_reg , rBase, r_index);
355 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale);
384 return (first) ? first : res;
390 LIR *first = NULL; local
405 first = NewLIR3(kMipsAddu, t_reg , rBase, r_index);
407 first = OpRegRegImm(kOpLsl, t_reg, r_index, scale);
431 return first;
/art/oatdump/
H A Doatdump.cc397 bool first = true; local
404 os << (first ? "v" : ", v") << dex_reg;
410 first = false;
454 bool first = true; local
457 if (first) {
461 first = false;
532 bool first = true; local
535 if (first) {
539 first = false;
547 if (!first) {
573 bool first = true; local
1183 bool first = true; local
1222 bool first = true; local
[all...]
/art/runtime/base/
H A Dtiming_logger.cc83 uint64_t split_time = split.first;
161 total_ns += split.first;
172 uint64_t split_time = split.first;
183 uint64_t split_time = split.first;
H A Dmutex.cc271 max_tid = it->first;
282 max_tid = it->first;
/art/runtime/jdwp/
H A Djdwp_main.cc471 bool first = true; local
488 if (first && !netState->IsAwaitingHandshake()) {
490 first = false;
H A Dobject_registry.cc58 ObjectRegistryEntry& entry = result.first->second;
/art/test/031-class-attributes/src/
H A DClassAttrs.java327 boolean first = true;
332 if (first) {
334 first = false;
/art/runtime/gc/accounting/
H A Dmod_union_table.cc201 const byte* card = it.first;
225 const byte* card_addr = it.first;
/art/runtime/gc/space/
H A Ddlmalloc_space.cc144 freed.first = nullptr;
335 if (recent_freed_objects_[pos].first == obj) {
344 recent_freed_objects_[recent_free_pos_].first = ptr;
/art/test/046-reflect/src/
H A DMain.java506 boolean first = true;
511 if (first) {
513 first = false;
/art/compiler/sea_ir/debug/
H A Ddot_gen.cc53 dot_text_ += art::StringPrintf("vR = %d", def_it->first);
/art/runtime/arch/arm/
H A Dportable_entrypoints_arm.S55 add sp, #16 @ first 4 args are not passed on stack for portable
/art/compiler/sea_ir/ir/
H A Dsea.cc91 // NewIDom = first (processed) predecessor of b.
178 // Insert a fake SignatureNode for the first parameter.
524 std::pair<int const, std::set<InstructionNode*>*>(de_def->first, solo_def));
534 new_reaching.find(reaching_it->first);
540 reaching_it->first,
/art/runtime/verifier/
H A Dreg_type.cc590 const RegType& _left(reg_type_cache_->GetFromId(refs.first));
602 types.insert(refs.first);
996 CHECK_NE(merged_types_.first, 0U) << *this;
/art/runtime/hprof/
H A Dhprof.cc22 * appear first.
123 // Values for the first byte of HEAP_DUMP and HEAP_DUMP_SEGMENT records:
540 std::string string((*it).first);
584 const mirror::Class* present = *result.first;
/art/test/
H A DAndroid.mk42 # Declare the simplest tests (Main, HelloWorld) first, the rest are alphabetical
/art/compiler/driver/
H A Dcompiler_driver.cc680 // Make a first class to load all classes explicitly listed in the file
707 uint16_t exception_type_idx = exception_type.first;
1437 // The first case where we skip is for redundant class definitions in
1438 // the boot classpath. We skip all but the first definition in that case.
1449 if (pair.first != &dex_file) {
1451 << " previously found in " << pair.first->GetLocation();
2131 // after first initializing its parents, whose locks are acquired. This leads to a
2398 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
/art/compiler/dex/
H A Dssa_transformation.cc183 BasicBlock* curr_bb = curr.first;
316 /* Find the first processed predecessor */

Completed in 843 milliseconds

12