Lines Matching refs:BRE
854 A I<Basic Regular Expression> (BRE), as defined in POSIX 1003.2, consists
860 The possible atoms of a BRE are: B<.>, matching any single character;
877 An unescaped backslash cannot be last in a BRE.
881 The BRE bounds are: B<*>, specifying 0 or more matches of the preceding
887 A bound appearing as the first item in a BRE is taken literally.
953 # bre2p - convert BRE to Perl RE
1139 } elsif( $c =~ /[|+?{}()]/ ){ ## not magic in BRE, but in Perl: \-quote
1869 A `[' in a BRE indicates the beginning of a I<bracket expression>.
1873 A `\' in a BRE is used to make the subsequent character literal.
1897 The BRE and substitution may not be delimited with `\' or newline.
1904 in the BRE.
1959 A BRE contains an unterminated bracket expression.
1963 A BRE contains an unterminated backreference.
1967 A BRE contains an unterminated bounds specification.