Searched refs:dot_pos (Results 1 - 4 of 4) sorted by relevance
/external/lldb/source/Host/common/ |
H A D | FileSpec.cpp | 730 const char* dot_pos = strrchr(filename, '.'); local 731 if (dot_pos && dot_pos[1] != '\0') 732 return ConstString(dot_pos+1); 744 const char* dot_pos = strrchr(filename, '.'); local 745 if (dot_pos == NULL) 748 return ConstString(filename, dot_pos-filename);
|
/external/google-breakpad/src/common/windows/ |
H A D | pdb_source_line_writer.cc | 907 size_t dot_pos = file.find_last_of(L"."); local 908 if (dot_pos != wstring::npos) { 909 file.replace(dot_pos + 1, wstring::npos, extensions[i]);
|
/external/protobuf/src/google/protobuf/ |
H A D | descriptor.cc | 1428 string::size_type dot_pos = prefix.find_last_of('.'); local 1429 if (dot_pos == string::npos) { 1432 prefix = prefix.substr(0, dot_pos); 2914 string::size_type dot_pos = scope_to_try.find_last_of('.'); local 2915 if (dot_pos == string::npos) { 2918 scope_to_try.erase(dot_pos); 3105 string::size_type dot_pos = full_name.find_last_of('.'); local 3106 if (dot_pos == string::npos) { 3111 "\"" + full_name.substr(dot_pos + 1) + 3113 full_name.substr(0, dot_pos) 3129 string::size_type dot_pos = name.find_last_of('.'); local [all...] |
/external/opencv/cxcore/src/ |
H A D | cxpersistence.cpp | 812 char* dot_pos = *endptr; local 813 *dot_pos = ','; 815 *dot_pos = '.'; 816 if( *endptr > dot_pos ) 819 *endptr = dot_pos; 2714 char* dot_pos = strrchr( fs->filename, '.' ); local 2715 fs->is_xml = dot_pos && (strcmp( dot_pos, ".xml" ) == 0 || 2716 strcmp( dot_pos, ".XML" ) == 0 || strcmp( dot_pos, " [all...] |
Completed in 1395 milliseconds