Searched defs:last_dot (Results 1 - 5 of 5) sorted by relevance

/external/dbus/dbus/
H A Ddbus-marshal-validate.c928 const unsigned char *last_dot; local
943 last_dot = NULL;
966 last_dot = s;
977 if (_DBUS_UNLIKELY (last_dot == NULL))
1106 const unsigned char *last_dot; local
1121 last_dot = NULL;
1168 last_dot = s;
1179 if (_DBUS_UNLIKELY (last_dot == NULL))
/external/dbus/tools/
H A Ddbus-send.c356 char *last_dot; local
358 last_dot = strrchr (name, '.');
359 if (last_dot == NULL)
365 *last_dot = '\0';
370 last_dot + 1);
375 char *last_dot; local
377 last_dot = strrchr (name, '.');
378 if (last_dot == NULL)
384 *last_dot = '\0';
386 message = dbus_message_new_signal (path, name, last_dot
[all...]
/external/chromium/base/
H A Dfile_util.cc52 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);
H A Dfile_path.cc126 const StringType::size_type last_dot = local
130 if (last_dot == StringType::npos || last_dot == 0U)
131 return last_dot;
135 StringType extension(path, last_dot + 1);
142 return last_dot;
147 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
149 path.find_last_of(FilePath::kSeparators, last_dot - 1,
154 last_dot - penultimate_dot <= 5U &&
155 last_dot
[all...]
/external/bluetooth/glib/glib/
H A Dgutils.c374 const gchar *last_dot = strrchr (program, '.'); local
376 if (last_dot == NULL ||
377 strchr (last_dot, '\\') != NULL ||
378 strchr (last_dot, '/') != NULL)

Completed in 172 milliseconds