/external/chromium_org/base/test/launcher/ |
D | test_result.cc | 41 size_t dot_pos = full_name.find('.'); in GetTestName() local 42 CHECK_NE(dot_pos, std::string::npos); in GetTestName() 43 return full_name.substr(dot_pos + 1); in GetTestName() 47 size_t dot_pos = full_name.find('.'); in GetTestCaseName() local 48 CHECK_NE(dot_pos, std::string::npos); in GetTestCaseName() 49 return full_name.substr(0, dot_pos); in GetTestCaseName()
|
/external/chromium_org/third_party/webrtc/base/ |
D | versionparsing.cc | 22 size_t dot_pos = version_str.find('.', pos); in ParseVersionString() local 24 if (dot_pos == std::string::npos) { in ParseVersionString() 28 n = dot_pos - pos; in ParseVersionString() 35 if (dot_pos == std::string::npos) { in ParseVersionString() 40 pos = dot_pos + 1; in ParseVersionString()
|
/external/chromium_org/content/public/test/ |
D | test_launcher.cc | 195 size_t dot_pos = full_name.find('.'); in GetPreTestName() local 196 CHECK_NE(dot_pos, std::string::npos); in GetPreTestName() 197 std::string test_case_name = full_name.substr(0, dot_pos); in GetPreTestName() 198 std::string test_name = full_name.substr(dot_pos + 1); in GetPreTestName() 300 size_t dot_pos = full_name.find('.'); in RetryTests() local 301 CHECK_NE(dot_pos, std::string::npos); in RetryTests() 302 std::string test_case_name = full_name.substr(0, dot_pos); in RetryTests() 303 std::string test_name = full_name.substr(dot_pos + 1); in RetryTests()
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | CodeGeneratorFrontend.py | 133 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/ |
D | FileSpec.cpp | 730 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/chromium_org/components/domain_reliability/ |
D | monitor.cc | 309 size_t dot_pos = host.find('.'); in GetContextForHost() local 310 if (dot_pos == std::string::npos) in GetContextForHost() 315 std::string parent_with_asterisk = "*." + host.substr(dot_pos + 1); in GetContextForHost()
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
D | inspector_backend.py | 233 dot_pos = mname.find('.') 234 domain_name = mname[:dot_pos]
|
/external/lldb/scripts/Python/ |
D | python-wrapper.swig | 62 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/chromium_org/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 1336 string::size_type dot_pos = prefix.find_last_of('.'); in IsSubSymbolOfBuiltType() local 1337 if (dot_pos == string::npos) { in IsSubSymbolOfBuiltType() 1340 prefix = prefix.substr(0, dot_pos); in IsSubSymbolOfBuiltType() 2686 string::size_type dot_pos = scope_to_try.find_last_of('.'); in LookupSymbolNoPlaceholder() local 2687 if (dot_pos == string::npos) { in LookupSymbolNoPlaceholder() 2690 scope_to_try.erase(dot_pos); in LookupSymbolNoPlaceholder() 2871 string::size_type dot_pos = full_name.find_last_of('.'); in AddSymbol() local 2872 if (dot_pos == string::npos) { in AddSymbol() 2877 "\"" + full_name.substr(dot_pos + 1) + in AddSymbol() 2879 full_name.substr(0, dot_pos) + "\"."); in AddSymbol() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 2351 string::size_type dot_pos = scope_to_try.find_last_of('.'); in LookupSymbolNoPlaceholder() local 2352 if (dot_pos == string::npos) { in LookupSymbolNoPlaceholder() 2355 scope_to_try.erase(dot_pos); in LookupSymbolNoPlaceholder() 2534 string::size_type dot_pos = full_name.find_last_of('.'); in AddSymbol() local 2535 if (dot_pos == string::npos) { in AddSymbol() 2540 "\"" + full_name.substr(dot_pos + 1) + in AddSymbol() 2542 full_name.substr(0, dot_pos) + "\"."); in AddSymbol() 2558 string::size_type dot_pos = name.find_last_of('.'); in AddPackage() local 2559 if (dot_pos == string::npos) { in AddPackage() 2564 string* parent_name = tables_->AllocateString(name.substr(0, dot_pos)); in AddPackage() [all …]
|
/external/opencv/cxcore/src/ |
D | cxpersistence.cpp | 812 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()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | CodeGeneratorInspector.py | 1471 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:]
|