Home
last modified time | relevance | path

Searched refs:dchecked_vector (Results 1 – 18 of 18) sorted by relevance

/aosp12/art/libartbase/base/
H A Ddchecked_vector.h58 dchecked_vector() in dchecked_vector() function
64 dchecked_vector(size_type n,
73 dchecked_vector(const dchecked_vector& src) in dchecked_vector() function
75 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector() function
77 dchecked_vector(dchecked_vector&& src) in dchecked_vector() function
79 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector() function
84 ~dchecked_vector() = default;
85 dchecked_vector& operator=(const dchecked_vector& src) {
89 dchecked_vector& operator=(dchecked_vector&& src) {
196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) { in swap()
[all …]
H A Darena_containers.h56 using ArenaVector = dchecked_vector<T, ArenaAllocatorAdapter<T>>;
H A Dscoped_arena_containers.h54 using ScopedArenaVector = dchecked_vector<T, ScopedArenaAllocatorAdapter<T>>;
H A Darena_allocator.h145 dchecked_vector<size_t> alloc_stats_; // Bytes used by various allocation kinds.
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.h692 const dchecked_vector<std::string>* extra_descriptors_;
711 const dchecked_vector<std::string>* extra_descriptors_;
791 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap,
800 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap,
891 /*out*/ dchecked_vector<ProfileIndexType>* dex_profile_index_remap,
897 /*out*/ dchecked_vector<ExtraDescriptorIndex>* extra_descriptors_remap,
903 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap,
904 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap,
910 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap,
911 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap,
[all …]
H A Dprofile_compilation_info.cc1488 /*out*/ dchecked_vector<ProfileIndexType>* dex_profile_index_remap, in ReadDexFilesSection()
1605 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, in ReadClassesSection()
1606 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, in ReadClassesSection()
1641 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, in ReadMethodsSection()
1642 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, in ReadMethodsSection()
1721 dchecked_vector<FileSectionInfo> section_infos(section_count); in LoadInternal()
1759 dchecked_vector<ProfileIndexType> dex_profile_index_remap; in LoadInternal()
1768 dchecked_vector<ExtraDescriptorIndex> extra_descriptors_remap; in LoadInternal()
1842 dchecked_vector<ProfileIndexType> dex_profile_index_remap; in MergeWith()
1859 dchecked_vector<ExtraDescriptorIndex> extra_descriptors_remap; in MergeWith()
[all …]
/aosp12/art/dex2oat/linker/
H A Doat_writer.h155 dchecked_vector<std::string> GetSourceLocations() const;
363 dchecked_vector<debug::MethodDebugInfo> method_info_;
478 dchecked_vector<OatDexFile> oat_dex_files_;
479 dchecked_vector<OatClassHeader> oat_class_headers_;
480 dchecked_vector<OatClass> oat_classes_;
H A Doat_writer.cc253 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods,
265 dchecked_vector<CompiledMethod*> compiled_methods_;
271 dchecked_vector<uint32_t> oat_method_offsets_offsets_from_oat_class_;
296 dchecked_vector<OatMethodOffsets> method_offsets_;
297 dchecked_vector<OatQuickMethodHeader> method_headers_;
367 dchecked_vector<uint32_t> class_offsets_;
670 dchecked_vector<std::string> OatWriter::GetSourceLocations() const { in GetSourceLocations()
671 dchecked_vector<std::string> locations; in GetSourceLocations()
1042 dchecked_vector<CompiledMethod*> compiled_methods_;
3984 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass()
H A Dimage_writer.h652 dchecked_vector<ImageInfo> image_infos_;
H A Dimage_writer.cc1539 dchecked_vector<dchecked_vector<dchecked_vector<mirror::Object*>>> bin_objects_;
1544 dchecked_vector<mirror::String*> non_dex_file_interns_;
/aosp12/art/compiler/utils/
H A Datomic_dex_ref_map.h72 using ElementArray = dchecked_vector<Atomic<Value>>;
/aosp12/art/test/622-simplifyifs-exception-edges/smali/
H A DTest.smali66 # this caused out-of-range access triggering a DCHECK() in dchecked_vector<>.
/aosp12/art/runtime/
H A Dclass_loader_context.h94 bool RemoveLocationsFromClassPaths(const dchecked_vector<std::string>& compilation_sources);
H A Dstack_map.h112 dchecked_vector<DexRegisterLocation> regs_large_;
H A Dclass_loader_context_test.cc1031 dchecked_vector<std::string> classpath_dex; in TEST_F()
1033 dchecked_vector<std::string> compilation_sources; in TEST_F()
H A Dclass_loader_context.cc517 const dchecked_vector<std::string>& locations) { in RemoveLocationsFromClassPaths()
/aosp12/art/compiler/optimizing/
H A Dstack_map_stream.cc294 auto expected_dex_registers = std::make_shared<dchecked_vector<DexRegisterLocation>>( in CreateDexRegisterMap()
/aosp12/art/dex2oat/
H A Ddex2oat.cc2770 dchecked_vector<uintptr_t> oat_data_begins; in CreateImageFile()