Home
last modified time | relevance | path

Searched refs:LPAR (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/dports/devel/py-pyparsing/pyparsing-3.0.6/examples/
H A DverilogParse.py293 LPAR
469 + LPAR
483 + LPAR
507 LPAR
531 LPAR
538 LPAR
571 + LPAR
586 + LPAR
590 + LPAR
603 + LPAR
[all …]
H A Dbigquery_view_parser.py401 + LPAR
478 + LPAR
487 + LPAR
505 + LPAR
515 + LPAR
526 + LPAR
593 + LPAR
718 | (LPAR + join_source + RPAR)
719 | (UNNEST + LPAR + expr + RPAR)
753 + LPAR
[all …]
H A Ddecaf_parser.py98 expr_parens = pp.Group(LPAR + expr + RPAR)
101 ident("call_ident") + LPAR + actuals("call_args") + RPAR
103 + LPAR
113 read_integer = pp.Group(READINTEGER + LPAR + RPAR)
114 read_line = pp.Group(READLINE + LPAR + RPAR)
116 new_array = pp.Group(NEWARRAY + LPAR + expr + COMMA + type_ + RPAR)
185 + LPAR
194 + LPAR
206 + LPAR
230 + LPAR
[all …]
H A Doc.py77 LPAR, RPAR, LBRACK, RBRACK, LBRACE, RBRACE, SEMI, COMMA = map(Suppress, "()[]{};,") variable
89 func_call = Group(NAME + LPAR + Group(Optional(delimitedList(expr))) + RPAR)
103 LBRACK + expr + RBRACK | LPAR + Group(Optional(delimitedList(expr))) + RPAR
108 ifstmt = IF - LPAR + expr + RPAR + stmt + Optional(ELSE + stmt)
109 whilestmt = WHILE - LPAR + expr + RPAR + stmt
110 dowhilestmt = DO - stmt + WHILE + LPAR + expr + RPAR + SEMI
130 + LPAR
H A Dselect_parser.py12 LPAR, RPAR, COMMA = map(Suppress, "(),") variable
66 CAST + LPAR + expr + AS + type_name + RPAR
67 | EXISTS + LPAR + select_stmt + RPAR
69 + LPAR
118 (IN | NOT_IN) + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR,
136 Optional(ON + expr | USING + LPAR + Group(delimitedList(column_name)) + RPAR)
148 | (LPAR + select_stmt + RPAR + Optional(Optional(AS) + table_alias))
149 | (LPAR + join_source + RPAR)
H A Dleft_recursion.py36 LPAR, RPAR = map(pp.Suppress, "()") variable
39 function_call = expr + pp.Group(LPAR + pp.Optional(pp.delimitedList(expr)) + RPAR)
42 expr <<= function_call | string | name | pp.Group(LPAR + expr + RPAR)
H A Dlua_parser.py90 LBRACK, RBRACK, LBRACE, RBRACE, LPAR, RPAR, EQ, COMMA, SEMI, COLON = map(
156 funcbody = pp.Group(LPAR + parlist + RPAR) + block + END
160 args = LPAR + pp.Optional(explist1) + RPAR | tableconstructor | string
168 prefixexp = name | LPAR + exp + RPAR
171 var_atom = functioncall | name | LPAR + exp + RPAR
H A Dcuneiform_python.py40 LPAR, RPAR, COLON, EQ = map(pp.Suppress, "():=") variable
55 fn_call = (ident + pp.Group(LPAR + pp.Optional(rvalue) + RPAR)).set_name("fn_call")
63 def_ + ident + pp.Group(LPAR + pp.Optional(rvalue) + RPAR) + COLON
H A DexcelExpr.py31 EQ, LPAR, RPAR, COLON, COMMA = map(Suppress, "=():,") variable
53 - LPAR
64 return Group(CaselessKeyword(name) + Group(LPAR + delimitedList(expr) + RPAR))
/dports/devel/py-pyparsing2/pyparsing-2.4.7/examples/
H A DverilogParse.py139 (LPAR + mintypmaxExpr + RPAR ) |
247 ( repeat + LPAR + expr + RPAR + stmt ) |
248 ( while_ + LPAR + expr + RPAR + stmt ) |
252 ( wait + LPAR + expr + RPAR + stmtOrNull ) |
351 LPAR + Group( delimitedList( expr ) ) + RPAR )
397 if_ + Group(LPAR + portConditionExpr + RPAR) +
411 Optional( if_ + Group(LPAR + expr + RPAR) ) +
412 LPAR + Optional( edgeIdentifier ) +
419 Optional( if_ + Group(LPAR + expr + RPAR) ) +
420 LPAR + Optional( edgeIdentifier ) +
[all …]
H A Ddecaf_parser.py54 LPAR, RPAR, LBRACE, RBRACE, LBRACK, RBRACK, DOT, EQ, COMMA, SEMI = map(pp.Suppress, "(){}[].=,;")
69 expr_parens = pp.Group(LPAR + expr + RPAR)
71 call = pp.Group(ident("call_ident") + LPAR + actuals("call_args") + RPAR
72 …| (expr_parens + pp.ZeroOrMore(DOT + ident))("call_ident_expr") + LPAR + actuals("call_args") + RP…
77 read_integer = pp.Group(READINTEGER + LPAR + RPAR)
78 read_line = pp.Group(READLINE + LPAR + RPAR)
80 new_array = pp.Group(NEWARRAY + LPAR + expr + COMMA + type_ + RPAR)
114 while_stmt = pp.Group(WHILE("statement") + LPAR + expr + RPAR + stmt)
116 + LPAR + pp.Group(expr)("condition") + RPAR
133 + LPAR + formals("args") + RPAR + SEMI)("prototype")
[all …]
H A Doc.py76 LPAR,RPAR,LBRACK,RBRACK,LBRACE,RBRACE,SEMI,COMMA = map(Suppress, "()[]{};,") variable
87 func_call = Group(NAME + LPAR + Group(Optional(delimitedList(expr))) + RPAR)
100 LPAR + Group(Optional(delimitedList(expr))) + RPAR )
105 ifstmt = IF - LPAR + expr + RPAR + stmt + Optional(ELSE + stmt)
106 whilestmt = WHILE - LPAR + expr + RPAR + stmt
107 dowhilestmt = DO - stmt + WHILE + LPAR + expr + RPAR + SEMI
122 fundecl = Group(TYPE + NAME + LPAR + Optional(Group(delimitedList(arg))) + RPAR +
H A Dselect_parser.py10 LPAR,RPAR,COMMA = map(Suppress,"(),") variable
64 CAST + LPAR + expr + AS + type_name + RPAR
65 | EXISTS + LPAR + select_stmt + RPAR
66 | function_name.setName("function_name") + LPAR + Optional(STAR | delimitedList(expr)) + RPAR
86 (IN + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR, UNARY, opAssoc.LEFT),
97 join_constraint = Group(Optional(ON + expr | USING + LPAR + Group(delimitedList(column_name)) + RPA…
107 | (LPAR + select_stmt + RPAR + Optional(Optional(AS) + table_alias))
108 | (LPAR + join_source + RPAR)
H A DexcelExpr.py13 EQ,LPAR,RPAR,COLON,COMMA = map(Suppress, '=():,') variable
30 - LPAR
36 statFunc = lambda name : Group(CaselessKeyword(name) + Group(LPAR + delimitedList(expr) + RPAR))
/dports/sysutils/virt-what/virt-what-1.21/tests/zvm/proc/
H A Dsysinfo50 LPAR Number: 21
51 LPAR Characteristics: Shared
52 LPAR Name: L15
53 LPAR Adjustment: 222
54 LPAR CPUs Total: 8
55 LPAR CPUs Configured: 4
56 LPAR CPUs Standby: 4
57 LPAR CPUs Reserved: 0
58 LPAR CPUs Dedicated: 0
59 LPAR CPUs Shared: 4
/dports/devel/libvirt/libvirt-7.10.0/tests/sysinfodata/
H A Ds390-freqsysinfo.data161 LPAR Number: 20
164 LPAR Adjustment: 32
165 LPAR CPUs Total: 4
166 LPAR CPUs Configured: 4
167 LPAR CPUs Standby: 0
168 LPAR CPUs Reserved: 0
169 LPAR CPUs Dedicated: 0
170 LPAR CPUs Shared: 4
171 LPAR CPUs G-MTID: 0
172 LPAR CPUs S-MTID: 1
[all …]
H A Ds390sysinfo.data97 LPAR Number: 47
98 LPAR Characteristics: Shared
99 LPAR Name: VIRLP01
100 LPAR Adjustment: 253
101 LPAR CPUs Total: 16
102 LPAR CPUs Configured: 16
103 LPAR CPUs Standby: 0
104 LPAR CPUs Reserved: 0
105 LPAR CPUs Dedicated: 0
106 LPAR CPUs Shared: 16
/dports/audio/faust/faust-2.37.3/compiler/parser/
H A Dfaustparser.y178 %left LPAR
561 | LPAR expression RPAR { $$ = $2; }
562 | LAMBDA LPAR params RPAR DOT LPAR expression RPAR
626 fpar : IPAR LPAR ident PAR argument PAR expression RPAR
630 fseq : ISEQ LPAR ident PAR argument PAR expression RPAR
634 fsum : ISUM LPAR ident PAR argument PAR expression RPAR
678 vgroup : VGROUP LPAR uqstring PAR expression RPAR
681 hgroup : HGROUP LPAR uqstring PAR expression RPAR
684 tgroup : TGROUP LPAR uqstring PAR expression RPAR
694 soundfile : SOUNDFILE LPAR uqstring PAR argument RPAR
[all …]
/dports/devel/py-black/black-21.7b0/tests/data/
H A Ddebug_visitor.out17 LPAR
70 LPAR
130 LPAR
168 LPAR
203 LPAR
229 LPAR
370 LPAR
494 LPAR
613 LPAR
674 LPAR
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_tokenize.py1700 LPAR '(' (1, 0) (1, 1)
1964 LPAR '(' (1, 7) (1, 8)
1987 LPAR '(' (1, 9) (1, 10)
2005 LPAR '(' (1, 7) (1, 8)
2171 LPAR '(' (2, 7) (2, 8)
2188 LPAR '(' (2, 7) (2, 8)
2208 LPAR '(' (1, 4) (1, 5)
2217 LPAR '(' (1, 5) (1, 6)
2336 LPAR '(' (2, 9) (2, 10)
2401 LPAR '(' (1, 5) (1, 6)
[all …]
/dports/math/slatec/src/
H A Ddmacon.f21 INTEGER KE, LPAR
23 COMMON /DML5MC/ URO,SRU,EPS,SQOVFL,TWOU,FOURU,LPAR
28 LPAR = 0.5D0*DD
/dports/net-mgmt/p5-FusionInventory-Agent/FusionInventory-Agent-2.5.2/resources/aix/lsdev/
H A Daix-5.3a-adapter10 vsa0:hvterm1:LPAR Virtual Serial Adapter
11 vsa1:hvterm-protocol:LPAR Virtual Serial Adapter
12 vsa2:hvterm-protocol:LPAR Virtual Serial Adapter
/dports/security/pbc/pbc-0.5.14/pbc/
H A Dparser.y24 %token LPAR RPAR LSQU RSQU LBRACE RBRACE COMMA
42 | DEFINE ID LPAR parms RPAR LBRACE stmtlist RBRACE {
84 : molecule LPAR exprlist RPAR { $$ = $3; tree_set_fun($$, $1); }
85 | LPAR expr RPAR { $$ = $2; }
/dports/textproc/py-yapf/yapf-0.31.0/yapftests/
H A Dunwrapped_line_test.py38 toks = _MakeFormatTokenList([(token.DOT, '.'), (token.LPAR, '('),
46 toks = _MakeFormatTokenList([(token.DOT, '.'), (token.LPAR, '('),
53 uwl.AppendToken(_MakeFormatTokenLeaf(token.LPAR, '('))
59 uwl.AppendNode(pytree.Leaf(token.LPAR, '('))
/dports/devel/py-black/black-21.7b0/src/black/
H A Dnodes.py298 if t == token.LPAR or t == token.RPAR:
320 if not prevp or prevp.type == token.LPAR:
339 if t == token.LPAR:
342 if prev and prev.type == token.LPAR:
563 and node.children[0].type == token.LPAR
634 and node.children[0].type == token.LPAR
641 and node.children[0].type == token.LPAR
760 and first.type == token.LPAR
773 return leaf.type == token.LPAR and leaf.value == ""
810 lpar = Leaf(token.LPAR, "(" if visible else "")
[all …]

12345678910>>...25