Home
last modified time | relevance | path

Searched refs:namespace_suffix (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglfeature.c129 const char *namespace, *namespace_suffix; in _gst_gl_feature_check_for_extension() local
141 if ((namespace_suffix = strchr (namespace, ':'))) { in _gst_gl_feature_check_for_extension()
142 namespace_len = namespace_suffix - namespace; in _gst_gl_feature_check_for_extension()
143 namespace_suffix++; in _gst_gl_feature_check_for_extension()
146 namespace_suffix = namespace; in _gst_gl_feature_check_for_extension()
168 *suffix = namespace_suffix; in _gst_gl_feature_check_for_extension()
/third_party/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_helpers.cc405 string namespace_suffix = ns; in GetOutputFile() local
416 namespace_suffix = ns.substr(base_namespace.length()); in GetOutputFile()
417 if (namespace_suffix.find(".") == 0) { in GetOutputFile()
418 namespace_suffix = namespace_suffix.substr(1); in GetOutputFile()
422 string namespace_dir = StringReplace(namespace_suffix, ".", "/", true); in GetOutputFile()