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

  /external/tensorflow/tensorflow/core/platform/
file_system_helper.cc 59 string fixed_prefix = pattern.substr(0, pattern.find_first_of("*?[\\")); local
62 string dir(io::Dirname(fixed_prefix));
63 // If dir is empty then we need to fix up fixed_prefix and eval_pattern to
67 fixed_prefix = io::JoinPath(dir, fixed_prefix);
94 [fs, &current_dir, &children, &fixed_prefix,
97 // In case the child_path doesn't start with the fixed_prefix then
99 if (!str_util::StartsWith(child_path, fixed_prefix)) {
  /external/tensorflow/tensorflow/core/kernels/data/experimental/
matching_files_dataset_op.cc 158 StringPiece fixed_prefix = variable
161 string current_dir(io::Dirname(fixed_prefix));
163 // If current_dir is empty then we need to fix up fixed_prefix and
264 StringPiece fixed_prefix = local
306 auto is_directory_fn = [fs, current_dir, &children, &fixed_prefix,
309 // In case the child_path doesn't start with the fixed_prefix, then
311 if (!str_util::StartsWith(child_path, fixed_prefix)) {

Completed in 772 milliseconds