Lines Matching defs:last_dot
141 char *last_dot;
143 last_dot = strrchr (buf, '.');
144 gdb_assert (last_dot != NULL);
145 *objectp = last_dot + 1;
146 *last_dot = '\0';
147 last_dot = strrchr (buf, '.');
148 if (last_dot != NULL)
149 *packagep = last_dot + 1;
196 const char *last_dot;
262 last_dot = strrchr (mangled_name, '.');
263 if (last_dot == first_dot)
267 if (last_dot[1] == '\0' /* foo. */
268 || last_dot[-1] == '.') /* foo..bar */