Searched defs:title (Results 276 - 300 of 521) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/svg/
H A DSVGStyledElement.cpp71 String SVGStyledElement::title() const function in class:WebCore::SVGStyledElement
74 // <title> elements are the title of the document, not a tooltip) so we instantly return.
81 // Walk up the tree, to find out whether we're inside a <use> shadow tree, to find the right title.
93 // If the <use> title is not empty we found the title to use.
94 String useTitle(useElement->title());
102 // If we aren't an instance in a <use> or the <use> title was not found, then find the first
103 // <title> child of this element.
110 // If a title chil
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp118 WebString WebHistoryItem::title() const function in class:WebKit::WebHistoryItem
120 return m_private->title();
123 void WebHistoryItem::setTitle(const WebString& title) argument
126 m_private->setTitle(title);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_frame.h49 * - "title,changed", const char*: title of the main frame changed.
118 const char *title; member in struct:_Ewk_Hit_Test
124 const char *title; member in struct:_Ewk_Hit_Test::__anon13436
H A Dewk_history.cpp59 const char *title; member in struct:_Ewk_History_Item
410 * Create a new history item with given URI and title.
413 * @param title resource title.
418 Ewk_History_Item* ewk_history_item_new(const char* uri, const char* title) argument
421 WTF::String t = WTF::String::fromUTF8(title);
460 * Query title for given history item.
464 * @return the title pointer, that may be @c NULL. This pointer is
475 eina_stringshare_replace(&i->title, core->title()
507 ewk_history_item_title_alternate_set(Ewk_History_Item* item, const char* title) argument
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomdocument.c29 #define HTML_DOCUMENT_TITLE "<html><head><title>This is the title</title></head><body></body></html>"
33 #define HTML_DOCUMENT_LINKS "<html><head><title>Title</title></head><body><a href=\"about:blank\">blank</a><a href=\"http://www.google.com\">google</a><a href=\"http://www.webkit.org\">webkit</a></body></html>"
34 #define HTML_DOCUMENT_IFRAME "<html><head><title>IFrame</title></head><body><iframe id='iframe'></iframe><div id='test'></div></body></html>"
76 gchar* title = webkit_dom_document_get_title(document); local
77 g_assert(title);
78 g_assert_cmpstr(title,
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebhistoryitem.cpp38 * A history item consists out of a title and a uri. It can be part of the
57 WTF::CString title; member in struct:_WebKitWebHistoryItemPrivate
114 priv->title = WTF::CString();
134 * WebKitWebHistoryItem:title:
136 * The title of the history item.
143 "title",
145 _("The title of the history item"),
150 * WebKitWebHistoryItem:alternate-title:
152 * The alternate title of the history item.
159 "alternate-title",
296 webkit_web_history_item_new_with_data(const gchar* uri, const gchar* title) argument
359 webkit_web_history_item_set_alternate_title(WebKitWebHistoryItem* webHistoryItem, const gchar* title) argument
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp57 \row \o title() \o The page title.
116 \sa originalUrl(), title(), lastVisited()
127 Returns the title of the page associated with the history item.
131 QString QWebHistoryItem::title() const function in class:QWebHistoryItem
134 return d->item->title();
142 \sa title(), icon(), url()
156 \sa title(), url(), lastVisited()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp89 const QString NotificationWrapper::title() const function in class:WebCore::NotificationWrapper
94 return notification->contents().title();
194 QString title; local
200 title = notification->contents().title();
236 wrapper->m_notificationIcon->showMessage(notification->contents().title(), notification->contents().body());
246 printf("DESKTOP NOTIFICATION CLOSED: %s\n", QString(notification->contents().title()).toUtf8().constData());
273 void NotificationPresenterClientQt::notificationClicked(const QString& title) argument
286 notificationTitle = notification->contents().title();
287 if (notificationTitle == title)
[all...]
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A DWebPlugin.cpp125 const char* title = "select"; local
126 if (qstrcmp(title, "weba_ti_texlist_single"))
127 setWindowTitle(QString::fromUtf8(title));
171 const char* title = "select"; local
172 if (qstrcmp(title, "weba_ti_textlist_multi"))
173 setWindowTitle(QString::fromUtf8(title));
196 title = "done";
197 if (qstrcmp(title, "wdgt_bd_done"))
198 done->setText(QString::fromUtf8(title));
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp49 void title();
102 * Check QWebHistoryItem::title() method
104 void tst_QWebHistory::title() function in class:tst_QWebHistory
106 QCOMPARE(hist->currentItem().title(), QString("page5"));
159 QCOMPARE(hist->itemAt(i - 1).title(), QString("page") + QString::number(i));
177 QVERIFY(hist->currentItem().title() != current.title());
180 QCOMPARE(hist->currentItem().title(), current.title());
194 QCOMPARE(items.at(i - 1).title(), QStrin
[all...]
/external/webkit/Source/WebKit/win/
H A DWebDataSource.cpp247 /* [retval][out] */ BSTR* title)
249 *title = BString(m_loader->title().string()).release();
246 pageTitle( BSTR* title) argument
H A DWebHTMLRepresentation.cpp314 HRESULT STDMETHODCALLTYPE WebHTMLRepresentation::title( function in class:WebHTMLRepresentation
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A DClientImpl.cpp92 void qt_wk_didReceiveTitleForFrame(WKPageRef page, WKStringRef title, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
96 QString qTitle = WKStringCopyQString(title);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.cpp184 void WebFrameProxy::didChangeTitle(const String& title) argument
186 m_title = title;
H A DWebFrameProxy.h100 const String& title() const { return m_title; } function in class:WebKit::WebFrameProxy
/external/webkit/Tools/DumpRenderTree/win/
H A DFrameLoadDelegate.cpp172 /* [in] */ BSTR title,
176 printf("%s - didReceiveTitle: %S\n", descriptionSuitableForTestResult(frame).c_str(), title);
179 printf("TITLE CHANGED: %S\n", title ? title : L"");
170 didReceiveTitle( IWebView *webView, BSTR title, IWebFrame *frame) argument
/external/webkit/Tools/DumpRenderTree/wx/
H A DDumpRenderTreeWx.cpp128 const char* title = event.GetTitle().mb_str(wxConvUTF8); local
129 printf("TITLE CHANGED: %S\n", title ? title : "");
/external/webkit/Tools/GtkLauncher/
H A Dmain.c49 gchar *title = g_string_free(string, FALSE); local
50 gtk_window_set_title(window, title);
51 g_free(title);
54 static void linkHoverCb(WebKitWebView* page, const gchar* title, const gchar* link, GtkStatusbar* statusbar) argument
128 g_signal_connect(webView, "notify::title", G_CALLBACK(notifyTitleCb), window);
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
H A Dpmksa_cache.c55 char *title = "PMK Name"; local
60 addr[0] = (u8 *) title;
/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...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c240 void wpa_trace_dump_funcname(const char *title, void *pc) argument
242 wpa_printf(MSG_INFO, "WPA_TRACE: %s: %p", title, pc);
255 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num) argument
262 wpa_printf(MSG_INFO, "WPA_TRACE: %s - START", title);
287 wpa_printf(MSG_INFO, "WPA_TRACE: %s - END", title);
291 void wpa_trace_show(const char *title) argument
297 wpa_trace_dump(title, &info);
H A Dwpa_debug.c157 static void _wpa_hexdump(int level, const char *title, const u8 *buf, argument
190 title, len, display); local
199 title, (unsigned long) len);
211 printf("%s - hexdump(len=%lu):", title, (unsigned long) len);
226 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) argument
228 _wpa_hexdump(level, title, buf, len, 1);
232 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) argument
234 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys);
238 static void _wpa_hexdump_ascii(int level, const char *title, const u8 *buf, argument
253 title, (unsigne
323 wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) argument
329 wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) argument
[all...]
H A Dwpa_debug.h98 * @title: title of for the message
106 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
108 static inline void wpa_hexdump_buf(int level, const char *title, argument
111 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
118 * @title: title of for the message
128 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len);
130 static inline void wpa_hexdump_buf_key(int level, const char *title, argument
133 wpa_hexdump_key(level, title, bu
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c240 void wpa_trace_dump_funcname(const char *title, void *pc) argument
242 wpa_printf(MSG_INFO, "WPA_TRACE: %s: %p", title, pc);
255 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num) argument
262 wpa_printf(MSG_INFO, "WPA_TRACE: %s - START", title);
287 wpa_printf(MSG_INFO, "WPA_TRACE: %s - END", title);
291 void wpa_trace_show(const char *title) argument
297 wpa_trace_dump(title, &info);
H A Dwpa_debug.c157 static void _wpa_hexdump(int level, const char *title, const u8 *buf, argument
190 title, len, display); local
199 title, (unsigned long) len);
211 printf("%s - hexdump(len=%lu):", title, (unsigned long) len);
226 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) argument
228 _wpa_hexdump(level, title, buf, len, 1);
232 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) argument
234 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys);
238 static void _wpa_hexdump_ascii(int level, const char *title, const u8 *buf, argument
253 title, (unsigne
323 wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) argument
329 wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) argument
[all...]

Completed in 1129 milliseconds

<<11121314151617181920>>