Home
last modified time | relevance | path

Searched refs:binary_file (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/tools/graph_transforms/
Dfile_utils_test.cc48 const string binary_file = in TestLoadTextOrBinaryGraphFile() local
50 TF_ASSERT_OK(WriteBinaryProto(Env::Default(), binary_file, graph_def)); in TestLoadTextOrBinaryGraphFile()
63 TF_EXPECT_OK(LoadTextOrBinaryGraphFile(binary_file, &binary_graph_def)); in TestLoadTextOrBinaryGraphFile()
/external/python/cpython3/Lib/
Dlzma.py301 binary_file = LZMAFile(filename, lz_mode, format=format, check=check,
305 return io.TextIOWrapper(binary_file, encoding, errors, newline)
307 return binary_file
Dbz2.py311 binary_file = BZ2File(filename, bz_mode, compresslevel=compresslevel)
314 return io.TextIOWrapper(binary_file, encoding, errors, newline)
316 return binary_file
Dgzip.py58 binary_file = GzipFile(filename, gz_mode, compresslevel)
60 binary_file = GzipFile(None, gz_mode, compresslevel, filename)
65 return io.TextIOWrapper(binary_file, encoding, errors, newline)
67 return binary_file
/external/llvm-project/llvm/utils/llvm-locstats/
Dllvm-locstats.py333 binary_file = opts.file_names[0]
334 locstats = parse_locstats(opts, binary_file)
/external/angle/doc/
DDebuggingTips.md83 @@ -395,6 +395,8 @@ def generate_setup_script(debugger_path, sysroot, linker_search_dir, binary_file
/external/libchrome/base/files/
Dfile_util_unittest.cc2239 FilePath binary_file = in TEST_F() local
2257 EXPECT_TRUE(ContentsEqual(binary_file, binary_file_same)); in TEST_F()
2258 EXPECT_FALSE(ContentsEqual(binary_file, binary_file_diff)); in TEST_F()