Home
last modified time | relevance | path

Searched refs:begin (Results 151 – 175 of 269) sorted by relevance

1234567891011

/art/runtime/
Doat.cc38 SafeMap<std::string, std::string>::const_iterator it = variable_data->begin(); in ComputeOatHeaderSize()
424 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin(); in Flatten()
Doat_file_manager.cc144 if (std::find(boot_oat_files.begin(), boot_oat_files.end(), oat_file.get()) == in GetPrimaryOatFile()
369 auto duplicate_it = already_exists_in_classpath.begin(); in OpenDexFilesFromOat()
624 std::sort(cache.begin(), in UnlinkLeastRecentlyUsedVdexIfNeeded()
809 std::unordered_set<const OatFile*> boot_set(boot_vector.begin(), boot_vector.end()); in SetOnlyUseSystemOatFiles()
Doat_file.cc174 void SetBegin(const uint8_t* begin) { in SetBegin() argument
175 begin_ = begin; in SetBegin()
1354 DCHECK_EQ(static_cast<size_t>(std::count(placeholder_maps_names.begin(), in PreSetup()
1542 const uint8_t* begin = reinterpret_cast<const uint8_t*>(oat_header_.get()); in Setup() local
1543 SetBegin(begin); in Setup()
1544 SetEnd(begin + oat_header_->GetHeaderSize()); in Setup()
1566 auto oat_dex_file_it = std::find(oat_dex_files.begin(), oat_dex_files.end(), &oat_dex_file); in IsClassVerifiedInVdex()
1568 size_t dex_index = oat_dex_file_it - oat_dex_files.begin(); in IsClassVerifiedInVdex()
Dmodule_exclusion_test.cc43 auto it = std::find(modules.begin(), modules.end(), module_); in GetLibCoreModuleNames()
Druntime_callbacks_test.cc236 if (!std::equal(cb_.data.begin(), cb_.data.end(), list.begin())) { in Expect()
/art/libartbase/base/
Dtransform_iterator.h172 return MakeIterationRange(MakeTransformIterator(range.begin(), f), in MakeTransformRange()
Dbit_vector.h95 IndexIterator begin() const;
Dmem_map.h326 uint8_t* begin,
/art/runtime/gc/accounting/
Dspace_bitmap.h108 void ClearRange(const mirror::Object* begin, const mirror::Object* end);
/art/compiler/
Dcfi_test.h76 std::stable_sort(lines.begin(), lines.end(), CompareByAddress); in GenerateExpected()
/art/tools/dexanalyze/
Ddexanalyze_strings.cc360 std::sort(prefixes.begin(), prefixes.end(), [](const std::string& a, const std::string& b) { in Build()
445 ProcessStrings(std::vector<std::string>(unique_strings.begin(), unique_strings.end())); in ProcessDexFiles()
572 std::sort(pairs.begin(), pairs.end()); in Dump()
/art/cmdline/
Dcmdline_types.h215 const char* begin = str.c_str();
221 long long int result = strtoll(begin, &end, 10); // NOLINT [runtime/int] [4]
222 if (begin == end || *end != '\0' || errno == EINVAL) {
/art/compiler/optimizing/
Dssa_liveness_analysis.h222 Iterator begin = FindUseAtOrAfterPosition(first, last, position_begin); in FindMatchingUseRange() local
223 Iterator end = FindUseAtOrAfterPosition(begin, last, position_end); in FindMatchingUseRange()
224 return MakeIterationRange(begin, end); in FindMatchingUseRange()
349 UsePositionList::iterator next_pos = uses_.begin();
1062 const UsePositionList::iterator old_begin = uses_.begin(); in AddBackEdgeUses()
Dsuperblock_cloner.cc44 for (auto use_node = uses.begin(), e = uses.end(); use_node != e; ++use_node) { in IsUsedOutsideRegion()
52 for (auto use_node = env_uses.begin(), e = env_uses.end(); use_node != e; ++use_node) { in IsUsedOutsideRegion()
631 for (auto live_out_it = live_outs_.begin(); live_out_it != live_outs_.end(); ++live_out_it) { in ConstructSubgraphClosedSSA()
643 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) { in ConstructSubgraphClosedSSA()
655 for (auto it = env_uses.begin(), e = env_uses.end(); it != e; /* ++it below */) { in ConstructSubgraphClosedSSA()
Dregister_allocation_resolver.cc314 UsePositionList::const_iterator use_it = current->GetUses().begin(); in ConnectSiblings()
316 EnvUsePositionList::const_iterator env_use_it = current->GetEnvironmentUses().begin(); in ConnectSiblings()
336 matching_use_range.begin(), in ConnectSiblings()
/art/dexlayout/
Ddex_ir.cc163 std::sort(sorted_sections.begin(), in GetSortedDexFileSections()
/art/runtime/gc/space/
Dbump_pointer_space.h137 BumpPointerSpace(const std::string& name, uint8_t* begin, uint8_t* limit);
/art/runtime/mirror/
Dobject_array-inl.h352 inline ObjPtrArrayIter<T> ObjectArray<T>::begin() { in begin() function
360 inline HandleArrayIter<T> ObjectArray<T>::begin(Handle<ObjectArray<T>>& h_this) { in begin() function
/art/libprofile/profile/
Dprofile_compilation_info.cc352 buffer->insert(buffer->end(), value.begin(), value.end()); in AddStringToBuffer()
488 dex_data.bitmap_storage.begin(), in Save()
1560 dex_data->class_set.insert(other_dex_data->class_set.begin(), in MergeWith()
1862 std::iota(vec.begin(), vec.end(), 0u); in GenerateTestProfile()
1863 std::shuffle(vec.begin(), vec.end(), rng); in GenerateTestProfile()
1864 vec.erase(vec.begin() + take, vec.end()); in GenerateTestProfile()
1865 std::sort(vec.begin(), vec.end()); in GenerateTestProfile()
2371 metadata.annotations_.end(), other_annotations.begin(), other_annotations.end()); in MergeData()
2387 metadata.annotations_.end(), other_annotations.begin(), other_annotations.end()); in MergeData()
/art/dex2oat/linker/
Drelative_patcher_test.h169 patched_code_.assign(code.begin(), code.end()); in Link()
354 : code_(code.begin(), code.end()), debug_name_(debug_name) {} in ThunkValue()
/art/tools/hiddenapi/
Dhiddenapi.cc105 return std::find(vec.begin(), vec.end(), elem) != vec.end(); in Contains()
150 return "{" + ::android::base::Join(std::vector<std::string>(s.begin(), s.end()), ",") + "}"; in JoinStringSet()
369 if (std::find(visited.begin(), visited.end(), this) == visited.end()) { in ForEachResolvableMember_Impl()
1013 bool success = ApiList::FromNames(values.begin() + 1, values.end(), &membership); in OpenApiFile()
/art/runtime/gc/
Dallocation_record.cc97 for (auto it = entries_.begin(), end = entries_.end(); it != end;) { in SweepAllocationRecords()
/art/runtime/jit/
Djit_code_cache.h155 ArrayRef<const Entry>::iterator begin() { in begin() function
156 return map_.begin(); in begin()
/art/libelffile/elf/
Delf_builder.h385 if (!std::is_sorted(syms_.begin(), syms_.end(), less_then)) { in WriteCachedSection()
386 std::sort(syms_.begin(), syms_.end(), less_then); in WriteCachedSection()
388 auto locals_end = std::partition_point(syms_.begin(), syms_.end(), is_local); in WriteCachedSection()
389 this->header_.sh_info = locals_end - syms_.begin(); // Required by the spec. in WriteCachedSection()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc94 code->insert(code->begin() + pos, insn_code, insn_code + sizeof(insn_code)); in InsertInsn()
190 return std::vector<uint8_t>(code.begin(), code.end()); in CompileThunk()
404 expected_code.erase(expected_code.begin() + num_nops * 4u, in TestNopsAdrpInsn2AndUseHasThunk()
405 expected_code.begin() + num_nops * 4u + 4u); in TestNopsAdrpInsn2AndUseHasThunk()
411 expected_thunk_code.erase(expected_thunk_code.begin() + 4u, expected_thunk_code.begin() + 8u); in TestNopsAdrpInsn2AndUseHasThunk()

1234567891011