Searched refs:title (Results 1 - 25 of 1104) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DremoveEOL.pl36 my $title;
39 $title = "removeEOL: Undefined argument.";
40 ok(removeEOL(undef) eq "", $title);
43 $title = "removeEOL: Line with Windows line ending.";
44 ok(removeEOL("This line ends with a Windows line ending.\r\n") eq "This line ends with a Windows line ending.", $title);
47 $title = "removeEOL: Line with Unix line ending.";
48 ok(removeEOL("This line ends with a Unix line ending.\n") eq "This line ends with a Unix line ending.", $title);
51 $title = "removeEOL: Line with Mac line ending.";
52 ok(removeEOL("This line ends with a Mac line ending.\r") eq "This line ends with a Mac line ending.", $title);
55 $title
[all...]
H A DparseFirstEOL.pl27 my $title;
30 $title = "parseFirstEOL: Empty string.";
31 ok(!defined(firstEOLInString("")), $title);
34 $title = "parseFirstEOL: Line without a line ending character";
35 ok(!defined(firstEOLInString("This line doesn't have a line ending character.")), $title);
38 $title = "parseFirstEOL: Line with Windows line ending.";
39 ok(firstEOLInString("This line ends with a Windows line ending.\r\n") eq "\r\n", $title);
42 $title = "parseFirstEOL: Line with Unix line ending.";
43 ok(firstEOLInString("This line ends with a Unix line ending.\n") eq "\n", $title);
46 $title
[all...]
H A DgeneratePatchCommand.pl37 $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
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
H A DSDL_syswm.cc30 void QT_SetWMCaption(_THIS, const char *title, const char *icon) argument
32 SDL_Win->setCaption(title);
H A DSDL_syswm_c.h27 extern void QT_SetWMCaption(_THIS, const char *title, const char *icon);
/external/webkit/Source/WebCore/inspector/front-end/
H A DResourceCategory.js29 WebInspector.ResourceCategory = function(name, title, color)
32 this.title = title;
39 return this.title;
/external/webkit/Source/WebCore/platform/chromium/
H A DClipboardChromiumLinux.cpp35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
38 return title;
H A DClipboardChromiumMac.cpp35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
38 return title;
/external/icu4c/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
H A Dgsupport.h12 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
H A DGnomeGUISupport.cpp22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) argument
28 s = g_strconcat(title, ":\n", message, NULL);
33 fprintf(stderr, "%s: %s\n", title, message);
H A DGDIGUISupport.h25 virtual void postErrorMessage(const char *message, const char *title);
H A DGUISupport.h23 virtual void postErrorMessage(const char *message, const char *title) = 0;
H A DGnomeGUISupport.h25 virtual void postErrorMessage(const char *message, const char *title);
/external/webkit/Source/JavaScriptCore/API/
H A DJSProfilerPrivate.cpp35 void JSStartProfiling(JSContextRef ctx, JSStringRef title) argument
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title) argument
44 profiler->stopProfiling(exec, title->ustring());
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/
H A DSDL_nxwm_c.h31 extern void NX_SetCaption (_THIS, const char * title, const char * icon) ;
/external/proguard/src/proguard/gui/
H A DMessageDialogRunnable.java37 private final String title; field in class:MessageDialogRunnable
47 String title,
54 title,
70 String title,
75 this.title = title;
87 title,
45 showMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
68 MessageDialogRunnable(Component parentComponent, Object message, String title, int messageType) argument
/external/grub/docs/
H A Dmenu.lst15 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 Window
[all...]
/external/webkit/Source/WebCore/notifications/
H A DNotificationContents.h41 NotificationContents(const KURL& iconUrl, const String& title, const String& body) argument
43 , m_title(title)
47 String title() const { return m_title; } function in class:WebCore::NotificationContents
/external/webkit/Source/WebKit2/Shared/
H A DWebNavigationDataStore.h40 encoder->encode(title);
47 if (!decoder->decode(store.title))
54 String title; member in struct:WebKit::WebNavigationDataStore
/external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/
H A Dcontent_script.js8 "title": document.title,
/external/oprofile/libop/
H A Dop_xml_events.h17 void open_xml_events(char const * title, char const * doc, op_cpu cpu_type);
/external/webkit/Source/WebCore/bindings/js/
H A DScriptProfiler.cpp44 void ScriptProfiler::start(ScriptState* state, const String& title) argument
46 JSC::Profiler::profiler()->startProfiling(state, stringToUString(title));
49 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
51 RefPtr<JSC::Profile> profile = JSC::Profiler::profiler()->stopProfiling(state, stringToUString(title));
/external/webkit/Source/WebKit/mac/WebView/
H A DWebNavigationData.mm32 NSString *title;
46 [title release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
63 _private->title = [title retain];
77 - (NSString *)title
79 return _private->title;
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Diterate.cs5 <?cs var:result.title ?> ---> <?cs var:result.url ?>

Completed in 620 milliseconds

1234567891011>>