Lines Matching refs:inline

100 	atf_check -o inline:"pmatch\n" grep -Eow "(match )?pmatch" test1
226 atf_check -o inline:"foo bar\n" zgrep -we foo test
228 atf_check -o inline:"foo bar\n" zgrep -wefoo test < /dev/null
241 atf_check -o inline:"foo bar\n" zgrep -e 'foo bar' test < /dev/null
242 atf_check -o inline:"foo bar\n" zgrep --regexp='foo bar' test < /dev/null
256 atf_check -o inline:"foobar\n" zgrep -f pattern test </dev/null
257 atf_check -o inline:"foobar\n" zgrep --file=pattern test </dev/null
269 atf_check -o inline:"foobar\n" zgrep -e foo --ignore-case < test
281 atf_check -o inline:"foobar\n" zgrep -e foo -e xxx test
293 atf_check -o inline:"foobar\n" zgrep -e '' test
469 atf_check -o inline:"\n" grep -e "^$" test1
471 atf_check -o inline:"Eggs\nCheese\n" grep -v -e "^$" test1
519 atf_check -o not-inline:"${total}" cat xpositive.count
520 atf_check -o not-inline:"${total}" cat xnegative.count
593 atf_check -o inline:"Foo\n" fgrep -e "Foo" test1
608 atf_check -o inline:"Foo\n" egrep -o -e "F.." test1
610 atf_check -o inline:"Foobar\n" egrep -o -e "F[a-z]*" test1
612 atf_check -o inline:"Fo\n" egrep -o -e "F(o|p)" test1
614 atf_check -o inline:"(ed)\n" egrep -o -e "\(ed\)" test1
616 atf_check -o inline:"M\n" egrep -o -e "M{1}" test2
618 atf_check -o inline:"M{1}\n" egrep -o -e "M\{1\}" test2
631 atf_check -o inline:"Foo\n" grep -o -e "F.." test1
633 atf_check -o inline:"Foobar\n" grep -o -e "F[a-z]*" test1
635 atf_check -o inline:"Fo\n" grep -o -e "F\(o\)" test1
637 atf_check -o inline:"(ed)\n" grep -o -e "(ed)" test1
639 atf_check -o inline:"M{1}\n" grep -o -e "M{1}" test2
641 atf_check -o inline:"M\n" grep -o -e "M\{1\}" test2
676 atf_check -o inline:"1:1:xx\n" grep -bon "xx$" test1
678 atf_check -o inline:"2:4:yyyy\n" grep -bn "yy" test1
680 atf_check -o inline:"2:6:yy\n" grep -bon "yy$" test1
710 atf_check -o inline:"1\n" grep -c -C 1 -e "B" test1
711 atf_check -o inline:"1\n" grep -c -B 1 -e "B" test1
712 atf_check -o inline:"1\n" grep -c -A 1 -e "B" test1
713 atf_check -o inline:"1\n" grep -c -C 1 -e "B" test1
715 atf_check -o inline:"test1\n" grep -l -e "B" test1
716 atf_check -o inline:"test1\n" grep -l -B 1 -e "B" test1
717 atf_check -o inline:"test1\n" grep -l -A 1 -e "B" test1
718 atf_check -o inline:"test1\n" grep -l -C 1 -e "B" test1
720 atf_check -o inline:"test1\n" grep -L -e "D" test1
762 atf_check -o inline:"${binmatchtext}" grep 'B' test1
763 atf_check -o inline:"${binmatchtext}" grep 'B' -C 1 test1
765 atf_check -o inline:"${binmatchtext}" grep -U 'B' test1
766 atf_check -o inline:"${binmatchtext}" grep -U 'B' -C 1 test1
769 atf_check -o inline:"A\000B\000C\n" grep -a 'B' test1
770 atf_check -o inline:"A\000B\000C\n" grep -a 'B' -C 1 test1
773 atf_check -o inline:"\000B\n" grep -a 'B' test2
774 atf_check -o inline:"A\n\000B\n\000C\n" grep -a 'B' -C 1 test2
780 atf_check -o inline:"${binmatchtext}" grep --binary-files=binary 'B' test1
781 atf_check -o inline:"A\000B\000C\n" grep --binary-files=text 'B' test1
799 atf_check -s exit:0 -o inline:"B\n" grep --mmap -oe "B" test1
814 atf_check -o inline:"test2:A\ntest3:A\ntest3:B\n" grep "" test1 test2 test3
815 atf_check -o inline:"test3:A\ntest3:B\ntest2:A\n" grep "" test3 test1 test2
816 atf_check -o inline:"test2:A\ntest3:A\ntest3:B\n" grep "" test2 test3 test1
830 atf_check -o inline:"Foo\nBaz\n" grep -F -e "Foo" -e "Baz" test1
831 atf_check -o inline:"Foo\nBaz\n" grep -F -e "Baz" -e "Foo" test1
832 atf_check -o inline:"Bar\nBaz\n" grep -F -e "Bar" -e "Baz" test1
844 atf_check -o inline:"Foo\nBaz\n" grep -Fi -e "foo" -e "baz" test1
845 atf_check -o inline:"Foo\nBaz\n" grep -Fi -e "baz" -e "foo" test1
846 atf_check -o inline:"Bar\nBaz\n" grep -Fi -e "bar" -e "baz" test1
847 atf_check -o inline:"Bar\nBaz\n" grep -Fi -e "BAR" -e "bAz" test1
859 atf_check -o inline:"a\n" grep -Fo "a" test1
860 atf_check -o inline:"i\n" grep -Fo "i" test1
861 atf_check -o inline:"abc\n" grep -Fo "abc" test1
862 atf_check -o inline:"fgh\n" grep -Fo "fgh" test1
863 atf_check -o inline:"cde\n" grep -Fo "cde" test1
864 atf_check -o inline:"bcd\n" grep -Fo -e "bcd" -e "cde" test1
865 atf_check -o inline:"bcd\nefg\n" grep -Fo -e "bcd" -e "efg" test1
883 atf_check -o inline:"1\n" grep -Ec "a" test1
884 atf_check -o inline:"2\n" grep -Ec "a|b" test1
885 atf_check -o inline:"3\n" grep -Ec "a|b|c" test1
887 atf_check -o inline:"test1:2\n" grep -EHc "a|b" test1
899 atf_check -o inline:"1\n" grep -m 1 -Ec "a" test1
900 atf_check -o inline:"2\n" grep -m 2 -Ec "a|b" test1
901 atf_check -o inline:"3\n" grep -m 3 -Ec "a|b|c|f" test1
903 atf_check -o inline:"test1:2\n" grep -m 2 -EHc "a|b|e|f" test1
916 atf_check -o inline:"foo\nfoo\n" grep -A1 -m1 foo test1
919 atf_check -o inline:"1:foo\n2-foo\n" grep -A1 -nm1 foo test1
931 atf_check -o inline:"test1:foo\ntest2:foo\n" zgrep foo test1 test2
934 atf_check -o inline:"test2:foo\n" zgrep foo test1 test2
951 atf_check -o inline:"tester1/test:foobar\n" zgrep -r foo tester1
956 atf_check -o inline:"tester2/test1:foobar\ntester2/test2:foobar\n" zgrep -r foo tester2