Home
last modified time | relevance | path

Searched refs:from_str (Results 1 – 5 of 5) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglsl.c718 const gchar *from_str = NULL, *to_str = NULL; in _mangle_texture_access() local
724 from_str = "texture2D"; in _mangle_texture_access()
726 from_str = "texture2DRect"; in _mangle_texture_access()
728 from_str = "texture2D"; in _mangle_texture_access()
747 regex_find = g_strdup_printf ("%s(?=\\s*\\()", from_str); in _mangle_texture_access()
757 from_str, to_str); in _mangle_texture_access()
768 const gchar *from_str = NULL, *to_str = NULL; in _mangle_sampler_type() local
774 from_str = "sampler2D"; in _mangle_sampler_type()
776 from_str = "sampler2DRect"; in _mangle_sampler_type()
778 from_str = "samplerExternalOES"; in _mangle_sampler_type()
[all …]
/third_party/python/Tools/stringbench/
Dstringbench.py1215 from_str = STR(" ")
1219 s_replace(from_str, to_str)
1236 from_str = STR("\n")
1240 s_replace(from_str, to_str)
1258 from_str = STR("ATC")
1262 seq_replace(from_str, to_str)
1269 from_str = STR("\n")
1273 s_replace(from_str, to_str)
1281 from_str = STR("ee")
1285 s_replace(from_str, to_str)
[all …]
/third_party/python/Tools/c-analyzer/c_parser/
Dinfo.py392 vartype, storage = VarType.from_str(decl)
843 def from_str(cls, text): member in VarType
923 vartype, storage = VarType.from_str(datastr)
927 vartype, storage = VarType.from_str(datastr)
956 def from_str(cls, text): member in Signature
1050 sig, storage = Signature.from_str(sig)
1054 sig, storage = Signature.from_str(sig)
1133 vartype, _ = VarType.from_str(datastr)
1137 vartype, _ = VarType.from_str(datastr)
1169 def from_str(cls, text): member in Member
[all …]
/third_party/libsnd/
Dmake_lite.py170 def string_replace_in_file (filename, from_str, to_str): argument
172 file_text = string.replace (file_text, from_str, to_str)
/third_party/flatbuffers/rust/flexbuffers/src/reader/
Dmod.rs509 if let Ok(f) = u64::from_str(&s) { in as_u64()
536 if let Ok(f) = i64::from_str(&s) { in as_i64()
559 if let Ok(f) = f64::from_str(&s) { in as_f64()