Home
last modified time | relevance | path

Searched refs:last_dot (Results 1 – 4 of 4) sorted by relevance

/external/dbus/tools/
Ddbus-send.c354 char *last_dot; in main() local
356 last_dot = strrchr (name, '.'); in main()
357 if (last_dot == NULL) in main()
363 *last_dot = '\0'; in main()
368 last_dot + 1); in main()
373 char *last_dot; in main() local
375 last_dot = strrchr (name, '.'); in main()
376 if (last_dot == NULL) in main()
382 *last_dot = '\0'; in main()
384 message = dbus_message_new_signal (path, name, last_dot + 1); in main()
/external/libchrome/base/files/
Dfile_path.cc122 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path); in ExtensionSeparatorPosition() local
125 if (last_dot == StringType::npos || last_dot == 0U) in ExtensionSeparatorPosition()
126 return last_dot; in ExtensionSeparatorPosition()
129 path.rfind(FilePath::kExtensionSeparator, last_dot - 1); in ExtensionSeparatorPosition()
131 path.find_last_of(FilePath::kSeparators, last_dot - 1, in ExtensionSeparatorPosition()
137 return last_dot; in ExtensionSeparatorPosition()
146 StringType extension(path, last_dot + 1); in ExtensionSeparatorPosition()
149 if ((last_dot - penultimate_dot) <= 5U && in ExtensionSeparatorPosition()
150 (last_dot - penultimate_dot) > 1U) { in ExtensionSeparatorPosition()
156 return last_dot; in ExtensionSeparatorPosition()
/external/dbus/dbus/
Ddbus-marshal-validate.c928 const unsigned char *last_dot; in _dbus_validate_interface() local
943 last_dot = NULL; in _dbus_validate_interface()
966 last_dot = s; in _dbus_validate_interface()
977 if (_DBUS_UNLIKELY (last_dot == NULL)) in _dbus_validate_interface()
1094 const unsigned char *last_dot; in _dbus_validate_bus_name_full() local
1109 last_dot = NULL; in _dbus_validate_bus_name_full()
1156 last_dot = s; in _dbus_validate_bus_name_full()
1167 if (!is_namespace && _DBUS_UNLIKELY (last_dot == NULL)) in _dbus_validate_bus_name_full()
/external/lldb/source/Host/macosx/
DSymbols.cpp495 char *last_dot = strrchr(path, '.'); in LocateDSYMInVincinityOfExecutable() local
496 while (last_dot != NULL && last_dot[0]) in LocateDSYMInVincinityOfExecutable()
498 char *next_slash = strchr(last_dot, '/'); in LocateDSYMInVincinityOfExecutable()
509 *last_dot = '\0'; in LocateDSYMInVincinityOfExecutable()