Searched refs:dot_pos (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/base/test/launcher/
H A Dtest_result.cc41 size_t dot_pos = full_name.find('.'); local
42 CHECK_NE(dot_pos, std::string::npos);
43 return full_name.substr(dot_pos + 1);
47 size_t dot_pos = full_name.find('.'); local
48 CHECK_NE(dot_pos, std::string::npos);
49 return full_name.substr(0, dot_pos);
/external/chromium_org/third_party/webrtc/base/
H A Dversionparsing.cc22 size_t dot_pos = version_str.find('.', pos); local
24 if (dot_pos == std::string::npos) {
28 n = dot_pos - pos;
35 if (dot_pos == std::string::npos) {
40 pos = dot_pos + 1;
/external/chromium_org/content/public/test/
H A Dtest_launcher.cc195 size_t dot_pos = full_name.find('.'); local
196 CHECK_NE(dot_pos, std::string::npos);
197 std::string test_case_name = full_name.substr(0, dot_pos);
198 std::string test_name = full_name.substr(dot_pos + 1);
300 size_t dot_pos = full_name.find('.'); local
301 CHECK_NE(dot_pos, std::string::npos);
302 std::string test_case_name = full_name.substr(0, dot_pos);
303 std::string test_name = full_name.substr(dot_pos + 1);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A DCodeGeneratorFrontend.py133 dot_pos = json_ref.find(".")
134 if dot_pos == -1:
138 domain_name = json_ref[:dot_pos]
139 type_name = json_ref[dot_pos + 1:]
/external/lldb/source/Host/common/
H A DFileSpec.cpp730 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/chromium_org/components/domain_reliability/
H A Dmonitor.cc309 size_t dot_pos = host.find('.');
310 if (dot_pos == std::string::npos)
315 std::string parent_with_asterisk = "*." + host.substr(dot_pos + 1);
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_backend.py233 dot_pos = mname.find('.')
234 domain_name = mname[:dot_pos]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc1336 string::size_type dot_pos = prefix.find_last_of('.'); local
1337 if (dot_pos == string::npos) {
1340 prefix = prefix.substr(0, dot_pos);
2686 string::size_type dot_pos = scope_to_try.find_last_of('.'); local
2687 if (dot_pos == string::npos) {
2690 scope_to_try.erase(dot_pos);
2871 string::size_type dot_pos = full_name.find_last_of('.'); local
2872 if (dot_pos == string::npos) {
2877 "\"" + full_name.substr(dot_pos + 1) +
2879 full_name.substr(0, dot_pos)
2895 string::size_type dot_pos = name.find_last_of('.'); local
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc2351 string::size_type dot_pos = scope_to_try.find_last_of('.'); local
2352 if (dot_pos == string::npos) {
2355 scope_to_try.erase(dot_pos);
2534 string::size_type dot_pos = full_name.find_last_of('.'); local
2535 if (dot_pos == string::npos) {
2540 "\"" + full_name.substr(dot_pos + 1) +
2542 full_name.substr(0, dot_pos) + "\".");
2558 string::size_type dot_pos = name.find_last_of('.'); local
2559 if (dot_pos == string::npos) {
2564 string* parent_name = tables_->AllocateString(name.substr(0, dot_pos));
[all...]
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp812 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...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInspector.py1471 dot_pos = json_ref.find(".")
1472 if dot_pos == -1:
1476 domain_name = json_ref[:dot_pos]
1477 type_name = json_ref[dot_pos + 1:]

Completed in 3104 milliseconds