Searched refs:title (Results 26 - 50 of 1104) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_syswm_c.h29 extern void BE_SetWMCaption(_THIS, const char *title, const char *icon);
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
H A DSDL_cgxwm.c41 void CGX_SetCaption(_THIS, const char *title, const char *icon) argument
44 SetWindowTitles(SDL_Window,(char *)title,NULL);
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/
H A DSDL_nxwm.c33 void NX_SetCaption (_THIS, const char * title, const char * icon) argument
41 GrSetWindowTitle (SDL_Window, title) ;
/external/webkit/Source/JavaScriptCore/API/
H A DJSProfilerPrivate.h43 @param title The title of the profile.
46 JS_EXPORT void JSStartProfiling(JSContextRef ctx, JSStringRef title);
52 @param title The title of the profile.
57 JS_EXPORT void JSEndProfiling(JSContextRef ctx, JSStringRef title);
/external/webkit/Source/WebCore/loader/win/
H A DDocumentLoaderWin.cpp36 void DocumentLoader::setTitle(const String& title) argument
38 String text = title;
/external/webkit/Source/WebCore/platform/chromium/
H A DContextMenuItemChromium.cpp47 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
51 m_platformDescription.title = title;
73 String ContextMenuItem::title() const function in class:WebCore::ContextMenuItem
75 return m_platformDescription.title;
103 void ContextMenuItem::setTitle(const String& title) argument
105 m_platformDescription.title = title;
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuItemQt.cpp43 const String& title, ContextMenu* subMenu)
47 m_platformDescription.title = title;
91 String ContextMenuItem::title() const function in class:WebCore::ContextMenuItem
93 return m_platformDescription.title;
96 void ContextMenuItem::setTitle(const String& title) argument
98 m_platformDescription.title = title;
42 ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
/external/webkit/Source/WebCore/platform/wx/
H A DContextMenuItemWx.cpp45 const String& title, ContextMenu* subMenu)
49 m_platformDescription.title = title;
85 String ContextMenuItem::title() const function in class:ContextMenuItem
87 return m_platformDescription.title;
90 void ContextMenuItem::setTitle(const String& title) argument
92 m_platformDescription.title = title;
44 ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DrunPatchCommand.pl37 $title = "runPatchCommand: Unsuccessful patch, forcing.";
50 ok($exitStatus != 0, $title);
53 $title = "runPatchCommand: New file, --dry-run.";
76 ok($exitStatus == 0, $title);
79 $title = "runPatchCommand: New file: \"$fileToPatch\".";
84 ok($exitStatus == 0, $title);
87 $title = "runPatchCommand: Reverse new file (clean up previous).";
92 ok($exitStatus == 0, $title);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.h34 #define wpa_trace_dump(title, ptr) \
35 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num)
36 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num);
39 void wpa_trace_show(const char *title);
54 #define wpa_trace_dump(title, ptr) do { } while (0)
56 #define wpa_trace_show(title) do { } while (0)
66 void wpa_trace_dump_funcname(const char *title, void *pc);
70 #define wpa_trace_dump_funcname(title, pc) do { } while (0)
/external/wpa_supplicant_8/src/utils/
H A Dtrace.h34 #define wpa_trace_dump(title, ptr) \
35 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num)
36 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num);
39 void wpa_trace_show(const char *title);
54 #define wpa_trace_dump(title, ptr) do { } while (0)
56 #define wpa_trace_show(title) do { } while (0)
66 void wpa_trace_dump_funcname(const char *title, void *pc);
70 #define wpa_trace_dump_funcname(title, pc) do { } while (0)
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.h34 #define wpa_trace_dump(title, ptr) \
35 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num)
36 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num);
39 void wpa_trace_show(const char *title);
54 #define wpa_trace_dump(title, ptr) do { } while (0)
56 #define wpa_trace_show(title) do { } while (0)
66 void wpa_trace_dump_funcname(const char *title, void *pc);
70 #define wpa_trace_dump_funcname(title, pc) do { } while (0)
/external/webkit/Source/WebCore/inspector/front-end/
H A DScopeChainSidebarPane.js49 if (!section.title)
52 this._expandedSections[section.title] = true;
54 delete this._expandedSections[section.title];
63 var title = null;
71 title = WebInspector.UIString("Local");
78 title = WebInspector.UIString("Closure");
83 title = WebInspector.UIString("Catch");
86 title = WebInspector.UIString("With Block");
89 title = WebInspector.UIString("Global");
93 if (!title || titl
[all...]
H A DExtensionPanel.js84 WebInspector.ExtensionSidebarPane = function(title, id)
86 WebInspector.SidebarPane.call(this, title);
91 setObject: function(object, title)
93 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title);
96 setExpression: function(expression, title)
98 RuntimeAgent.evaluate(expression, "extension-watch", false, this._onEvaluate.bind(this, title));
109 _onEvaluate: function(title, error, result)
112 this._setObject(WebInspector.RemoteObject.fromPayload(result), title);
115 _setObject: function(object, title)
118 var section = new WebInspector.ObjectPropertiesSection(object, title, nul
[all...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebContextMenuClient.mm173 NSString *title = [item title];
174 if ([title isEqualToString:contextMenuItemTagOpenLink()])
176 else if ([title isEqualToString:contextMenuItemTagIgnoreGrammar()])
178 else if ([title isEqualToString:contextMenuItemTagSpellingMenu()])
180 else if ([title isEqualToString:contextMenuItemTagShowSpellingPanel(true)]
181 || [title isEqualToString:contextMenuItemTagShowSpellingPanel(false)])
183 else if ([title isEqualToString:contextMenuItemTagCheckSpelling()])
185 else if ([title isEqualToString:contextMenuItemTagCheckSpellingWhileTyping()])
187 else if ([title isEqualToStrin
[all...]
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler.cc12 const string16& title)
15 title_(title) {
21 const string16& title) {
24 return new ProtocolHandler(lower_protocol, url, title);
30 string16 title; local
33 value->GetString("title", &title);
34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title);
48 d->Set("title", Value::CreateStringValue(title_));
10 ProtocolHandler(const std::string& protocol, const GURL& url, const string16& title) argument
18 CreateProtocolHandler( const std::string& protocol, const GURL& url, const string16& title) argument
H A Dprotocol_handler.h14 // A single tuple of (protocol, url, title) that indicates how URLs of the
21 const string16& title);
33 string16 title() const { return title_; } function in class:ProtocolHandler
40 const string16& title);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfiler.h57 static void start(ScriptState* state, const String& title);
58 static PassRefPtr<ScriptProfile> stop(ScriptState* state, const String& title);
59 static PassRefPtr<ScriptHeapSnapshot> takeHeapSnapshot(const String& title, HeapSnapshotProgress*);
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.h37 either the item's title, alternate title, url strings, or last visited interval
56 @method initWithURLString:title:lastVisitedTimeInterval:
58 @param title The title to use for the item. This is normally the <title> of a page.
66 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time;
87 @method title
88 @abstract The title o
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebNavigationData.h38 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
40 - (NSString *)title;
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
H A DSDL_macwm_c.h27 extern void Mac_SetCaption(_THIS, const char *title, const char *icon);
/external/skia/src/views/
H A DSkOSMenu.cpp5 SkOSMenu::SkOSMenu(const char title[]) argument
7 fTitle = title;
19 void SkOSMenu::appendItem(const char title[], const char eventType[], int32_t eventData) argument
23 item->fTitle = title;
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileChooserParams.h45 // |title| is a title of a file chooser dialog. It can be an empty string.
46 WebString title; member in struct:WebKit::WebFileChooserParams
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification_factory.h23 const GURL& icon, const string16& title,
29 const GURL& icon, const string16& title,
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_unittest_helper.h18 // |title|, otherwise nil. This does not recurse into folders.
19 - (BookmarkButton*)buttonWithTitleEqualTo:(NSString*)title;
27 // |title|, otherwise nil. This does not recurse into subfolders.
28 - (BookmarkButton*)buttonWithTitleEqualTo:(NSString*)title;

Completed in 503 milliseconds

1234567891011>>