Searched refs:title (Results 176 - 200 of 1104) sorted by relevance

1234567891011>>

/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestNavigationController.h66 const WebKit::WebString& title,
76 // Set / Get the title
77 void setTitle(const WebKit::WebString& title) { m_title = title; } argument
78 const WebKit::WebString& title() const { return m_title; } function in class:TestNavigationEntry
94 const WebKit::WebString& title,
H A DNotificationPresenter.cpp51 return notification.title();
68 bool NotificationPresenter::simulateClick(const WebString& title) argument
70 WTF::String id(title.data(), title.length());
97 printf("DESKTOP NOTIFICATION:%s icon %s, title %s, text %s\n",
101 notification.title().isEmpty() ? "" :
102 notification.title().utf8().data(),
/external/chromium/webkit/glue/
H A Dwebclipboard_impl.cc38 const WebString& title) {
43 markup.append(EscapeForHTML(UTF16ToUTF8(title)));
50 const WebString& title) {
54 if (!title.isEmpty()) {
56 markup.append(EscapeForHTML(UTF16ToUTF8(title)));
160 void WebClipboardImpl::writeURL(const WebURL& url, const WebString& title) { argument
163 scw.WriteBookmark(title, url.spec());
164 scw.WriteHTML(UTF8ToUTF16(URLToMarkup(url, title)), "");
169 const WebImage& image, const WebURL& url, const WebString& title) {
187 scw.WriteBookmark(title, ur
37 URLToMarkup(const WebURL& url, const WebString& title) argument
49 URLToImageMarkup(const WebURL& url, const WebString& title) argument
168 writeImage( const WebImage& image, const WebURL& url, const WebString& title) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleAgent.cpp141 void InspectorConsoleAgent::startTiming(const String& title) argument
143 // Follow Firebug's behavior of requiring a title that is not null or
145 if (title.isNull())
148 m_times.add(title, currentTime() * 1000);
151 void InspectorConsoleAgent::stopTiming(const String& title, PassRefPtr<ScriptCallStack> callStack) argument
153 // Follow Firebug's behavior of requiring a title that is not null or
155 if (title.isNull())
158 HashMap<String, double>::iterator it = m_times.find(title);
166 String message = title + String::format(": %.0fms", elapsed);
174 // Follow Firebug's behavior of counting with null and undefined title i
176 String title; local
[all...]
H A DInspectorProfilerAgent.cpp105 String title = profile->title(); local
106 String message = makeString("Profile \"webkit-profile://", CPUProfileType, '/', encodeWithURLEscapeSequences(title), '#', String::number(profile->uid()), "\" finished.");
110 void InspectorProfilerAgent::addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL) argument
114 String message = makeString("Profile \"webkit-profile://", CPUProfileType, '/', encodeWithURLEscapeSequences(title), "#0\" started.");
126 header->setString("title", profile.title());
135 header->setString("title", snapshot.title());
300 String title local
317 String title = getCurrentUserInitiatedProfileName(); local
362 String title = makeString(UserInitiatedProfileName, '.', String::number(m_nextUserInitiatedHeapSnapshotNumber)); local
[all...]
H A DInspectorConsoleAgent.h71 void startTiming(const String& title);
72 void stopTiming(const String& title, PassRefPtr<ScriptCallStack>);
80 void addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_contextmenu.cpp56 const char* title; /**< contains the title of the item */ member in struct:_Ewk_Context_Menu_Item
134 * @param title specifies a title of the item
143 const char* title, Eina_Bool checked, Eina_Bool enabled)
151 item->title = eina_stringshare_add(title);
174 // Don't care about title and submenu as they're not used after this point.
195 eina_stringshare_del(item->title);
260 * Gets a title o
141 ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Action action, Ewk_Context_Menu* submenu, const char* title, Eina_Bool checked, Eina_Bool enabled) argument
282 ewk_context_menu_item_title_set(Ewk_Context_Menu_Item* o, const char* title) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.mm156 - (void)_web_writeURL:(NSURL *)URL andTitle:(NSString *)title types:(NSArray *)types
160 if ([title length] == 0) {
161 title = [[URL path] lastPathComponent];
162 if ([title length] == 0)
163 title = [URL _web_userVisibleString];
171 [self setString:title forType:WebURLNamePboardType];
175 [WebURLsWithTitles writeURLs:[NSArray arrayWithObject:URL] andTitles:[NSArray arrayWithObject:title] toPasteboard:self];
232 title:(NSString *)title
240 [self _web_writeURL:URL andTitle:title type
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp95 if (FAILED(navigationData->title(&titleBSTR)))
97 wstring title;
99 title = wstringFromBSTR(titleBSTR);
141 printf("WebView navigated to url \"%S\" with title \"%S\" with HTTP equivalent method \"%S\". The navigation was %s and was %s%S.\n",
143 title.c_str(),
195 wstring title; local
197 title = wstringFromBSTR(titleBSTR);
199 printf("WebView updated the title for history URL \"%S\" to \"%S\".\n", url.c_str(), title.c_str());
/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/wpa_supplicant/
H A Dcommon.c222 static void _wpa_hexdump(int level, const char *title, const u8 *buf, argument
232 title, (unsigned long) len);
244 printf("%s - hexdump(len=%lu):", title, (unsigned long) len);
259 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) argument
261 _wpa_hexdump(level, title, buf, len, 1);
265 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) argument
267 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys);
271 static void _wpa_hexdump_ascii(int level, const char *title, const u8 *buf, argument
286 title, (unsigned long) len);
292 title, (unsigne
356 wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) argument
362 wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) argument
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dautocomplete_list.js39 var title = this.pageInfo_['title'];
42 titleEl.className = 'title';
43 titleEl.textContent = title || url;
46 if (title && title.length > 0 && url != title) {
H A Dalert_overlay.js87 * @param {string} title The alert title to display to the user.
89 * @param {string} okTitle The title of the OK button. If undefined or empty,
91 * @param {string} cancelTitle The title of the cancel button. If undefined or
101 title, message, okTitle, cancelTitle, okCallback, cancelCallback) {
102 if (title != undefined) {
103 $('alertOverlayTitle').textContent = title;
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfiler.cpp63 void Profiler::startProfiling(ExecState* exec, const UString& title) argument
65 ASSERT_ARG(title, !title.isNull());
67 // Check if we currently have a Profile for this global ExecState and title.
73 if (profileGenerator->origin() == origin && profileGenerator->title() == title)
78 RefPtr<ProfileGenerator> profileGenerator = ProfileGenerator::create(exec, title, ++ProfilesUID);
82 PassRefPtr<Profile> Profiler::stopProfiling(ExecState* exec, const UString& title) argument
87 if (profileGenerator->origin() == origin && (title.isNull() || profileGenerator->title()
[all...]
H A DProfileGenerator.cpp43 PassRefPtr<ProfileGenerator> ProfileGenerator::create(ExecState* exec, const UString& title, unsigned uid) argument
45 return adoptRef(new ProfileGenerator(exec, title, uid));
48 ProfileGenerator::ProfileGenerator(ExecState* exec, const UString& title, unsigned uid) argument
52 m_profile = Profile::create(title, uid);
70 const UString& ProfileGenerator::title() const function in class:JSC::ProfileGenerator
72 return m_profile->title();
/external/webkit/Source/WebCore/inspector/front-end/
H A DResourceTimingView.js77 function addRow(title, className, start, end, color)
80 row.title = title;
125 td.textContent = rows[i].title;
143 var title = document.createElement("span");
144 title.className = "network-timing-bar-title";
146 title.style.right = (scale * (total - rows[i].end) + 3) + "px";
148 title.style.left = (scale * rows[i].start + 3) + "px";
149 title
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_codec.cc92 const string16& title = node->GetTitle(); local
93 value->SetString(kNameKey, title);
100 UpdateChecksumWithUrlNode(id, title, url);
106 UpdateChecksumWithFolderNode(id, title);
158 // we need to reset the title as the title is persisted and restored from
208 string16 title; local
209 value.GetString(kNameKey, &title);
252 UpdateChecksumWithUrlNode(id_string, title, url_string);
280 UpdateChecksumWithFolderNode(id_string, title);
314 UpdateChecksumWithUrlNode(const std::string& id, const string16& title, const std::string& url) argument
324 UpdateChecksumWithFolderNode(const std::string& id, const string16& title) argument
[all...]
H A Dbookmark_index_unittest.cc155 const std::string title; member in struct:TestData
166 titles.push_back(data[i].title);
187 // Makes sure index is updated when a node's title is changed.
208 // Makes sure if the lower case string of a bookmark title is more characters
244 const char* title; member in struct:TestData
255 info.set_title(UTF8ToUTF16(data[i].title));
260 model->AddURL(model->other_node(), i, UTF8ToUTF16(data[i].title),
267 EXPECT_EQ(data[0].title, UTF16ToUTF8(result1.title()));
271 EXPECT_EQ(data[1].title, UTF16ToUTF
[all...]
/external/markdown/markdown/
H A Dinlinepatterns.py228 title = m.group(11)
238 if title:
239 title = dequote(title) #.replace('"', "&quot;")
240 el.set("title", title)
288 el.set('title', dequote(" ".join(src_parts[1:])))
310 href, title = self.markdown.references[id]
313 return self.makeTag(href, title, text)
315 def makeTag(self, href, title, tex
[all...]
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm62 static NSString *titleKey = @"title";
110 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time
113 return [self initWithWebCoreHistoryItem:HistoryItem::create(URLString, title, time)];
169 - (NSString *)title
172 return nsStringNilIfEmpty(core(_private)->title());
276 return [[[self alloc] initWithURL:URL title:nil] autorelease];
290 - (id)initWithURL:(NSURL *)URL target:(NSString *)target parent:(NSString *)parent title:(NSString *)title
292 return [self initWithWebCoreHistoryItem:HistoryItem::create(URL, target, parent, title)];
[all...]
/external/pcre/
H A D132html61 <title>$ARGV[0] specification</title>
145 my($title) = &do_line($2);
148 printf("<li><a name=\"TOC%d\" href=\"#SEC%d\">$title</a>\n",
150 printf TEMP ("<br><a name=\"SEC%d\" href=\"#TOC1\">$title</a><br>\n",
156 print TEMP "<br><b>\n$title\n</b><br>\n";
162 my($title) = &do_line($2);
163 print TEMP "<br><b>\n$title\n</b><br>\n";
/external/webkit/Source/WebCore/platform/gtk/
H A DContextMenuItemGtk.cpp131 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
142 platformAction = GTK_ACTION(gtk_toggle_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action)));
144 platformAction = gtk_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action));
205 String ContextMenuItem::title() const function in class:WebCore::ContextMenuItem
211 void ContextMenuItem::setTitle(const String& title) argument
215 gtk_action_set_label(action, title.utf8().data());
/external/webkit/Source/WebKit/win/
H A DWebHistoryItem.h60 /* [in] */ BSTR title,
69 virtual HRESULT STDMETHODCALLTYPE title(
76 /* [in] */ BSTR title);
79 /* [retval][out] */ BSTR* title);
92 virtual HRESULT STDMETHODCALLTYPE setTitle(BSTR title);
105 virtual HRESULT STDMETHODCALLTYPE visitedWithTitle(BSTR title, BOOL increaseVisitCount);
/external/chromium/chrome/browser/extensions/
H A Dextension_browser_actions_api.cc60 std::string title; local
61 EXTENSION_FUNCTION_VALIDATE(details_->GetString("title", &title));
62 browser_action_->SetTitle(tab_id_, title);
/external/chromium/chrome/browser/sessions/
H A Dsession_types.cc23 const string16& title,
28 title_(title),
81 title_ = entry.title();
20 TabNavigation(int index, const GURL& virtual_url, const GURL& referrer, const string16& title, const std::string& state, PageTransition::Type transition) argument

Completed in 528 milliseconds

1234567891011>>