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

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosvideo.h51 char title[256]; member in struct:SDL_PrivateVideoData
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11wm_c.h27 extern void X11_SetCaptionNoLock(_THIS, const char *title, const char *icon);
28 extern void X11_SetCaption(_THIS, const char *title, const char *icon);
/external/srec/tools/grxmlcompile/
H A Dgrph.h29 title= new char [count+1];
30 strcpy (title, name);
40 delete [] title;
70 char *title; member in class:Graph
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DProgress.js51 * @param {string} title
53 setTitle: function(title) { },
57 * @param {string=} title
59 setWorked: function(worked, title) { },
165 * @param {string} title
167 setTitle: function(title)
169 this._composite._parent.setTitle(title);
190 * @param {string=} title
192 setWorked: function(worked, title)
195 if (typeof title !
[all...]
/external/chromium_org/extensions/renderer/
H A Ddom_activity_logger.cc65 const WebString& title) {
68 title,
76 const WebString& title) {
77 logSetter(api_name, new_value, v8::Handle<v8::Value>(), url, title);
84 const WebString& title) {
91 api_name_utf8, url, title, DomActionType::SETTER, args.Pass());
98 const WebString& title) {
104 api_name_utf8, url, title, DomActionType::METHOD, args.Pass());
111 const WebString& title) {
117 event_name_utf8, url, title, DomActionTyp
63 logGetter(const WebString& api_name, const WebURL& url, const WebString& title) argument
73 logSetter(const WebString& api_name, const v8::Handle<v8::Value>& new_value, const WebURL& url, const WebString& title) argument
80 logSetter(const WebString& api_name, const v8::Handle<v8::Value>& new_value, const v8::Handle<v8::Value>& old_value, const WebURL& url, const WebString& title) argument
94 logMethod(const WebString& api_name, int argc, const v8::Handle<v8::Value>* argv, const WebURL& url, const WebString& title) argument
107 logEvent(const WebString& event_name, int argc, const WebString* argv, const WebURL& url, const WebString& title) argument
[all...]
H A Ddom_activity_logger.h53 const blink::WebString& title);
57 const blink::WebString& title);
62 const blink::WebString& title);
67 const blink::WebString& title);
72 const blink::WebString& title);
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A DrootUi.js48 this.showDialog = function(content, title) {
50 title = title || '';
60 dialog.dialog({modal: true, title: title, height:'auto', width:'auto'});
/external/chromium_org/ui/message_center/
H A Dnotification.cc17 NotificationItem::NotificationItem(const base::string16& title, argument
19 : title(title),
23 ButtonInfo::ButtonInfo(const base::string16& title) argument
24 : title(title) {
53 const base::string16& title,
62 title_(title),
132 const base::string16& title,
141 title,
51 Notification(NotificationType type, const std::string& id, const base::string16& title, const base::string16& message, const gfx::Image& icon, const base::string16& display_source, const NotifierId& notifier_id, const RichNotificationData& optional_fields, NotificationDelegate* delegate) argument
130 CreateSystemNotification( const std::string& notification_id, const base::string16& title, const base::string16& message, const gfx::Image& icon, const std::string& system_component_id, const base::Closure& click_callback) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenu.java27 public MenuItem add(CharSequence title) { argument
28 return add(0, 0, 0, title);
37 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
41 menuItem.setTitle(title);
51 public SubMenu addSubMenu(CharSequence title) { argument
55 menuItem.setTitle(title);
71 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) { argument
76 menuItem.setTitle(title);
173 public TestMenuItem findMenuItem(CharSequence title) { argument
176 if (menuItem.getTitle().equals(title)) {
[all...]
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dkeyword_editor_controller.cc28 int KeywordEditorController::AddTemplateURL(const base::string16& title, argument
36 table_model_->Add(new_index, title, keyword, url);
42 const base::string16& title,
54 if ((template_url->short_name() == title) &&
58 table_model_->ModifyTemplateURL(index, title, keyword, url);
41 ModifyTemplateURL(TemplateURL* template_url, const base::string16& title, const base::string16& keyword, const std::string& url) argument
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Ddocument_renderer.py13 '''Performs document-level rendering such as the title, references,
15 replacing the $(title), $(ref:...) and $(table_of_contents) tokens with them.
20 higher-level document concepts like the title and TOC, then performing string
22 the concept. Currently title and table_of_contents are supported.
35 API page. The title is set to the name of the node.
37 $(ref:api.node Title) - Same as the previous form, but title is set
69 title = ref_parts[0] if len(ref_parts) == 1 else ref_parts[1]
78 title=title,
97 |render_title|: boolean representing whether or not to render a title
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dinput_helpers.h32 InputBuilder(const std::string& title,
55 // Prints additional info after the title.
56 InputBuilder& WithAdditionalInfo(const std::string& title);
75 bool HasOverrideFor(const std::string& title) const;
76 const std::string& GetOverrideFor(const std::string& title) const;
112 InputBuilder TypedInput(const std::string& title);
H A Dinput_helpers.cc27 " Overrides are specified as \"title=option text\" for choices and "
28 "\"title=value\" for regular inputs. Note that the program will stop if "
40 InputBuilder::InputBuilder(const std::string& title, argument
44 override_registry_(override_registry), default_value_(""), title_(title) {
137 bool OverrideRegistry::HasOverrideFor(const std::string& title) const {
138 return overrides_.find(title) != overrides_.end();
142 const std::string& title) const {
143 assert(HasOverrideFor(title));
144 return (*overrides_.find(title)).second;
147 InputBuilder TypedInput(const std::string& title) { argument
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_bookmark.cpp57 CFX_WideString title = pString->GetUnicodeText(); local
58 FX_LPWSTR buf = title.LockBuffer();
59 int len = title.GetLength(), i;
64 title.ReleaseBuffer(len);
65 return title;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DStatusBarButton.js92 /** @type {!Array.<!{element: !Element, counter: string, value: number, title: string}>} */
98 this._counters.push({counter: counters[i], element: element, value: 0, title: ""});
107 * @param {string} title
109 setCounter: function(counter, value, title)
114 this._counters[i].title = title;
124 var title = "";
136 if (counter.title) {
137 if (title)
138 title
[all...]
/external/clang/www/
H A Dmake_cxx_dr_status17 def __init__(self, section, issue, url, status, title):
18 self.section, self.issue, self.url, self.status, self.title = \
19 section, issue, url, status, title
21 return '%s (%s): %s' % (self.issue, self.status, self.title)
24 section, issue_link, status, title = [
31 title = title.replace('<issue_title>', '').replace('</issue_title>', '').strip()
32 return DR(section, issue, url, status, title)
58 <title>Clang - C++ Defect Report Status</title>
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A DplotJitterEstimate.m9 plot(x, slopes(x, 1).*(framestats(x, 1) - framestats(x, 2)) + 3*sqrt(randJitters(x,2)), 'b'); title('Estimate ms');
14 plot(x, slopes(x, 1)); title('Line slope');
16 %plot(x, slopes(x, 2)); title('Line offset');
18 plot(x, framestats); plot(x, framedata(x, 1)); title('frame size and average frame size');
20 plot(x, framedata(x, 2)); title('Delay');
24 plot(x, randJitters(x,2)); title('Random jitter');
35 title('theta(1)*x+theta(2), (dT-dTS)/dL');
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineUIUtilsImpl.js124 * @param {string=} title
127 createEventDivider: function(recordType, title)
129 return WebInspector.TimelineUIUtilsImpl._createEventDivider(recordType, title);
189 * @return {!Object.<string, !{title: string, category: !WebInspector.TimelineCategory}>}
200 recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] };
201 recordStyles[recordTypes.Program] = { title: WebInspector.UIString("Other"), category: categories["other"] };
202 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: categories["scripting"] };
203 recordStyles[recordTypes.BeginFrame] = { title: WebInspector.UIString("Frame Start"), category: categories["rendering"] };
204 recordStyles[recordTypes.ScheduleStyleRecalculation] = { title: WebInspector.UIString("Schedule Style Recalculation"), category: categories["rendering"] };
205 recordStyles[recordTypes.RecalculateStyles] = { title
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dgesture_parser_test.js110 gestureThread.sliceGroup.slices[0].title);
114 gestureThread.sliceGroup.slices[2].title);
118 gestureThread.sliceGroup.slices[7].title);
/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc26 const base::string16& title,
32 data->SetURL(url, title);
33 SetDragImage(url, title, icon, press_pt, data, widget);
37 const base::string16& title,
44 title.empty() ? base::UTF8ToUTF16(url.spec())
45 : title);
25 SetURLAndDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
36 SetDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
/external/openfst/src/include/fst/script/
H A Ddraw.h40 const string& title; member in struct:fst::script::FstDrawerArgs
58 const string &title,
71 title(title), width(width), height(height), portrait(portrait),
83 args->accep, args->title, args->width,
96 const string &title,
53 FstDrawerArgs(const FstClass &fst, const SymbolTable *isyms, const SymbolTable *osyms, const SymbolTable *ssyms, bool accep, const string &title, float width, float height, bool portrait, bool vertical, float ranksep, float nodesep, int fontsize, int precision, bool show_weight_one, ostream *ostrm, const string &dest) argument
/external/chromium_org/win8/viewer/
H A Dmetro_viewer_process_host.cc177 const base::string16& title,
183 instance_->HandleOpenFileImpl(title, default_path, filter, on_success,
190 const base::string16& title,
196 instance_->HandleOpenMultipleFilesImpl(title, default_path, filter,
203 const base::string16& title,
211 instance_->HandleSaveFileImpl(title, default_path, filter, filter_index,
218 const base::string16& title,
222 instance_->HandleSelectFolderImpl(title, on_success, on_failure);
226 const base::string16& title,
238 Send(new MetroViewerHostMsg_DisplayFileOpen(title, filte
176 HandleOpenFile( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, const OpenFileCompletion& on_success, const FileSelectionCanceled& on_failure) argument
189 HandleOpenMultipleFiles( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, const OpenMultipleFilesCompletion& on_success, const FileSelectionCanceled& on_failure) argument
202 HandleSaveFile( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, int filter_index, const base::string16& default_extension, const SaveFileCompletion& on_success, const FileSelectionCanceled& on_failure) argument
217 HandleSelectFolder( const base::string16& title, const SelectFolderCompletion& on_success, const FileSelectionCanceled& on_failure) argument
225 HandleOpenFileImpl( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, const OpenFileCompletion& on_success, const FileSelectionCanceled& on_failure) argument
242 HandleOpenMultipleFilesImpl( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, const OpenMultipleFilesCompletion& on_success, const FileSelectionCanceled& on_failure) argument
258 HandleSaveFileImpl( const base::string16& title, const base::FilePath& default_path, const base::string16& filter, int filter_index, const base::string16& default_extension, const SaveFileCompletion& on_success, const FileSelectionCanceled& on_failure) argument
282 HandleSelectFolderImpl( const base::string16& title, const SelectFolderCompletion& on_success, const FileSelectionCanceled& on_failure) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser.c21 char *title; member in struct:browser_context
42 ctx->title ? ctx->title :
48 ctx->title ? ctx->title : "Hotspot 2.0 client");
125 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, argument
128 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title,
141 const char *title,
144 wpa_printf(MSG_DEBUG, "BROWSER:%s title
140 view_cb_title_changed(WebKitWebView *view, WebKitWebFrame *frame, const char *title, struct browser_context *ctx) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbrowser.c21 char *title; member in struct:browser_context
42 ctx->title ? ctx->title :
48 ctx->title ? ctx->title : "Hotspot 2.0 client");
125 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, argument
128 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title,
141 const char *title,
144 wpa_printf(MSG_DEBUG, "BROWSER:%s title
140 view_cb_title_changed(WebKitWebView *view, WebKitWebFrame *frame, const char *title, struct browser_context *ctx) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser.c21 char *title; member in struct:browser_context
42 ctx->title ? ctx->title :
48 ctx->title ? ctx->title : "Hotspot 2.0 client");
125 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, argument
128 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title,
141 const char *title,
144 wpa_printf(MSG_DEBUG, "BROWSER:%s title
140 view_cb_title_changed(WebKitWebView *view, WebKitWebFrame *frame, const char *title, struct browser_context *ctx) argument
[all...]

Completed in 2571 milliseconds

1234567891011>>