Searched refs:begin (Results 76 - 100 of 161) sorted by relevance

1234567

/art/compiler/debug/dwarf/
H A Ddwarf_test.h121 auto actual_line = actual_lines.begin();
H A Dwriter.h126 data_->insert(data_->end(), buffer->begin(), buffer->end());
/art/dalvikvm/
H A Ddalvikvm.cc73 std::replace(class_name.begin(), class_name.end(), '.', '/');
/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.cc208 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/
H A Dmem_map.h194 uint8_t* begin,
H A Dsignal_catcher.cc53 std::replace(current_cmd_line.begin(), current_cmd_line.end(), '\0', ' ');
H A Dfault_handler.cc295 auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler);
300 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler);
H A Dintern_table.cc408 tables_.insert(tables_.begin(), std::move(set));
492 for (auto it = set->begin(), end = set->end(); it != end;) {
506 return std::accumulate(tables_.begin(),
H A Doat.cc36 SafeMap<std::string, std::string>::const_iterator it = variable_data->begin();
502 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin();
H A Dutils.h203 // additionally allowing names that begin with '<' and end with '>'.
401 inline void FlushInstructionCache(char* begin, char* end) { argument
405 __builtin___clear_cache(begin, end);
H A Dclass_table.cc193 classes_.insert(classes_.begin(), std::move(set));
/art/compiler/utils/
H A Ddedupe_set-inl.h171 std::equal(lhs.Key()->begin(), lhs.Key()->end(), rhs.Key()->begin());
/art/runtime/gc/space/
H A Dmalloc_space.cc39 uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit,
42 : ContinuousMemMapAllocSpace(name, mem_map, begin, end, limit, kGcRetentionPolicyAlwaysCollect),
142 // Should never be asked for negative footprint (ie before begin). Zero footprint is ok.
223 << " begin=" << reinterpret_cast<void*>(Begin())
38 MallocSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit, bool create_bitmaps, bool can_move_objects, size_t starting_size, size_t initial_size) argument
H A Dlarge_object_space.cc110 LargeObjectSpace::LargeObjectSpace(const std::string& name, uint8_t* begin, uint8_t* end) argument
113 total_objects_allocated_(0), begin_(begin), end_(end) {
363 FreeListSpace::FreeListSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end) argument
364 : LargeObjectSpace(name, begin, end),
367 const size_t space_capacity = end - begin;
539 << " begin: " << reinterpret_cast<void*>(Begin())
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64_test.cc150 result.insert(result.end(), kNopCode.begin(), kNopCode.end());
166 result.insert(result.end(), kNopCode.begin(), kNopCode.end());
253 code->insert(code->begin() + pos, insn_code, insn_code + sizeof(insn_code));
317 expected_code.erase(expected_code.begin() + num_nops * 4u,
318 expected_code.begin() + num_nops * 4u + 4u);
324 expected_thunk_code.erase(expected_thunk_code.begin() + 4u, expected_thunk_code.begin() + 8u);
/art/runtime/jit/
H A Djit_code_cache.cc270 for (auto it = method_code_map_.begin(); it != method_code_map_.end();) {
279 for (auto it = osr_code_map_.begin(); it != osr_code_map_.end();) {
287 for (auto it = profiling_infos_.begin(); it != profiling_infos_.end();) {
664 for (auto it = method_code_map_.begin(); it != method_code_map_.end();) {
736 auto profiling_kept_end = std::remove_if(profiling_infos_.begin(), profiling_infos_.end(),
/art/compiler/optimizing/
H A Dnodes.cc1085 auto fixup_end = other->uses_.empty() ? other->uses_.begin() : ++other->uses_.begin();
1091 other->env_uses_.empty() ? other->env_uses_.begin() : ++other->env_uses_.begin();
1108 replacement->uses_.empty() ? replacement->uses_.begin() : ++replacement->uses_.begin();
1128 inputs_.erase(inputs_.begin() + index);
1385 auto uses_it = GetUses().begin();
1729 successor->predecessors_.erase(successor->predecessors_.begin() + this_index);
2390 inputs_.insert(inputs_.begin()
[all...]
H A Dinstruction_simplifier_arm64.cc174 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) {
H A Dprepare_for_register_allocation.cc89 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) {
/art/compiler/dex/
H A Dverified_method.cc82 return std::binary_search(safe_cast_set_.begin(), safe_cast_set_.end(), pc);
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.cc271 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc318 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/base/
H A Dbit_vector.h44 * object with begin() and end() suitable for range-based loops:
102 IndexIterator begin() const { function in class:art::BitVector::IndexContainer
H A Dstringpiece.h133 iterator begin() const { return ptr_; } function in class:art::StringPiece
H A Dtiming_logger.cc120 sorted_histograms(histograms_.begin(), histograms_.end());

Completed in 421 milliseconds

1234567