HomeSort by relevance Sort by last modified time
    Searched defs:title (Results 1 - 25 of 909) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/
content_script.js 8 "title": document.title,
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
content_script.js 6 "title": document.title,
  /external/chromium_org/chrome/browser/chromeos/file_manager/
select_file_dialog_util.cc 15 base::string16 title; local
18 // Full page file manager doesn't need a title.
22 title = l10n_util::GetStringUTF16(
27 title = l10n_util::GetStringUTF16(
32 title = l10n_util::GetStringUTF16(
37 title = l10n_util::GetStringUTF16(
42 title = l10n_util::GetStringUTF16(
50 return title;
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/
config.js 7 title: 'Chrome Endure Tests',
  /device/asus/deb/dumpstate/
dumpstate.c 23 char path[64], title[32]; local
25 sprintf(title, "KS BRIDGE LOG#%d", i);
26 dump_file(title, path);
  /device/asus/flo/dumpstate/
dumpstate.c 23 char path[64], title[32]; local
25 sprintf(title, "KS BRIDGE LOG#%d", i);
26 dump_file(title, path);
  /external/chromium/chrome/browser/history/
multipart_uitest.cc 35 std::wstring title; local
36 EXPECT_TRUE(tab_proxy->GetTabTitle(&title));
37 EXPECT_EQ(L"page 9", title);
  /external/chromium_org/chrome/browser/extensions/api/i18n/
i18n_apitest.cc 49 base::string16 title; local
50 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
51 EXPECT_EQ(std::string("FIRSTMESSAGE"), UTF16ToUTF8(title));
66 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
67 EXPECT_EQ(std::string("SECONDMESSAGE"), UTF16ToUTF8(title));
  /external/chromium/chrome/browser/ui/webui/options/
options_ui_uitest.cc 29 std::wstring title; local
30 ASSERT_TRUE(tab->GetTabTitle(&title));
32 // The only guarantee we can make about the title of a settings tab is that
34 ASSERT_FALSE(WideToUTF16Hack(title).find(expected_title) == string16::npos);
  /external/chromium_org/content/common/
set_process_title.cc 40 std::string title; local
49 // use the path it points at for our process title. Note that this is only for
55 title = target.value();
59 if (EndsWith(title, kDeletedSuffix, true))
60 title.resize(title.size() - kDeletedSuffix.size());
66 prctl(PR_SET_NAME, base::FilePath(title).BaseName().value().c_str());
73 if (!title.empty())
74 title += " ";
75 title += command_line->argv()[i]
    [all...]
  /external/chromium_org/content/test/
content_browser_test_test.cc 37 base::string16 title = title_watcher.WaitAndGetTitle(); local
38 EXPECT_EQ(expected_title, title);
  /external/linux-tools-perf/util/ui/
setup.c 41 char title[] = "Fatal Error", ok[] = "Ok"; local
42 newtWinMessage(title, ok, ui_helpline__last_msg);
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.cc 12 const string16& title)
15 title_(title) {
21 const string16& title) {
24 return new ProtocolHandler(lower_protocol, url, title);
30 string16 title; local
33 value->GetString("title", &title);
34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title);
48 d->Set("title", Value::CreateStringValue(title_));
protocol_handler.h 14 // A single tuple of (protocol, url, title) that indicates how URLs of the
21 const string16& title);
33 string16 title() const { return title_; } function in class:ProtocolHandler
40 const string16& title);
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_unittest.cc 63 std::string title; local
64 digg->GetString(keys::kTitleKey, &title);
65 ASSERT_EQ("Digg", title);
78 std::string title; local
79 inner_folder->GetString(keys::kTitleKey, &title);
80 ASSERT_EQ("inner folder 1", title);
  /external/chromium/chrome/browser/ui/app_modal_dialogs/
app_modal_dialog.h 23 AppModalDialog(TabContents* tab_contents, const std::wstring& title);
39 // Dialog window title.
40 std::wstring title() const { return title_; } function in class:AppModalDialog
message_box_handler.cc 71 std::wstring title = GetTitle(profile, is_alert, frame_url); local
73 delegate, title, dialog_flags, message_text, default_prompt_text,
  /external/chromium/chrome/browser/ui/views/
ssl_client_certificate_selector_win.cc 43 std::wstring title = local
50 title.c_str(), text.c_str(), 0, 0, NULL);
  /external/chromium/chrome/browser/ui/webui/
print_preview_ui_uitest.cc 27 std::wstring title; local
28 ASSERT_TRUE(tab->GetTabTitle(&title));
31 ASSERT_EQ(expected_title, WideToUTF16Hack(title));
  /external/chromium/chrome/browser/web_applications/
web_app_unittest.cc 43 const string16 title = ASCIIToUTF16("TEST_TITLE"); local
47 web_app_info.title = title;
56 EXPECT_EQ(title, info.title);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data_views.cc 33 data->SetURL(elements[0].url, elements[0].title);
58 base::string16 title; local
60 ui::OSExchangeData::CONVERT_FILENAMES, &url, &title))
61 ReadFromTuple(url, title);
bookmark_service.h 26 base::string16 title; member in struct:BookmarkService::URLAndTitle
  /external/chromium_org/chrome/browser/importer/
importer_unittest_utils.h 18 const wchar_t* title; member in struct:BookmarkInfo
  /external/chromium_org/chrome/browser/task_manager/
task_manager_util.cc 66 base::string16 title = web_contents->GetTitle(); local
67 if (title.empty()) {
69 title = UTF8ToUTF16(url.spec());
71 title = base::i18n::GetDisplayStringInLTRDirectionality(title);
77 // might be wrong. For example, http://mail.yahoo.com, whose title is
82 base::i18n::AdjustStringForLocaleDirection(&title);
84 return title;
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item.h 16 ChromeLauncherAppMenuItem(const base::string16 title,
22 // Retrieves the title for this menu option.
23 const base::string16& title() const { return title_; } function in class:ChromeLauncherAppMenuItem

Completed in 261 milliseconds

1 2 3 4 5 6 7 8 91011>>