Home
last modified time | relevance | path

Searched defs:title (Results 1 – 25 of 1076) sorted by relevance

12345678910>>...44

/external/chromium_org/chrome/common/extensions/docs/templates/json/
Dchrome_sidenav.json3 "title": "Devtools", string
6 "title": "Learn Basics", string
9 "title": "Overview", string
13 "title": "Development Workflow", string
17 "title": "Using the Console", string
21 "title": "Tips & Tricks", string
25 "title": "Additional Resources", string
29 "title": "Videos", string
33 "title": "Blog Posts", string
37 "title": "Mailing List", string
[all …]
Dextensions_sidenav.json3 "title": "Getting Started", string
7 "title": "Overview", string
11 "title": "What's New?", string
15 "title": "Developer's Guide", string
19 "title": "Browser UI", string
23 "title": "Browser Actions", string
27 "title": "Context Menus", string
31 "title": "Desktop Notifications", string
35 "title": "Omnibox", string
39 "title": "Options Pages", string
[all …]
Dapps_sidenav.json3 "title": "Discover", string
6 "title": "What Are Chrome Apps?", string
12 "title": "Develop", string
15 "title": "Create Your First App", string
19 "title": "Tutorials", string
23 "title": "Learn with a Codelab", string
27 "title": "About this Codelab", string
31 "title": "1 - Set Up Development Environment", string
35 "title": "2 - Create Basic App", string
39 "title": "3 - Create MVC", string
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DTimelineUIUtils.js127 createEventDivider: function(recordType, title) argument
172 recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] }; property
173 …recordStyles[recordTypes.Program] = { title: WebInspector.UIString("Other"), category: categories[… property
174 …recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: categ… property
175 …recordStyles[recordTypes.BeginFrame] = { title: WebInspector.UIString("Frame Start"), category: ca… property
176 …recordStyles[recordTypes.ScheduleStyleRecalculation] = { title: WebInspector.UIString("Schedule St… property
177 …recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"),… property
178 …recordStyles[recordTypes.InvalidateLayout] = { title: WebInspector.UIString("Invalidate Layout"), … property
179 …recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: categories[… property
180 …recordStyles[recordTypes.UpdateLayerTree] = { title: WebInspector.UIString("Update layer tree"), c… property
[all …]
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/
Dsample.js34 var id = chrome.contextMenus.create({"title": title, "contexts":[context], property
40 chrome.contextMenus.create({"title": "Test parent item", "id": "parent"}); property
42 {"title": "Child 1", "parentId": "parent", "id": "child1"}); property
44 {"title": "Child 2", "parentId": "parent", "id": "child2"}); property
48 chrome.contextMenus.create({"title": "Radio 1", "type": "radio", property
50 chrome.contextMenus.create({"title": "Radio 2", "type": "radio", property
56 {"title": "Checkbox1", "type": "checkbox", "id": "checkbox1"}); property
58 {"title": "Checkbox2", "type": "checkbox", "id": "checkbox2"}); property
65 chrome.contextMenus.create({"title": "Oops", "id": "child1"}, function() { property
/external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
Dsample.js17 var title = "Test '" + context + "' menu item"; variable
18 var id = chrome.contextMenus.create({"title": title, "contexts":[context], property
25 var parent = chrome.contextMenus.create({"title": "Test parent item"}); property
27 {"title": "Child 1", "parentId": parent, "onclick": genericOnClick}); property
29 {"title": "Child 2", "parentId": parent, "onclick": genericOnClick}); property
39 var radio1 = chrome.contextMenus.create({"title": "Radio 1", "type": "radio", property
41 var radio2 = chrome.contextMenus.create({"title": "Radio 2", "type": "radio", property
55 {"title": "Checkbox1", "type": "checkbox", "onclick":checkboxOnClick}); property
57 {"title": "Checkbox2", "type": "checkbox", "onclick":checkboxOnClick}); property
65 chrome.contextMenus.create({"title": "Oops", "parentId":999}, function() { property
/external/chromium_org/chrome/browser/sync/test/integration/
Dtwo_client_bookmarks_sync_test.cc112 std::string title = "Google"; in IN_PROC_BROWSER_TEST_F() local
243 std::string title = IndexedURLTitle(i); in IN_PROC_BROWSER_TEST_F() local
261 std::string title = IndexedURLTitle(i); in IN_PROC_BROWSER_TEST_F() local
265 std::string title = IndexedFolderName(i); in IN_PROC_BROWSER_TEST_F() local
270 std::string title = IndexedURLTitle(i); in IN_PROC_BROWSER_TEST_F() local
279 std::string title = IndexedURLTitle(i); in IN_PROC_BROWSER_TEST_F() local
320 std::string title = IndexedURLTitle(1); in IN_PROC_BROWSER_TEST_F() local
356 std::string title = IndexedURLTitle(1); in IN_PROC_BROWSER_TEST_F() local
399 std::string title = IndexedFolderName(1); in IN_PROC_BROWSER_TEST_F() local
417 std::string title = IndexedFolderName(1); in IN_PROC_BROWSER_TEST_F() local
[all …]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
Dschema.json5 "title": "Bookmarks in the Bookmarks Bar", string
12 "title": { object
13 "title": "Bookmark name", string
18 "title": "Bookmark URL", string
23 "title": "Contents of this bookmark folder", string
31 "title": "Bookmarks in the Other Bookmarks folder", string
/external/chromium_org/third_party/webrtc/base/
Dwindowpicker.h24 WindowDescription(const WindowId& id, const std::string& title) in WindowDescription()
29 const std::string& title() const { return title_; } in title() function
30 void set_title(const std::string& title) { title_ = title; } in set_title()
40 DesktopDescription(const DesktopId& id, const std::string& title) in DesktopDescription()
45 const std::string& title() const { return title_; } in title() function
46 void set_title(const std::string& title) { title_ = title; } in set_title()
/external/chromium_org/third_party/libjingle/source/talk/base/
Dwindowpicker.h18 WindowDescription(const WindowId& id, const std::string& title) in WindowDescription()
23 const std::string& title() const { return title_; } in title() function
24 void set_title(const std::string& title) { title_ = title; } in set_title()
34 DesktopDescription(const DesktopId& id, const std::string& title) in DesktopDescription()
39 const std::string& title() const { return title_; } in title() function
40 void set_title(const std::string& title) { title_ = title; } in set_title()
/external/chromium_org/third_party/WebKit/public/web/
DWebDOMActivityLogger.h45 virtual void logGetter(const WebString& apiName, const WebURL& url, const WebString& title) { } in logGetter()
46 …ing& apiName, const v8::Handle<v8::Value>& newValue, const WebURL& url, const WebString& title) { } in logSetter()
47 …e>& newValue, const v8::Handle<v8::Value>& oldValue, const WebURL& url, const WebString& title) { } in logSetter()
48 …piName, int argc, const v8::Handle<v8::Value>* argv, const WebURL& url, const WebString& title) { } in logMethod()
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
DGetTitleTest.java31 public PageInfo(String title, String url) { in PageInfo()
46 private static final String getHtml(String title) { in getHtml()
85 final String title = loadFromDataAndGetTitle(getHtml(TITLE)); in testLoadDataGetTitle() local
98 final String title = loadFromDataAndGetTitle(content); in testGetTitleOnDataContainingEmptyTitle() local
112 final String title = loadFromDataAndGetTitle(content); in testGetTitleOnDataContainingNoTitle() local
161 final String title = loadFromDataAndGetTitle(page); in testGetTitleSetFromJS() local
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
Dfile_manager_dialog_base.js55 title, message, onOk, onCancel) { argument
69 title, message, onOk, onCancel) { argument
77 this, title, message, onOk, onCancel, null); argument
95 FileManagerDialogBase.prototype.showTitleOnlyDialog = function(title) { argument
105 FileManagerDialogBase.prototype.showTitleAndTextDialog = function(title, text) { argument
/external/chromium_org/third_party/WebKit/Source/core/frame/
DConsoleBase.cpp109 void ConsoleBase::markTimeline(const String& title) in markTimeline()
114 void ConsoleBase::profile(ScriptState* scriptState, const String& title) in profile()
119 void ConsoleBase::profileEnd(ScriptState* scriptState, const String& title) in profileEnd()
124 void ConsoleBase::time(const String& title) in time()
130 void ConsoleBase::timeEnd(ScriptState* scriptState, const String& title) in timeEnd()
136 void ConsoleBase::timeStamp(const String& title) in timeStamp()
141 void ConsoleBase::timeline(ScriptState* scriptState, const String& title) in timeline()
146 void ConsoleBase::timelineEnd(ScriptState* scriptState, const String& title) in timelineEnd()
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
Dprocesses.js229 {title: 'System Memory Usage (MB)', is3D: true}); property
231 {title: 'CPU Usage', property
267 title: 'CPU stats for ' + this.selProcUri_, property
269 vAxes: {0: {title: 'CPU %', maxValue: 100}, 1: {title: '# Threads'}}, property
271 hAxis: {title: 'Run Time'}, property
275 title: 'Memory stats for ' + this.selProcUri_, property
277 vAxes: {0: {title: 'VM Rss KB'}, 1: {title: '# Page Faults'}}, property
279 hAxis: {title: 'Run Time'}, property
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowProgressDialog.java18 public static ProgressDialog show(Context context, CharSequence title, CharSequence message) { in show()
23 …public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boole… in show()
28 …public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boole… in show()
33 …public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boole… in show()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
Dmodule.json6 "title": "Sources", string
60 "title": "Sources", string
67 "title": "Content scripts", string
74 "title": "Snippets", string
102 "title": "Search in content scripts", string
109 "title": "Enable JavaScript source maps", string
116 "title": "Detect indentation", string
123 "title": "Autocompletion", string
130 "title": "Bracket matching", string
137 "title": "Show whitespace characters", string
[all …]
DPlacard.js32 WebInspector.Placard = function(title, subtitle) argument
48 get title() getter in WebInspector.Placard
53 set title(x) setter in WebInspector.Placard
/external/proguard/src/proguard/gui/
DMessageDialogRunnable.java37 private final String title; field in MessageDialogRunnable
47 String title, in showMessageDialog()
70 String title, in MessageDialogRunnable()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DCPUProfilerModel.js66 consoleProfileFinished: function(id, scriptLocation, cpuProfile, title) argument
78 consoleProfileStarted: function(id, scriptLocation, title) argument
116 consoleProfileStarted: function(protocolId, scriptLocation, title) {}, argument
124 consoleProfileFinished: function(protocolId, scriptLocation, cpuProfile, title) {} argument
/external/chromium_org/chrome/browser/task_manager/
Dtask_manager_browsertest_util.cc149 base::string16 MatchTab(const char* title) { in MatchTab()
158 base::string16 MatchExtension(const char* title) { in MatchExtension()
165 base::string16 MatchApp(const char* title) { in MatchApp()
172 base::string16 MatchWebView(const char* title) { in MatchWebView()
179 base::string16 MatchBackground(const char* title) { in MatchBackground()
186 base::string16 MatchPrint(const char* title) { in MatchPrint()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
DHeapSnapshotDataGrids.js628 {id: "object", title: WebInspector.UIString("Object"), disclosure: true, sortable: true}, property
629 {id: "distance", title: WebInspector.UIString("Distance"), width: "80px", sortable: true}, property
630 … {id: "shallowSize", title: WebInspector.UIString("Shallow Size"), width: "120px", sortable: true}, property
631 …{id: "retainedSize", title: WebInspector.UIString("Retained Size"), width: "120px", sortable: true… property
674 {id: "object", title: WebInspector.UIString("Object"), disclosure: true, sortable: true}, property
675 …{id: "distance", title: WebInspector.UIString("Distance"), width: "80px", sortable: true, sort: We… property
676 … {id: "shallowSize", title: WebInspector.UIString("Shallow Size"), width: "120px", sortable: true}, property
677 …{id: "retainedSize", title: WebInspector.UIString("Retained Size"), width: "120px", sortable: true} property
730 … {id: "object", title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true}, property
731 {id: "distance", title: WebInspector.UIString("Distance"), width: "90px", sortable: true}, property
[all …]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DJavascriptAppModalDialog.java36 private JavascriptAppModalDialog(String title, String message, in JavascriptAppModalDialog()
44 public static JavascriptAppModalDialog createAlertDialog(String title, String message, in createAlertDialog()
50 public static JavascriptAppModalDialog createConfirmDialog(String title, String message, in createConfirmDialog()
56 public static JavascriptAppModalDialog createBeforeUnloadDialog(String title, String message, in createBeforeUnloadDialog()
63 public static JavascriptAppModalDialog createPromptDialog(String title, String message, in createPromptDialog()
203 public JavascriptAppAlertDialog(String title, String message, in JavascriptAppAlertDialog()
220 public JavascriptAppConfirmDialog(String title, String message, in JavascriptAppConfirmDialog()
239 public JavascriptAppBeforeUnloadDialog(String title, String message, in JavascriptAppBeforeUnloadDialog()
269 public JavascriptAppPromptDialog(String title, String message, in JavascriptAppPromptDialog()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
Dmodule.json6 "title": "Console", string
13 "title": "Console", string
35 "title": "Log XMLHttpRequests", string
42 "title": "Preserve log upon navigation", string
49 "title": "Show timestamps", string
/external/chromium_org/chrome/browser/resources/net_internals/
Dbandwidth_view.js82 title: 'Original (KB)', property
87 title: 'Received (KB)', property
92 title: 'Savings (KB)', property
99 title: 'Savings (%)', property

12345678910>>...44