Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dgenerate_entry_points.py686 def strip_suffix(name): function
708 return cmd_packed_gl_enums.get(strip_suffix(cmd_name), {})
731 name_lower_no_suffix = strip_suffix(cmd_name[2:3].lower() + cmd_name[3:])
862 name_lower_no_suffix = strip_suffix(name_lower_no_suffix)
959 name_no_suffix = strip_suffix(cmd_name)
1625 all_commands_no_suffix.append(strip_suffix(name))
/third_party/rust/crates/os_str_bytes/src/
Draw_str.rs689 pub fn strip_suffix<P>(&self, pat: P) -> Option<&Self> in strip_suffix() method
696 self.0.strip_suffix(pat).map(Self::from_inner) in strip_suffix()
791 self.trim_matches_raw_with(pat, <[_]>::strip_suffix) in trim_end_matches_raw()
/third_party/skia/third_party/externals/angle2/scripts/
Dgenerate_entry_points.py1452 def strip_suffix(api, name): function
1478 result = cmd_packed_gl_enums.get(strip_suffix(api, cmd_name), {})
1533 name_lower_no_suffix = strip_suffix(api, cmd_name[2:3].lower() + cmd_name[3:])
1711 name_lower_no_suffix = strip_suffix(api, name_lower_no_suffix)
1907 name_no_suffix = strip_suffix(api, cmd_name)
2768 all_commands_no_suffix.append(strip_suffix(apis.GLES, name))
/third_party/rust/crates/bindgen/bindgen/
Dlib.rs2472 rust_target.strip_suffix("-espidf").unwrap().to_owned(); in rust_to_clang_target()