Home
last modified time | relevance | path

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

/external/chromium_org/webkit/common/database/
Ddatabase_identifier.cc62 size_t first_underscore = identifier.find_first_of('_'); in Parse() local
63 if (first_underscore == std::string::npos || first_underscore == 0) in Parse()
68 last_underscore == first_underscore || in Parse()
72 std::string scheme(identifier.data(), first_underscore); in Parse()
86 std::string hostname(identifier.data() + first_underscore + 1, in Parse()
87 last_underscore - first_underscore - 1); in Parse()