Lines Matching refs:ParamList

19 from .parserutils import Comp, Param, ParamList
407 GraphOrDefault = ParamList('graph', Keyword(
408 'DEFAULT')) | Optional(Keyword('GRAPH')) + ParamList('graph', iri)
444 PathNegatedPropertySet = Comp('PathNegatedPropertySet', ParamList('part', PathOneInPropertySet) | '…
445ParamList('part', PathOneInPropertySet) + ZeroOrMore('|' + ParamList('part', PathOneInPropertySet)…
460 PathSequence = Comp('PathSequence', ParamList('part', PathEltOrInverse) +
461 ZeroOrMore('/' + ParamList('part', PathEltOrInverse)))
465 PathAlternative = Comp('PathAlternative', ParamList('part', PathSequence) +
466 ZeroOrMore('|' + ParamList('part', PathSequence)))
536 TriplesTemplate <<= (ParamList('triples', TriplesSameSubject) + Optional(
544 Quads = Comp('Quads', Optional(TriplesTemplate) + ZeroOrMore(ParamList(
560 TriplesBlock <<= (ParamList('triples', TriplesSameSubjectPath) + Optional(
569 GroupOrUnionGraphPattern = Comp('GroupOrUnionGraphPattern', ParamList(
570 …'graph', GroupGraphPattern) + ZeroOrMore(Keyword('UNION') + ParamList('graph', GroupGraphPattern)))
735 ParamList('expr', Expression)) + ')'
762 …plicativeExpression', Param('expr', UnaryExpression) + ZeroOrMore(ParamList('op', '*') + ParamList(
763 …'other', UnaryExpression) | ParamList('op', '/') + ParamList('other', UnaryExpression))).setEvalFn…
775 … ZeroOrMore(ParamList('op', '+') + ParamList('other', MultiplicativeExpression) |
776ParamList('op', '-') + ParamList('other', MultiplicativeExpression))).setEvalFn(op.AdditiveExpress…
799 '&&' + ParamList('other', ValueLogical))).setEvalFn(op.ConditionalAndExpression)
803 '||' + ParamList('other', ConditionalAndExpression))).setEvalFn(op.ConditionalOrExpression)
835 'BY') + OneOrMore(ParamList('condition', GroupCondition)))
887 …'insert', InsertClause)) | Param('insert', InsertClause)) + ZeroOrMore(ParamList('using', UsingCla…
895 InlineDataOneVar = ParamList(
896 'var', Var) + '{' + ZeroOrMore(ParamList('value', DataBlockValue)) + '}'
899 InlineDataFull = (NIL | '(' + ZeroOrMore(ParamList('var', Var)) + ')') + '{' + ZeroOrMore(
900ParamList('value', Group(Suppress('(') + ZeroOrMore(DataBlockValue) + Suppress(')') | NIL))) + '}'
913 ConstructTriples <<= (ParamList('template', TriplesSameSubject) + Optional(
943 GroupGraphPatternSub = Comp('GroupGraphPatternSub', Optional(ParamList('part', Comp('TriplesBlock',…
944ParamList('part', GraphPatternNotTriples) + Optional('.') + Optional(ParamList('part', Comp('Tripl…
953 'HAVING') + OneOrMore(ParamList('condition', HavingCondition)))
962 'BY') + OneOrMore(ParamList('condition', OrderCondition)))
980 …ram('modifier', Keyword('DISTINCT') | Keyword('REDUCED'))) + (OneOrMore(ParamList('projection', Co…
995 SelectQuery = Comp('SelectQuery', SelectClause + ZeroOrMore(ParamList(
1001 …mplate + ZeroOrMore(ParamList('datasetClause', DatasetClause)) + WhereClause + SolutionModifier + …
1002 …d('WHERE') + '{' + Optional(Param('where', Comp('FakeGroupGraphPatten', ParamList('part', Comp('Tr…
1009 DescribeQuery = Comp('DescribeQuery', Keyword('DESCRIBE') + (OneOrMore(ParamList('var', VarOrIri)) …
1014 Update <<= (ParamList('prologue', Prologue) + Optional(ParamList('request',