Searched refs:title (Results 51 - 75 of 1104) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/webui/
H A Dprint_preview_ui.cc35 StringValue title(job_title);
36 CallJavascriptFunction("updatePrintPreview", pages_count, title);
/external/chromium/chrome/common/extensions/
H A Dextension_sidebar_defaults.h18 // Default title, stores manifest default_title key value.
19 void set_default_title(const string16& title) { argument
20 default_title_ = title;
H A Dfile_browser_handler.h36 // default title
37 const std::string& title() const { return title_; } function in class:FileBrowserHandler
38 void set_title(const std::string& title) { title_ = title; } argument
/external/qemu/distrib/sdl-1.2.12/src/video/gem/
H A DSDL_gemwm_c.h34 extern void GEM_SetCaption(_THIS, const char *title, const char *icon);
/external/webkit/Source/WebCore/inspector/
H A DScriptProfile.idl30 readonly attribute DOMString title;
/external/webkit/Source/WebCore/inspector/front-end/
H A DPropertiesSection.js30 WebInspector.PropertiesSection = function(title, subtitle)
32 WebInspector.Section.call(this, title, subtitle);
H A DPlacard.js26 WebInspector.Placard = function(title, subtitle)
33 this.titleElement.className = "title";
41 this.title = title;
47 get title()
52 set title(x)
H A DPropertiesSidebarPane.js78 var title = prototype.description;
79 if (title.match(/Prototype$/))
80 title = title.replace(/Prototype$/, "");
81 var section = new WebInspector.ObjectPropertiesSection(prototype, title);
H A DSidebarPane.js29 WebInspector.SidebarPane = function(title)
35 this.titleElement.className = "title";
46 this.title = title;
52 get title()
57 set title(x)
/external/webkit/Source/WebCore/page/
H A DConsole.idl47 [Custom] void profile(in DOMString title);
48 [Custom] void profileEnd(in DOMString title);
51 void time(in [ConvertUndefinedOrNullToNullString] DOMString title);
52 [CustomArgumentHandling] void timeEnd(in [ConvertUndefinedOrNullToNullString] DOMString title);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHistoryItem.idl48 @method initWithURLString:title:lastVisitedTimeInterval:
50 @param title The title to use for the item. This is normally the <title> of a page.
57 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time;
59 HRESULT initWithURLString([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited);
82 @method title
83 @abstract The title of the page represented by this item.
84 @discussion This title canno
[all...]
/external/markdown/markdown/extensions/
H A Dabbr.py17 u'<p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>'
30 ABBR_REF_RE = re.compile(r'[*]\[(?P<abbr>[^\]]*)\][ ]?:\s*(?P<title>.*)')
54 title = m.group('title').strip()
56 AbbrPattern(self._generate_pattern(abbr), title)
80 def __init__(self, pattern, title):
82 self.title = title
87 abbr.set('title', sel
[all...]
/external/webkit/Source/WebCore/platform/
H A DContextMenuItem.cpp35 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
38 , m_title(title)
46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
49 , m_title(title)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
58 , m_title(title)
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItemInternal.h47 - (id)initWithURL:(NSURL *)URL target:(NSString *)target parent:(NSString *)parent title:(NSString *)title;
48 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title displayTitle:(NSString *)displayTitle lastVisitedTimeInterval:(NSTimeInterval)time;
53 - (void)setTitle:(NSString *)title;
54 - (void)_visitedWithTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount;
/external/webkit/Source/WebKit2/Shared/
H A DWebBackForwardListItem.h44 static PassRefPtr<WebBackForwardListItem> create(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID) argument
46 return adoptRef(new WebBackForwardListItem(originalURL, url, title, backForwardData, backForwardDataSize, itemID));
59 void setTitle(const String& title) { m_title = title; } argument
60 const String& title() const { return m_title; } function in class:WebKit::WebBackForwardListItem
71 WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID);
H A DWebBackForwardListItem.cpp36 WebBackForwardListItem::WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID) argument
39 , m_title(title)
82 String title;
83 if (!decoder.decode(title))
94 return create(originalURL, url, title, data.data(), data.size(), itemID);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKContextMenuItem.cpp43 WKContextMenuItemRef WKContextMenuItemCreateAsAction(WKContextMenuItemTag tag, WKStringRef title, bool enabled) argument
45 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(ActionType, toImpl(tag), toImpl(title)->string(), enabled, false)).leakRef());
48 WKContextMenuItemRef WKContextMenuItemCreateAsCheckableAction(WKContextMenuItemTag tag, WKStringRef title, bool enabled, bool checked) argument
50 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(CheckableActionType, toImpl(tag), toImpl(title)->string(), enabled, checked)).leakRef());
53 WKContextMenuItemRef WKContextMenuItemCreateAsSubmenu(WKStringRef title, bool enabled, WKArrayRef submenuItems) argument
55 return toAPI(WebContextMenuItem::create(toImpl(title)->string(), enabled, toImpl(submenuItems)).leakRef());
75 return toCopiedAPI(toImpl(itemRef)->data()->title().impl());
H A DWKContextMenuItem.h38 WK_EXPORT WKContextMenuItemRef WKContextMenuItemCreateAsAction(WKContextMenuItemTag, WKStringRef title, bool enabled);
39 WK_EXPORT WKContextMenuItemRef WKContextMenuItemCreateAsCheckableAction(WKContextMenuItemTag, WKStringRef title, bool enabled, bool checked);
40 WK_EXPORT WKContextMenuItemRef WKContextMenuItemCreateAsSubmenu(WKStringRef title, bool enabled, WKArrayRef submenuItems);
/external/webkit/Source/WebCore/platform/haiku/
H A DContextMenuItemHaiku.cpp53 const String& title, ContextMenu* subMenu)
56 m_platformDescription = new BMenuItem(BString(title).String(), new BMessage(action));
61 m_platformDescription->SetLabel(BString(title).String());
89 String theTitle = title();
119 String ContextMenuItem::title() const function in class:ContextMenuItem
126 void ContextMenuItem::setTitle(const String& title) argument
129 m_platformDescription->SetLabel(BString(title).String());
140 const char* title = m_platformDescription->Label(); local
143 m_platformDescription->SetLabel(title);
52 ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
/external/chromium/chrome/browser/web_applications/
H A Dweb_app_unittest.cc43 const string16 title = ASCIIToUTF16("TEST_TITLE"); local
47 web_app_info.title = title;
56 EXPECT_EQ(title, info.title);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.h59 - (void)_web_writeURL:(NSURL *)URL andTitle:(NSString *)title types:(NSArray *)types;
72 title:(NSString *)title
79 title:(NSString *)title
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfile.h38 static PassRefPtr<Profile> create(const UString& title, unsigned uid);
41 const UString& title() const { return m_title; } function in class:JSC::Profile
59 Profile(const UString& title, unsigned uid);
/external/webkit/Source/WebCore/wml/
H A DWMLFieldSetElement.cpp55 String title = parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::titleAttr)); local
56 if (title.isEmpty())
67 // Create text node holding the 'title' attribute value
68 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec);
/external/chromium/chrome/browser/extensions/
H A Dextension_bookmarks_unittest.cc63 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/doclava/res/assets/templates/components/
H A Dsearch_box.cs11 title="search developer docs" name="q"
23 <input type="submit" value="Search" title="search" id="search-button" class="gsc-search-button" />
26 <div title="clear results" class="gsc-clear-button">&nbsp;</div>

Completed in 612 milliseconds

1234567891011>>