HomeSort by relevance Sort by last modified time
    Searched refs:last_dot (Results 1 - 5 of 5) sorted by null

  /external/dbus/tools/
dbus-send.c 302 char *last_dot; local
304 last_dot = strrchr (name, '.');
305 if (last_dot == NULL)
311 *last_dot = '\0';
316 last_dot + 1);
321 char *last_dot; local
323 last_dot = strrchr (name, '.');
324 if (last_dot == NULL)
330 *last_dot = '\0';
332 message = dbus_message_new_signal (path, name, last_dot + 1)
    [all...]
  /external/chromium/base/
file_util.cc 52 const FilePath::StringType::size_type last_dot = local
54 return FilePath::StringType(last_dot == FilePath::StringType::npos ?
56 file_name, last_dot+1);
63 const FilePath::StringType::size_type last_dot = local
68 if (last_dot == FilePath::StringType::npos ||
69 (last_separator != std::wstring::npos && last_dot < last_separator)) {
76 value.insert(last_dot, suffix);
92 const FilePath::StringType::size_type last_dot = local
98 if ((last_dot > last_separator ||
100 last_dot != FilePath::StringType::npos
    [all...]
file_path.cc 295 const StringType::size_type last_dot = base.rfind(kExtensionSeparator); local
296 if (last_dot == StringType::npos)
298 return StringType(base, last_dot);
309 const StringType::size_type last_dot = path_.rfind(kExtensionSeparator); local
310 return FilePath(path_.substr(0, last_dot));
    [all...]
  /external/dbus/dbus/
dbus-marshal-validate.c 783 const unsigned char *last_dot; local
798 last_dot = NULL;
821 last_dot = s;
832 if (_DBUS_UNLIKELY (last_dot == NULL))
961 const unsigned char *last_dot; local
976 last_dot = NULL;
1023 last_dot = s;
1034 if (_DBUS_UNLIKELY (last_dot == NULL))
  /external/bluetooth/glib/glib/
gutils.c 374 const gchar *last_dot = strrchr (program, '.'); local
376 if (last_dot == NULL ||
377 strchr (last_dot, '\\') != NULL ||
378 strchr (last_dot, '/') != NULL)
    [all...]

Completed in 373 milliseconds