Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/ui/gtk/
Dabout_chrome_dialog.cc186 size_t link1_end = license.find(kEndLink, link1); in ShowAboutDialogForProfile() local
187 DCHECK(link1_end != std::string::npos); in ShowAboutDialogForProfile()
188 size_t link2 = license.find(kBeginLink, link1_end); in ShowAboutDialogForProfile()
191 DCHECK(link1_end != std::string::npos); in ShowAboutDialogForProfile()
196 license.substr(link1_end + strlen(kEndLinkOss), in ShowAboutDialogForProfile()
197 link2 - link1_end - strlen(kEndLinkOss)).c_str()); in ShowAboutDialogForProfile()
205 link1_end - link1 - strlen(kBeginLinkOss)); in ShowAboutDialogForProfile()
/external/chromium/chrome/browser/ui/webui/options/
Dabout_page_handler.cc166 size_t link1_end = text.find(kEndLink, link1); in GetLocalizedValues() local
167 DCHECK(link1_end != std::string::npos); in GetLocalizedValues()
168 size_t link2 = text.find(kBeginLink, link1_end); in GetLocalizedValues()
175 StringSubRange(text, link1_end + strlen(kEndLinkOss), link2)); in GetLocalizedValues()
/external/chromium/chrome/browser/ui/views/
Dabout_chrome_view.cc253 size_t link1_end = text.find(kEndLink, link1); in Init() local
254 DCHECK(link1_end != std::wstring::npos); in Init()
255 size_t link2 = text.find(kBeginLink, link1_end); in Init()
258 DCHECK(link1_end != std::wstring::npos); in Init()
261 main_label_chunk2_ = StringSubRange(text, link1_end + wcslen(kEndLinkOss), in Init()