HomeSort by relevance Sort by last modified time
    Searched defs:data_path (Results 1 - 11 of 11) sorted by null

  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 107 DATA_PATH = ::File.join( PROJECT_PATH, 'java' ).freeze
124 def self.data_path( *args ) singleton method in class:ANTLR3
125 ::File.expand_path( ::File.join( DATA_PATH, *args ) )
147 path = data_path "antlr-full-#{ ANTLR_VERSION_STRING }.jar"
  /system/update_engine/common/
hash_calculator_unittest.cc 114 string data_path; local
116 utils::MakeTempFile("data.XXXXXX", &data_path, nullptr));
117 ScopedPathUnlinker data_path_unlinker(data_path);
118 ASSERT_TRUE(utils::WriteFile(data_path.c_str(), "hi", 2));
123 EXPECT_EQ(2, calc.UpdateFile(data_path, kLengths[i]));
132 EXPECT_EQ(0, calc.UpdateFile(data_path, 0));
133 EXPECT_EQ(1, calc.UpdateFile(data_path, 1));
140 string data_path; local
142 utils::MakeTempFile("data.XXXXXX", &data_path, nullptr));
143 ScopedPathUnlinker data_path_unlinker(data_path);
    [all...]
  /system/core/crash_reporter/
udev_collector_test.cc 96 FilePath data_path = local
101 base::WriteFile(data_path,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
video_source.h 30 const char *const data_path = getenv("LIBVPX_TEST_DATA_PATH"); local
31 if (data_path == NULL) {
41 return data_path;
  /external/libvpx/libvpx/test/
decode_perf_test.cc 155 const std::string data_path = getenv("LIBVPX_TEST_DATA_PATH"); local
156 const std::string path_to_source = data_path + "/" + kNewEncodeOutputFile;
video_source.h 36 const char *const data_path = getenv("LIBVPX_TEST_DATA_PATH"); local
37 if (data_path == NULL) {
47 return data_path;
  /system/update_engine/payload_generator/
ab_generator_unittest.cc 111 string data_path; local
113 "SplitReplaceOrReplaceBzTest_data.XXXXXX", &data_path, nullptr));
114 ScopedPathUnlinker data_path_unlinker(data_path);
115 int data_fd = open(data_path.c_str(), O_RDWR, 000);
118 EXPECT_TRUE(utils::WriteFile(data_path.c_str(), op_blob.data(),
280 string data_path; local
282 "MergeReplaceOrReplaceBzTest_data.XXXXXX", &data_path, nullptr));
283 ScopedPathUnlinker data_path_unlinker(data_path);
284 int data_fd = open(data_path.c_str(), O_RDWR, 000);
287 EXPECT_TRUE(utils::WriteFile(data_path.c_str(), blob_data.data()
    [all...]
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 412 const string& get_data_path() const { return data_path; }
426 string data_path; member in class:cvtest::TS
  /frameworks/native/cmds/installd/
installd.cpp 550 const char* data_path = getenv("ANDROID_DATA"); local
551 if (data_path == nullptr) {
561 return init_globals_from_data_and_root(data_path, root_path);
otapreopt.cpp 604 const char* data_path = getenv("ANDROID_DATA"); local
605 if (data_path == nullptr) {
609 return init_globals_from_data_and_root(data_path, kOTARootDirectory);
commands.cpp 483 auto data_path = create_data_path(uuid); local
485 avail = data_disk_free(data_path);
501 clear_cache_files(data_path, cache, free_size);
504 return data_disk_free(data_path) >= free_size ? 0 : -1;
    [all...]

Completed in 226 milliseconds