Searched refs:title (Results 76 - 100 of 1104) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/inspector/front-end/
H A DStatusBarButton.js31 WebInspector.StatusBarButton = function(title, className, states)
54 this.title = title;
78 get title()
83 set title(x)
88 this.element.title = x;
H A DAuditResultView.js37 return (a.title || "").localeCompare(b.title || "");
49 WebInspector.SidebarPane.call(this, categoryResult.title);
84 var title = "";
87 title = result.value;
89 title = String.sprintf("%s (%d)", title, result.violationCount);
93 treeElement.titleHTML = title;
H A DResourceHeadersView.js140 var title = "<div class=\"raw-form-data header-value source-code\">" + formData.escapeHTML() + "</div>";
142 parmTreeElement.titleHTML = title;
147 _refreshParms: function(title, parms, parmsTreeElement)
152 parmsTreeElement.listItemElement.appendChild(document.createTextNode(title));
186 var title = "<div class=\"header-name\">" + name.escapeHTML() + ":</div>";
187 title += "<div class=\"header-value source-code\">" + valueEscaped + "</div>";
190 parmTreeElement.titleHTML = title;
266 statusCodeImage = "<img class=\"resource-status-image\" src=\"" + statusImageSource + "\" title=\"" + statusTextEscaped + "\">";
276 _refreshHeadersTitle: function(title, headersTreeElement, isHeadersTextShown, headersLength)
279 headersTreeElement.listItemElement.appendChild(document.createTextNode(title));
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DContextMenuItemMac.mm61 static PlatformMenuItemDescription createPlatformMenuItemDescription(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
66 NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:title action:nil keyEquivalent:@""];
74 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
76 m_platformDescription.adoptNS(createPlatformMenuItemDescription(type, action, title, true, false));
82 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
84 m_platformDescription.adoptNS(createPlatformMenuItemDescription(type, action, title, enabled, checked));
87 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, Vector<ContextMenuItem>& subMenuItems)
89 m_platformDescription.adoptNS(createPlatformMenuItemDescription(SubmenuType, action, title, enabled, checked));
119 String ContextMenuItem::title() const
121 return [m_platformDescription.get() title];
[all...]
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebContextMenuProxyWin.cpp52 String title = itemData.title(); local
53 ::AppendMenu(menu, flags, itemData.action(), title.charactersWithNullTermination());
64 String title = itemData.title(); local
65 ::AppendMenu(menu, MF_POPUP, reinterpret_cast<UINT>(subMenu), title.charactersWithNullTermination());
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp74 BSTR title, text, url; local
82 notification->title(&title);
84 printf("DESKTOP NOTIFICATION: icon %S, title %S, text %S\n",
86 title ? title : L"",
106 notification->title(&identifier);
/external/chromium/chrome/browser/history/
H A Dhistory_publisher.cc30 const string16& title,
36 title.c_str(),
28 PublishPageContent(const base::Time& time, const GURL& url, const string16& title, const string16& contents) const argument
/external/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog.h23 AppModalDialog(TabContents* tab_contents, const std::wstring& title);
39 // Dialog window title.
40 std::wstring title() const { return title_; } function in class:AppModalDialog
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
H A DSDL_cgxwm_c.h27 extern void CGX_SetCaption(_THIS, const char *title, const char *icon);
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
H A DSDL_syswm_c.h31 extern void WIN_SetWMCaption(_THIS, const char *title, const char *icon);
/external/skia/include/views/
H A DSkOSMenu.h25 explicit SkOSMenu(const char title[]);
30 void appendItem(const char title[], const char eventType[], int32_t eventData);
/external/webkit/Source/WebCore/bindings/js/
H A DScriptProfiler.h51 static void start(ScriptState* state, const String& title);
52 static PassRefPtr<ScriptProfile> stop(ScriptState* state, const String& title);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfiler.cpp44 void ScriptProfiler::start(ScriptState* state, const String& title) argument
47 v8::CpuProfiler::StartProfiling(v8String(title));
50 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
55 v8::CpuProfiler::StopProfiling(v8String(title));
92 PassRefPtr<ScriptHeapSnapshot> ScriptProfiler::takeHeapSnapshot(const String& title, HeapSnapshotProgress* control) argument
98 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kFull, &adapter);
100 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kAggregated);
/external/webkit/Source/WebCore/platform/chromium/
H A DClipboardChromiumWin.cpp43 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
46 String result = title.removeCharacters(&isInvalidFileCharacter);
/external/webkit/Source/WebCore/svg/
H A DSVGStyleElement.idl35 attribute DOMString title
/external/webkit/Source/WebKit/win/
H A DWebNavigationData.cpp64 WebNavigationData::WebNavigationData(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
67 , m_title(title)
84 WebNavigationData* WebNavigationData::createInstance(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource);
101 HRESULT WebNavigationData::title(BSTR* title) argument
103 if (!title)
105 *title = BString(m_title).release();
/external/webkit/Source/WebKit2/UIProcess/
H A DWebNavigationData.h46 String title() const { return m_store.title; } function in class:WebKit::WebNavigationData
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dwpa_debug.c111 static void _wpa_hexdump(int level, const char *title, const u8 *buf, argument
121 title, (unsigned long) len);
133 printf("%s - hexdump(len=%lu):", title, (unsigned long) len);
148 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) argument
150 _wpa_hexdump(level, title, buf, len, 1);
154 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) argument
156 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys);
160 static void _wpa_hexdump_ascii(int level, const char *title, const u8 *buf, argument
175 title, (unsigned long) len);
181 title, (unsigne
245 wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) argument
251 wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) argument
[all...]
H A Dwpa_debug.h92 * @title: title of for the message
100 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
102 static inline void wpa_hexdump_buf(int level, const char *title, argument
105 wpa_hexdump(level, title, wpabuf_head(buf), wpabuf_len(buf));
111 * @title: title of for the message
121 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len);
123 static inline void wpa_hexdump_buf_key(int level, const char *title, argument
126 wpa_hexdump_key(level, title, wpabuf_hea
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_node_data_unittest.cc57 const std::wstring title(L"title");
60 data.SetURL(url, title);
68 EXPECT_EQ(title, drag_data.elements[0].title);
81 const string16 title(ASCIIToUTF16("blah"));
82 const BookmarkNode* node = model->AddURL(root, 0, title, url);
88 EXPECT_EQ(title, WideToUTF16Hack(drag_data.elements[0].title));
100 EXPECT_EQ(title, read_dat
[all...]
/external/chromium/chrome/browser/importer/
H A Dfirefox_importer_unittest.cc104 // Unicode characters in title and shortcut.
105 string16 title; local
113 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
115 EXPECT_EQ(L"\x4E2D\x6587", UTF16ToWide(title));
124 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
126 EXPECT_EQ(ASCIIToUTF16("name"), title);
134 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
136 EXPECT_EQ(ASCIIToUTF16("name"), title);
145 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
147 EXPECT_EQ(ASCIIToUTF16("name"), title);
[all...]
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification.h27 // to uniquely identify this notification. The title is the title of
32 const string16& title);
38 const string16& title);
42 void set_title(const string16& title) { title_ = title; } argument
H A Dsystem_notification_factory.cc18 const GURL& icon, const string16& title,
22 icon, title, text, WebKit::WebTextDirectionDefault);
29 const GURL& icon, const string16& title,
38 subst.push_back(EscapeForHTML(UTF16ToUTF8(title)));
17 Create( const GURL& icon, const string16& title, const string16& text, NotificationDelegate* delegate) argument
28 Create( const GURL& icon, const string16& title, const string16& text, const string16& link, NotificationDelegate* delegate) argument
/external/chromium/chrome/browser/custom_handlers/
H A Dregister_protocol_handler_infobar_delegate.cc43 handler_->title(), UTF8ToUTF16(handler_->url().host()),
44 UTF8ToUTF16(handler_->protocol()), old_handler->title()) :
46 handler_->title(), UTF8ToUTF16(handler_->url().host()),
54 handler_->title()) :
/external/chromium/chrome/browser/resources/options/
H A Dautofill_options.js84 * overlay title.
88 var title = localStrings.getString('addAddressTitle');
89 AutofillEditAddressOverlay.setTitle(title);
97 * overlay title.
101 var title = localStrings.getString('addCreditCardTitle');
102 AutofillEditCreditCardOverlay.setTitle(title);
172 var title = localStrings.getString('editAddressTitle');
173 AutofillEditAddressOverlay.setTitle(title);
185 var title = localStrings.getString('editCreditCardTitle');
186 AutofillEditCreditCardOverlay.setTitle(title);
[all...]

Completed in 517 milliseconds

1234567891011>>