HomeSort by relevance Sort by last modified time
    Searched refs:title (Results 1 - 25 of 830) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_syswm.cc 30 void QT_SetWMCaption(_THIS, const char *title, const char *icon)
32 SDL_Win->setCaption(title);
SDL_syswm_c.h 27 extern void QT_SetWMCaption(_THIS, const char *title, const char *icon);
  /external/webkit/WebCore/platform/chromium/
ClipboardChromiumLinux.cpp 35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject)
38 return title;
ClipboardChromiumMac.cpp 35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject)
38 return title;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 22 private String title; field in class:Window
25 public Window(String title, int hashCode) {
26 this.title = title;
31 return title;
43 return title;
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssItem.java 24 public String title; field in class:RssItem
29 public RssItem(String url, String title){
31 this.title = title;
35 return title;
  /external/icu4c/samples/layout/
GDIGUISupport.cpp 18 void GDIGUISupport::postErrorMessage(const char *message, const char *title)
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
GUISupport.h 23 virtual void postErrorMessage(const char *message, const char *title) = 0;
gsupport.h 12 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
GDIGUISupport.h 25 virtual void postErrorMessage(const char *message, const char *title);
GnomeGUISupport.h 25 virtual void postErrorMessage(const char *message, const char *title);
GnomeGUISupport.cpp 22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title)
28 s = g_strconcat(title, ":\n", message, NULL);
33 fprintf(stderr, "%s: %s\n", title, message);
  /external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/
generatePatchCommand.pl 37 $title = "generatePatchCommand: Undefined optional arguments.";
42 ok($patchCommand eq "patch -p0", $title);
43 ok($isForcing == 0, $title);
46 $title = "generatePatchCommand: Undefined options.";
52 ok($patchCommand eq "patch -p0", $title);
53 ok($isForcing == 0, $title);
56 $title = "generatePatchCommand: --force and no \"ensure force\".";
61 ok($patchCommand eq "patch -p0 --force", $title);
62 ok($isForcing == 1, $title);
65 $title = "generatePatchCommand: no --force and \"ensure force\"."
    [all...]
  /external/webkit/JavaScriptCore/API/
JSProfilerPrivate.cpp 35 void JSStartProfiling(JSContextRef ctx, JSStringRef title)
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title)
44 profiler->stopProfiling(exec, title->ustring());
  /external/webkit/WebCore/bindings/js/
ScriptProfiler.cpp 37 void ScriptProfiler::start(ScriptState* state, const String& title)
39 JSC::Profiler::profiler()->startProfiling(state, title);
42 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title)
44 return JSC::Profiler::profiler()->stopProfiling(state, title);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 33 CharSequence title; field in class:FolderInfo
  /external/webkit/WebCore/bindings/v8/
ScriptProfile.h 40 static PassRefPtr<ScriptProfile> create(const String& title, unsigned uid)
42 return adoptRef(new ScriptProfile(title, uid));
46 String title() const { return m_title; } function in class:WebCore::ScriptProfile
50 ScriptProfile(const String& title, unsigned uid)
51 : m_title(title)
ScriptProfiler.h 44 static void start(ScriptState* state, const String& title);
45 static PassRefPtr<ScriptProfile> stop(ScriptState* state, const String& title);
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxwm_c.h 31 extern void NX_SetCaption (_THIS, const char * title, const char * icon) ;
  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 37 private final String title; field in class:MessageDialogRunnable
47 String title,
54 title,
70 String title,
75 this.title = title;
87 title,
  /external/grub/docs/
menu.lst 15 title GNU/Hurd
21 title GNU/Linux
27 title GNU/kFreeBSD
32 title GNU/kNetBSD
37 title Utah Mach4 multiboot
44 title FreeBSD
49 title NetBSD
54 title OpenBSD
59 title OS/2
68 title Windows NT / Windows 95 boot men
    [all...]
  /external/webkit/WebCore/notifications/
NotificationContents.h 41 NotificationContents(const String& iconUrl, const String& title, const String& body)
43 , m_title(title)
47 String title() const { return m_title; } function in class:WebCore::NotificationContents
  /external/webkit/WebKit/mac/History/
WebHistoryItem.h 37 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 of the page represented by this item
    [all...]
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssItem.java 21 * title, link, description.
34 public RssItem(CharSequence title, CharSequence link, CharSequence description) {
35 mTitle = title;
60 public void setTitle(CharSequence title) {
61 mTitle = title;
  /external/oprofile/libop/
op_xml_events.h 17 void open_xml_events(char const * title, char const * doc, op_cpu cpu_type);

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>