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

1234567891011>>

/external/chromium_org/third_party/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.15/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/chromium_org/ui/base/ime/
H A Dinfolist_entry.cc9 InfolistEntry::InfolistEntry(const base::string16& title, argument
11 : title(title), body(body), highlighted(false) {}
14 return title == other.title && body == other.body &&
/external/chromium_org/third_party/icu/source/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);
/external/icu/icu4c/source/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);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DMessageInfoBar.java19 * @param title the text displayed in the infobar
21 public MessageInfoBar(CharSequence title) { argument
22 this(null, 0, title);
29 * @param title The text to display in the infobar.
32 CharSequence title) {
33 super(listener, iconResourceId, title);
31 MessageInfoBar(InfoBarListeners.Dismiss listener, int iconResourceId, CharSequence title) argument
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dselect_file_dialog_util.cc15 base::string16 title; local
18 // Full page file manager doesn't need a title.
22 title = l10n_util::GetStringUTF16(
27 title = l10n_util::GetStringUTF16(
32 title = l10n_util::GetStringUTF16(
37 title = l10n_util::GetStringUTF16(
42 title = l10n_util::GetStringUTF16(
50 return title;
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dslice_view.js12 * title. If not registered, the default slice viewing logic is used.
48 SliceView.register = function(title, viewConstructor) {
49 if (SliceView.titleToViewInfoMap[title])
50 throw new Error('Handler already registerd for ' + title);
51 SliceView.titleToViewInfoMap[title] = {
56 SliceView.unregister = function(title) {
57 if (SliceView.titleToViewInfoMap[title] === undefined)
58 throw new Error(title + ' not registered');
59 delete SliceView.titleToViewInfoMap[title];
62 SliceView.getViewInfo = function(title) {
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dkfunc_parser_test.js38 assertEquals('sys_write', slices[0].title);
41 assertEquals('sys_write', slices[1].title);
42 assertEquals('sys_write (cont.)', slices[2].title);
45 assertEquals('sys_write', slices[3].title);
46 assertEquals('dequeueBuffer', slices[4].title);
47 assertEquals('sys_write (cont.)', slices[5].title);
50 assertEquals('sys_write', slices[6].title);
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dtrace_model_event.js18 function TraceModelEvent(category, title, colorId, start, args) {
20 this.title = title;
/external/chromium_org/chrome/browser/importer/
H A Dimporter_unittest_utils.cc13 ASSERT_EQ(base::WideToUTF16(expected.title), entry.title);
14 ASSERT_EQ(expected.in_toolbar, entry.in_toolbar) << entry.title;
15 ASSERT_EQ(expected.path_size, entry.path.size()) << entry.title;
16 ASSERT_EQ(expected.url, entry.url.spec()) << entry.title;
19 entry.path[i]) << entry.title;
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager_browsertest_util.h25 base::string16 MatchTab(const char* title); // "Tab: " + title
28 base::string16 MatchExtension(const char* title); // "Extension: " + title
30 base::string16 MatchApp(const char* title); // "App: " + title
32 base::string16 MatchWebView(const char* title); // "WebView: " + title
34 base::string16 MatchBackground(const char* title); // "Background: " + title
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxwm_c.h31 extern void NX_SetCaption (_THIS, const char * title, const char * icon) ;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dprogress.c6 const char *title __maybe_unused)
17 void ui_progress__update(u64 curr, u64 total, const char *title) argument
19 return progress_fns->update(curr, total, title);
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacro.java31 private String title; field in class:Macro
37 return title;
40 public void setTitle(String title) { argument
41 this.title = title;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DOverridesUI.js83 selectDeviceOption.device = {title: WebInspector.UIString("<Select model>"), width: 0, height: 0, deviceScaleFactor: 0, userAgent: "", touch: false, mobile: false};
105 var option = new Option(devices[i].title, devices[i].title);
119 return device1.title < device2.title ? -1 : (device1.title > device2.title ? 1 : 0);
131 * @param {string} title
133 function saveDevicePreset(title)
135 if (!title)
[all...]
/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/chromium_org/content/common/
H A Dset_process_title.cc41 std::string title; local
52 // use the path it points at for our process title. Note that this is only for
58 title = target.value();
62 if (EndsWith(title, kDeletedSuffix, true))
63 title.resize(title.size() - kDeletedSuffix.size());
69 prctl(PR_SET_NAME, base::FilePath(title).BaseName().value().c_str());
75 if (!title.empty())
76 title += " ";
77 title
[all...]

Completed in 486 milliseconds

1234567891011>>