Home
last modified time | relevance | path

Searched refs:test_data_path (Results 1 – 4 of 4) sorted by relevance

/external/libmojo/base/
Dbase_paths.cc33 FilePath test_data_path; in PathProvider() local
34 if (!PathService::Get(DIR_SOURCE_ROOT, &test_data_path)) in PathProvider()
36 test_data_path = test_data_path.Append(FILE_PATH_LITERAL("base")); in PathProvider()
37 test_data_path = test_data_path.Append(FILE_PATH_LITERAL("test")); in PathProvider()
38 test_data_path = test_data_path.Append(FILE_PATH_LITERAL("data")); in PathProvider()
39 if (!PathExists(test_data_path)) // We don't want to create this. in PathProvider()
41 *result = test_data_path; in PathProvider()
/external/tensorflow/tensorflow/python/debug/examples/
Ddebug_tflearn_iris.py61 test_data_path = os.path.join(data_dir, os.path.basename(IRIS_TEST_DATA_URL))
62 if not os.path.isfile(test_data_path):
63 test_file = open(test_data_path, "wt")
69 return training_data_path, test_data_path
92 training_data_path, test_data_path = maybe_download_data(FLAGS.data_dir)
98 filename=test_data_path, target_dtype=np.int, features_dtype=np.float32)
/external/flatbuffers/tests/
Dtest.cpp86 std::string test_data_path = "tests/"; variable
548 (test_data_path + "monster_test.fbs").c_str(), false, &schemafile), true); in ParseAndGenerateTextTest()
550 (test_data_path + "monsterdata_test.golden").c_str(), false, &jsonfile), in ParseAndGenerateTextTest()
556 flatbuffers::ConCatPathFileName(test_data_path, "include_test"); in ParseAndGenerateTextTest()
558 test_data_path.c_str(), include_test_path.c_str(), nullptr in ParseAndGenerateTextTest()
584 registry.AddIncludeDirectory(test_data_path.c_str()); in ParseAndGenerateTextTest()
588 (test_data_path + "monster_test.fbs").c_str()); in ParseAndGenerateTextTest()
610 (test_data_path + "monster_test.bfbs").c_str(), true, &bfbsfile), in ReflectionTest()
819 (test_data_path + "prototest/test.proto").c_str(), false, &protofile), in ParseProtoTest()
822 (test_data_path + "prototest/test.golden").c_str(), false, &goldenfile), in ParseProtoTest()
[all …]
/external/chromium-trace/catapult/tracing/
Dtracing_project.py107 test_data_path = os.path.join(tracing_root_path, 'test_data') variable in TracingProject