Searched defs:std (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dcommon_runtime_test.h36 typedef std::vector<std::pair<std::string, const void*>> RuntimeOptions;
48 const std::string& GetFilename() const {
61 std::string filename_;
62 std::unique_ptr<File> file_;
71 static void SetUpAndroidData(std::string& android_data);
73 static void TearDownAndroidData(const std::string& android_data, bool fail_on_error);
95 std::string GetLibCoreDexFileName();
98 std
166 namespace std { namespace
[all...]
H A Dcommon_runtime_test.cc110 std::string root;
140 void CommonRuntimeTest::SetUpAndroidData(std::string& android_data) {
159 void CommonRuntimeTest::TearDownAndroidData(const std::string& android_data, bool fail_on_error) {
169 std::vector<const DexFile*> dex_files;
170 std::string error_msg;
190 std::string error_msg;
194 std::string min_heap_string(StringPrintf("-Xms%zdm", gc::Heap::kDefaultInitialSize / MB));
195 std::string max_heap_string(StringPrintf("-Xmx%zdm", gc::Heap::kDefaultMaximumSize / MB));
200 options.push_back(std::make_pair("bootclasspath", &boot_class_path_));
201 options.push_back(std
380 namespace std { namespace
[all...]
/art/compiler/utils/
H A Darray_ref.h32 * object is in use. The external array may be a std::vector<>-backed storage
34 * i.e. the std::vector<> must not be resized for example.
37 * is essentially the same as std::vector<>. Since we don't want to throw
53 typedef std::reverse_iterator<iterator> reverse_iterator;
54 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
71 typename std::enable_if<std::is_same<T, const U>::value, tag>::type t = tag())
81 typename std::enable_if<std::is_same<T, const U>::value, tag>::type t = tag())
85 explicit ArrayRef(std
80 ArrayRef(U* array, size_t size, typename std::enable_if<std::is_same<T, const U>::value, tag>::type t = tag()) argument
90 ArrayRef(const std::vector<U>& v, typename std::enable_if<std::is_same<T, const U>::value, tag>::tag t = tag()) argument
[all...]

Completed in 246 milliseconds