Home | History | Annotate | Download | only in Core

Lines Matching refs:re

29 // Constructor that compiles "re" using "flags" and stores the
32 RegularExpression::RegularExpression(const char* re, int flags) :
39 Compile(re);
43 // Constructor that compiles "re" using "flags" and stores the
46 RegularExpression::RegularExpression(const char* re) :
53 Compile(re);
95 RegularExpression::Compile(const char* re)
97 return Compile (re, m_compile_flags);
101 RegularExpression::Compile(const char* re, int flags)
106 if (re && re[0])
108 m_re = re;
109 m_comp_err = ::regcomp (&m_preg, re, flags);