Home
last modified time | relevance | path

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

/art/libartbase/base/
Ddchecked_vector.h37 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 …]
/art/dex2oat/linker/
Doat_writer.h164 dchecked_vector<std::string> GetSourceLocations() const;
378 dchecked_vector<debug::MethodDebugInfo> method_info_;
455 dchecked_vector<OatDexFile> oat_dex_files_;
456 dchecked_vector<OatClassHeader> oat_class_headers_;
457 dchecked_vector<OatClass> oat_classes_;
519 dchecked_vector<uintptr_t> absolute_patch_locations_;
Doat_writer.cc232 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods,
244 dchecked_vector<CompiledMethod*> compiled_methods_;
250 dchecked_vector<uint32_t> oat_method_offsets_offsets_from_oat_class_;
267 dchecked_vector<OatMethodOffsets> method_offsets_;
268 dchecked_vector<OatQuickMethodHeader> method_headers_;
340 dchecked_vector<uint32_t> class_offsets_;
630 dchecked_vector<std::string> OatWriter::GetSourceLocations() const { in GetSourceLocations()
631 dchecked_vector<std::string> locations; in GetSourceLocations()
978 dchecked_vector<CompiledMethod*> compiled_methods_;
4294 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass()
Dimage_writer.h601 dchecked_vector<ImageInfo> image_infos_;
/art/compiler/utils/
Datomic_dex_ref_map.h69 using ElementArray = dchecked_vector<Atomic<Value>>;
/art/runtime/
Dclass_loader_context.h62 bool RemoveLocationsFromClassPaths(const dchecked_vector<std::string>& compilation_sources);
Dclass_loader_context_test.cc539 dchecked_vector<std::string> classpath_dex; in TEST_F()
541 dchecked_vector<std::string> compilation_sources; in TEST_F()
Dclass_loader_context.cc271 const dchecked_vector<std::string>& locations) { in RemoveLocationsFromClassPaths()
/art/test/622-simplifyifs-exception-edges/smali/
DTest.smali66 # this caused out-of-range access triggering a DCHECK() in dchecked_vector<>.
/art/runtime/base/
Darena_containers.h56 using ArenaVector = dchecked_vector<T, ArenaAllocatorAdapter<T>>;
Dscoped_arena_containers.h52 using ScopedArenaVector = dchecked_vector<T, ScopedArenaAllocatorAdapter<T>>;
Darena_allocator.h142 dchecked_vector<size_t> alloc_stats_; // Bytes used by various allocation kinds.
/art/dex2oat/
Ddex2oat.cc2700 dchecked_vector<uintptr_t> oat_data_begins; in CreateImageFile()
/art/oatdump/
Doatdump.cc1798 dchecked_vector<size_t> indexes_; // Used if stack map native PCs are not ordered.