Home | History | Annotate | Download | only in _vendor

Lines Matching defs:ParseExpression

99 'ParseBaseException', 'ParseElementEnhance', 'ParseException', 'ParseExpression', 'ParseFatalException',

3215 class ParseExpression(ParserElement):
3220 super(ParseExpression,self).__init__(savelist)
3259 super( ParseExpression, self).ignore( other )
3263 super( ParseExpression, self).ignore( other )
3270 return super(ParseExpression,self).__str__()
3279 super(ParseExpression,self).streamline()
3313 ret = super(ParseExpression,self).setResultsName(name,listAllMatches)
3323 ret = super(ParseExpression,self).copy()
3327 class And(ParseExpression):
3329 Requires all given C{ParseExpression}s to be found in the given order.
3403 class Or(ParseExpression):
3405 Requires that at least one C{ParseExpression} is found.
3482 class MatchFirst(ParseExpression):
3484 Requires that at least one C{ParseExpression} is found.
3550 class Each(ParseExpression):
3552 Requires all given C{ParseExpression}s to be found, but in any order.
4187 Abstract subclass of C{ParseExpression}, for converting parsed results.