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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
removeEOL.pl 36 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 = "removeEOL: Line with a mix of line endings."
    [all...]
parseFirstEOL.pl 27 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 = "parseFirstEOL: Line with Mac line ending."
    [all...]
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...]
  /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/chromium_org/ui/base/ime/
infolist_entry.cc 9 InfolistEntry::InfolistEntry(const base::string16& title,
11 : title(title), body(body), highlighted(false) {}
14 return title == other.title && body == other.body &&
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
MessageInfoBar.java 19 * @param title the text displayed in the infobar
21 public MessageInfoBar(CharSequence title) {
22 this(null, 0, title);
29 * @param title The text to display in the infobar.
32 CharSequence title) {
33 super(listener, iconResourceId, title);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
select_file_dialog_util.cc 15 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_org/chrome/browser/importer/
importer_unittest_utils.cc 13 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/
task_manager_browsertest_util.h 25 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/chromium_org/printing/
printing_utils.h 13 // Simplify title to resolve issue with some drivers.
15 const base::string16& title);
  /device/asus/deb/dumpstate/
dumpstate.c 23 char path[64], title[32]; local
25 sprintf(title, "KS BRIDGE LOG#%d", i);
26 dump_file(title, path);
  /device/asus/flo/dumpstate/
dumpstate.c 23 char path[64], title[32]; local
25 sprintf(title, "KS BRIDGE LOG#%d", i);
26 dump_file(title, path);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
progress.c 6 const char *title __maybe_unused)
17 void ui_progress__update(u64 curr, u64 total, const char *title)
19 return progress_fns->update(curr, total, title);

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011>>