Home
last modified time | relevance | path

Searched refs:vec (Results 1 – 2 of 2) sorted by relevance

/art/runtime/native/
Ddalvik_system_DexFile.cc89 std::vector<std::unique_ptr<const DexFile>>& vec) { in ConvertDexFilesToJavaArray() argument
91 jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size())); in ConvertDexFilesToJavaArray()
103 for (size_t i = 0; i < vec.size(); ++i) { in ConvertDexFilesToJavaArray()
104 long_data[kDexFileIndexStart + i] = reinterpret_cast<uintptr_t>(vec[i].get()); in ConvertDexFilesToJavaArray()
113 for (auto& dex_file : vec) { in ConvertDexFilesToJavaArray()
/art/compiler/optimizing/
Dload_store_analysis_test.cc82 size_t vec = HeapLocation::kScalar; in TEST_F() local
84 size_t loc1 = heap_location_collector.FindHeapLocationIndex(ref, field, c1, vec, class_def); in TEST_F()
85 size_t loc2 = heap_location_collector.FindHeapLocationIndex(ref, field, c2, vec, class_def); in TEST_F()
86 size_t loc3 = heap_location_collector.FindHeapLocationIndex(ref, field, index, vec, class_def); in TEST_F()