Home
last modified time | relevance | path

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

/external/bluetooth/glib/glib/
Dgutils.c2910 const gchar *dot_pos; in explode_locale() local
2915 dot_pos = strchr (uscore_pos ? uscore_pos : locale, '.'); in explode_locale()
2916 at_pos = strchr (dot_pos ? dot_pos : (uscore_pos ? uscore_pos : locale), '@'); in explode_locale()
2926 if (dot_pos) in explode_locale()
2929 *codeset = g_strndup (dot_pos, at_pos - dot_pos); in explode_locale()
2932 dot_pos = at_pos; in explode_locale()
2937 *territory = g_strndup (uscore_pos, dot_pos - uscore_pos); in explode_locale()
2940 uscore_pos = dot_pos; in explode_locale()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc2351 string::size_type dot_pos = scope_to_try.find_last_of('.'); in LookupSymbolNoPlaceholder() local
2352 if (dot_pos == string::npos) { in LookupSymbolNoPlaceholder()
2355 scope_to_try.erase(dot_pos); in LookupSymbolNoPlaceholder()
2534 string::size_type dot_pos = full_name.find_last_of('.'); in AddSymbol() local
2535 if (dot_pos == string::npos) { in AddSymbol()
2540 "\"" + full_name.substr(dot_pos + 1) + in AddSymbol()
2542 full_name.substr(0, dot_pos) + "\"."); in AddSymbol()
2558 string::size_type dot_pos = name.find_last_of('.'); in AddPackage() local
2559 if (dot_pos == string::npos) { in AddPackage()
2564 string* parent_name = tables_->AllocateString(name.substr(0, dot_pos)); in AddPackage()
[all …]