HomeSort by relevance Sort by last modified time
    Searched refs:dot_index (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/ui/omnibox/
location_bar_util.cc 30 const size_t dot_index = description.find(L'.'); local
32 size_t chop_index = std::min(dot_index, ws_index);
  /external/chromium_org/chrome/browser/ui/omnibox/
location_bar_util.cc 21 const size_t dot_index = description.find('.'); local
23 size_t chop_index = std::min(dot_index, ws_index);
  /external/chromium_org/chrome_frame/test/net/
fake_external_tab.cc 367 size_t dot_index = test_name.find('.'); local
368 if (dot_index != base::StringPiece::npos &&
369 dot_index + 1 < test_name.size()) {
370 test_name.substr(0, dot_index).AppendToString(&filter);
372 test_name.substr(dot_index + 1).AppendToString(&filter);
    [all...]
  /art/runtime/
oat_file.cc 37 size_t dot_index = location.size() - 3 - 1; // 3=dex or zip or apk local
38 CHECK_EQ('.', location[dot_index]) << location;
40 odex_location.resize(dot_index + 1);

Completed in 45 milliseconds