Home
last modified time | relevance | path

Searched refs:dot_pos (Results 1 – 5 of 5) sorted by relevance

/external/lldb/source/Host/common/
DFileSpec.cpp730 const char* dot_pos = strrchr(filename, '.'); in GetFileNameExtension() local
731 if (dot_pos && dot_pos[1] != '\0') in GetFileNameExtension()
732 return ConstString(dot_pos+1); in GetFileNameExtension()
744 const char* dot_pos = strrchr(filename, '.'); in GetFileNameStrippingExtension() local
745 if (dot_pos == NULL) in GetFileNameStrippingExtension()
748 return ConstString(filename, dot_pos-filename); in GetFileNameStrippingExtension()
/external/lldb/scripts/Python/
Dpython-wrapper.swig62 const char* dot_pos = ::strchr(name, '.');
68 if (!dot_pos)
89 size_t len = dot_pos - name;
94 name = dot_pos+1;
95 …return ResolvePythonName(dot_pos+1,pmodule); // tail recursion.. should be optimized by the compil…
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.cc907 size_t dot_pos = file.find_last_of(L"."); in FindPEFile() local
908 if (dot_pos != wstring::npos) { in FindPEFile()
909 file.replace(dot_pos + 1, wstring::npos, extensions[i]); in FindPEFile()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc1428 string::size_type dot_pos = prefix.find_last_of('.'); in IsSubSymbolOfBuiltType() local
1429 if (dot_pos == string::npos) { in IsSubSymbolOfBuiltType()
1432 prefix = prefix.substr(0, dot_pos); in IsSubSymbolOfBuiltType()
2914 string::size_type dot_pos = scope_to_try.find_last_of('.'); in LookupSymbolNoPlaceholder() local
2915 if (dot_pos == string::npos) { in LookupSymbolNoPlaceholder()
2918 scope_to_try.erase(dot_pos); in LookupSymbolNoPlaceholder()
3105 string::size_type dot_pos = full_name.find_last_of('.'); in AddSymbol() local
3106 if (dot_pos == string::npos) { in AddSymbol()
3111 "\"" + full_name.substr(dot_pos + 1) + in AddSymbol()
3113 full_name.substr(0, dot_pos) + "\"."); in AddSymbol()
[all …]
/external/opencv/cxcore/src/
Dcxpersistence.cpp812 char* dot_pos = *endptr; in icv_strtod() local
813 *dot_pos = ','; in icv_strtod()
815 *dot_pos = '.'; in icv_strtod()
816 if( *endptr > dot_pos ) in icv_strtod()
819 *endptr = dot_pos; in icv_strtod()
2714 char* dot_pos = strrchr( fs->filename, '.' ); in cvOpenFileStorage() local
2715 fs->is_xml = dot_pos && (strcmp( dot_pos, ".xml" ) == 0 || in cvOpenFileStorage()
2716 strcmp( dot_pos, ".XML" ) == 0 || strcmp( dot_pos, ".Xml" ) == 0); in cvOpenFileStorage()