Searched refs:dchecked_vector (Results 1 – 17 of 17) sorted by relevance
/art/libartbase/base/ |
D | dchecked_vector.h | 37 class dchecked_vector : private std::vector<T, Alloc> { 58 dchecked_vector() in dchecked_vector() function 60 explicit dchecked_vector(const allocator_type& alloc) in dchecked_vector() function 62 explicit dchecked_vector(size_type n, const allocator_type& alloc = allocator_type()) 64 dchecked_vector(size_type n, 69 dchecked_vector(InputIterator first, 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 [all …]
|
D | arena_containers.h | 56 using ArenaVector = dchecked_vector<T, ArenaAllocatorAdapter<T>>;
|
D | scoped_arena_containers.h | 54 using ScopedArenaVector = dchecked_vector<T, ScopedArenaAllocatorAdapter<T>>;
|
D | arena_allocator.h | 144 dchecked_vector<size_t> alloc_stats_; // Bytes used by various allocation kinds.
|
/art/dex2oat/linker/ |
D | oat_writer.h | 165 dchecked_vector<std::string> GetSourceLocations() const; 374 dchecked_vector<debug::MethodDebugInfo> method_info_; 470 dchecked_vector<OatDexFile> oat_dex_files_; 471 dchecked_vector<OatClassHeader> oat_class_headers_; 472 dchecked_vector<OatClass> oat_classes_;
|
D | oat_writer.cc | 254 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, 266 dchecked_vector<CompiledMethod*> compiled_methods_; 272 dchecked_vector<uint32_t> oat_method_offsets_offsets_from_oat_class_; 289 dchecked_vector<OatMethodOffsets> method_offsets_; 290 dchecked_vector<OatQuickMethodHeader> method_headers_; 362 dchecked_vector<uint32_t> class_offsets_; 666 dchecked_vector<std::string> OatWriter::GetSourceLocations() const { in GetSourceLocations() 667 dchecked_vector<std::string> locations; in GetSourceLocations() 1033 dchecked_vector<CompiledMethod*> compiled_methods_; 4015 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass()
|
D | image_writer.h | 693 dchecked_vector<ImageInfo> image_infos_;
|
D | image_writer.cc | 1814 dchecked_vector<dchecked_vector<dchecked_vector<mirror::Object*>>> bin_objects_;
|
/art/compiler/utils/ |
D | atomic_dex_ref_map.h | 72 using ElementArray = dchecked_vector<Atomic<Value>>;
|
/art/test/622-simplifyifs-exception-edges/smali/ |
D | Test.smali | 66 # this caused out-of-range access triggering a DCHECK() in dchecked_vector<>.
|
/art/runtime/ |
D | class_loader_context.h | 90 bool RemoveLocationsFromClassPaths(const dchecked_vector<std::string>& compilation_sources);
|
D | stack_map.h | 112 dchecked_vector<DexRegisterLocation> regs_large_;
|
D | class_loader_context_test.cc | 985 dchecked_vector<std::string> classpath_dex; in TEST_F() 987 dchecked_vector<std::string> compilation_sources; in TEST_F()
|
D | class_loader_context.cc | 533 const dchecked_vector<std::string>& locations) { in RemoveLocationsFromClassPaths()
|
/art/compiler/optimizing/ |
D | stack_map_stream.cc | 280 auto expected_dex_registers = std::make_shared<dchecked_vector<DexRegisterLocation>>( in CreateDexRegisterMap()
|
/art/dex2oat/ |
D | dex2oat.cc | 2883 dchecked_vector<uintptr_t> oat_data_begins; in CreateImageFile()
|
/art/oatdump/ |
D | oatdump.cc | 1602 dchecked_vector<size_t> indexes_; // Used if stack map native PCs are not ordered.
|