Home | History | Annotate | Download | only in common

Lines Matching full:dot_pos

730         const char* dot_pos = strrchr(filename, '.');
731 if (dot_pos && dot_pos[1] != '\0')
732 return ConstString(dot_pos+1);
744 const char* dot_pos = strrchr(filename, '.');
745 if (dot_pos == NULL)
748 return ConstString(filename, dot_pos-filename);