HomeSort by relevance Sort by last modified time
    Searched refs:removeEOL (Results 1 - 2 of 2) sorted by null

  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
removeEOL.pl 31 # Unit tests of VCSUtils::removeEOL().
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...]
  /external/webkit/Tools/Scripts/
VCSUtils.pm 75 &removeEOL
445 sub removeEOL($)
501 $_ = removeEOL($_);
514 $svnStatus = removeEOL(<SVN>) . "\n";
    [all...]

Completed in 1350 milliseconds