HomeSort by: relevance | last modified time | path
    Searched refs:less (Results 1 - 25 of 479) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/zstd/dist/programs/
zstdless 5 # TODO: Address quirks and bugs tied to old versions of less, provide a mechanism to pass flags directly to zstd
8 exec less "$@"
  /src/tests/usr.bin/xlint/lint1/
msg_125.c 11 less(action a, action b) function
  /src/external/bsd/less/bin/
Makefile 5 SUBDIR= less lessecho lesskey
  /src/usr.bin/make/unit-tests/
directive-endfor.exp 1 make: directive-endfor.mk:10: for-less endfor
directive-for-if.exp 1 make: directive-for-if.mk:51: if-less endif
3 make: directive-for-if.mk:51: if-less endif
5 make: directive-for-if.mk:51: if-less endif
directive-for-generating-endif.exp 1 make: directive-for-generating-endif.mk:24: if-less endif
3 make: directive-for-generating-endif.mk:24: if-less endif
5 make: directive-for-generating-endif.mk:24: if-less endif
directive-for-errors.exp 3 make: directive-for-errors.mk:13: for-less endfor
6 make: directive-for-errors.mk:29: for-less endfor
directive-else.exp 5 make: directive-else.mk:29: if-less else
directive-if.exp 5 make: directive-if.mk:47: if-less else
7 make: directive-if.mk:51: if-less endif
  /src/external/bsd/less/dist/lesstest/
maketest 6 my $usage = "usage: maketest [-o lt-file] [-l less.exe] [-s lt_screen] [-t lesstest] [-w width] [-h height] [-O lesstest-opts] [-S lt_screen-opts] textfile\n";
18 my $less = ($opt{l} or "../obj/less");
26 if (not less_is_test($less)) {
27 print "$less is not compiled to support LESSTEST\n";
28 my ($dir) = $less =~ m|^(.*)/[^/]*$|;
49 my $cmd = "LINES=$lines COLUMNS=$columns $lesstest $lt_opts $ls_opts -s '$lt_screen' -o '$ltfile' -- $less '$textfile'";
68 my ($less) = @_;
69 my $ver = `$less -V`;
runtest 5 my $usage = "usage: runtest [-eE] [-d lesstest-dir] [-l less.exe] [-r temp-dir] [-s lt_screen] [-t lesstest] [-O lesstest-opts] [file.lt | dir]...\n";
13 my $less;
29 $less = (rfile($opt{l}, $cwd) or "$srcdir/../obj/less");
36 die "cannot execute $less: $!" if not -x $less;
37 die "$less is not compiled to support LESSTEST" if not less_is_test($less);
70 my $cmd = "$lesstest $lt_opts -s '$lt_screen' -t '$file' '$less'";
104 my ($less) = @_
    [all...]
pipeline.c 27 // Exec an instance of less in the current process.
28 static void become_child_less(char* less, int argc, char* const* argv, char* const* envp, const char* tempfile, int less_in_pipe[2], int screen_in_pipe[2]) {
29 if (verbose) fprintf(stderr, "less child: in %d, out %d, close %d,%d\n", less_in_pipe[RD], screen_in_pipe[WR], less_in_pipe[WR], screen_in_pipe[RD]);
36 less_argv[less_argc++] = less;
44 if (verbose) { print_strings("less argv", less_argv); print_strings("less envp", envp); }
45 execve(less, less_argv, envp);
46 fprintf(stderr, "cannot exec %s: %s\n", less, strerror(errno));
100 // the named text file to its basename, and run less on the link.
120 if (verbose) fprintf(stderr, "less out pipe %d,%d\n", pipeline->screen_in_pipe[0], pipeline->screen_in_pipe[1])
127 char* less = argv[0]; local
    [all...]
parse.c 32 static int parse_command(TestSetup* setup, const char* less, const char* line, int line_len) {
35 setup->argv[0] = (char*) less;
109 TestSetup* read_test_setup(FILE* fd, const char* less) {
139 case 'A': // less cmd line parameters
140 if (!parse_command(setup, less, line+1, line_len-1)) {
lesstest.h 73 TestSetup* read_test_setup(FILE* fd, char const* less);
81 int run_testfile(const char* testfile, const char* less);
  /src/external/bsd/less/bin/less/
Makefile 5 PROG= less
17 MLINKS= less.1 more.1 less.1 page.1
18 LINKS= ${BINDIR}/less ${BINDIR}/more ${BINDIR}/less ${BINDIR}/page
  /src/distrib/amiga/floppies/inst-common/
instbin.conf 6 srcdirs bin sbin external/bsd/less/bin usr.bin usr.sbin
9 progs gzip ifconfig init less ln ls mkdir mknod mount mount_cd9660
18 ln less more
  /src/external/bsd/less/
less2netbsd 33 # less2netbsd: Prepare a less source tree for import into the NetBSD
37 # Rough instructions for importing new less release:
40 # $ tar xpfz /new/less/release/tar/file
41 # $ sh /usr/src/external/bsd/less/less2netbsd less-xyz `pwd`
42 # $ cd src/external/bsd/less/dist
43 # $ cvs -d cvs.netbsd.org:/cvsroot import src/external/bsd/less/dist \
44 # GREENWOODSOFTWARE LESS-xyz
47 # $ cd ../../../../../less-xyz
50 # $ cp defines.h /usr/src/external/bsd/less/includ
    [all...]
  /src/external/bsd/bzip2/dist/
bzmore 10 *less) more=less ;;
  /src/usr.bin/gzip/
zmore 26 # Pull out any command line flags so we can pass them to more/less
45 pager=${PAGER-less}
  /src/distrib/evbsh3/rom/ramdiskcommon/
ramdiskbin.conf 40 progs indent ipcrm ipcs join jot kdump ktrace lam last lastcomm leave less
52 special less srcdir external/bsd/less/bin/less
56 ln less more
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
sorting.d 48 Partitions a range according to a binary predicate in three parts (less
52 Partitions a range according to a binary predicate in two parts: less
101 predicate `less`.
111 less = The predicate to sort by.
117 void completeSort(alias less = "a < b", SwapStrategy ss = SwapStrategy.unstable,
118 Lhs , Rhs)(SortedRange!(Lhs, less) lhs, Rhs rhs)
130 auto ub = assumeSorted!less(sortedSoFar).upperBound(rhs[i]);
150 is sorted according to the comparison operation `less`. Performs $(BIGOH r.length)
151 evaluations of `less`.
154 i.e. values for which both `less(a, b)` and `less(b, a)` are false
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
ranges_cmp.h 108 /// ranges::less function object type.
109 struct less struct in namespace:ranges
143 { return less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); }
156 { return !less{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); }
169 { return !less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
ranges_cmp.h 111 /// ranges::less function object type.
112 struct less struct in namespace:ranges
146 { return less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); }
159 { return !less{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); }
172 { return !less{}(std::forward<_Up>(__u), std::forward<_Tp>(__t)); }
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
msgcomm-15 70 # --unique is shorthand for --less-than=2; do we've to test both
72 ${MSGCOMM} --less-than=2 --no-location -o mcomm-test15.out \
msgcomm-22 70 ${MSGCOMM} --less-than=2 -o mcomm-test22.out \

Completed in 62 milliseconds

1 2 3 4 5 6 7 8 91011>>