Home
last modified time | relevance | path

Searched refs:complete_path (Results 1 – 3 of 3) sorted by relevance

/external/skia/docs/examples/
DChromeMDRefreshTabs.cpp67 SkPath complete_path; in GetInteriorPath() local
68 Op(left_path, right_path, SkPathOp::kIntersect_SkPathOp, &complete_path); in GetInteriorPath()
69 return complete_path; in GetInteriorPath()
DChromeMDRefreshTab.cpp134 SkPath complete_path; in GetInteriorPath() local
135 Op(left_path, right_path, SkPathOp::kIntersect_SkPathOp, &complete_path); in GetInteriorPath()
136 return complete_path; in GetInteriorPath()
/external/rust/android-crates-io/crates/clap_complete/src/dynamic/
Dcompleter.rs190 values.extend(complete_path(value_os, current_dir, |_| true)); in complete_arg_value()
193 values.extend(complete_path(value_os, current_dir, |p| p.is_file())); in complete_arg_value()
196 values.extend(complete_path(value_os, current_dir, |p| p.is_dir())); in complete_arg_value()
200 values.extend(complete_path(value_os, current_dir, |p| p.is_executable())); in complete_arg_value()
213 values.extend(complete_path(value_os, current_dir, |_| true)); in complete_arg_value()
222 fn complete_path( in complete_path() function