Searched defs:last_colon (Results 1 - 2 of 2) sorted by last modified time

/external/lldb/source/Target/
H A DCPPLanguageRuntime.cpp198 const char *last_colon = strrchr (name, ':'); local
200 if (last_colon == NULL)
207 if (last_colon == name)
209 else if (last_colon[-1] != ':')
214 base_name_start = last_colon + 1;
/external/clang/tools/c-index-test/
H A Dc-index-test.c1680 const char *last_colon = strrchr(input, ':'); local
1685 if (!last_colon || last_colon == input) {
1698 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
1709 prev_colon = last_colon - 1;
1718 last_colon = prev_colon;
1730 *filename = (char*)malloc(last_colon - input + 1);
1731 memcpy(*filename, input, last_colon - input);
1732 (*filename)[last_colon - input] = 0;

Completed in 116 milliseconds