Home
last modified time | relevance | path

Searched refs:push_operator (Results 1 – 17 of 17) sorted by relevance

/dports/sysutils/fwup/fwup-1.9.0/src/
H A Deval_math.c167 static int push_operator(struct eval_state *s, in push_operator() function
228 rc = push_operator(s, do_unary_minus, ASSOC_RIGHT, 4); in parse_whitespace_before_number()
269 rc = push_operator(s, do_add, ASSOC_LEFT, 2); in parse_operator()
273 rc = push_operator(s, do_subtract, ASSOC_LEFT, 2); in parse_operator()
277 rc = push_operator(s, do_multiply, ASSOC_LEFT, 3); in parse_operator()
281 rc = push_operator(s, do_divide, ASSOC_LEFT, 3); in parse_operator()
285 rc = push_operator(s, do_power, ASSOC_RIGHT, 4); in parse_operator()
/dports/misc/broot/broot-1.7.0/cargo-crates/bet-1.0.0/src/
H A Dtest_bool.rs34 '&' => expr.push_operator(BoolOperator::And), in check()
35 '|' => expr.push_operator(BoolOperator::Or), in check()
36 '!' => expr.push_operator(BoolOperator::Not), in check()
H A Dtest_bool_faillible.rs28 '&' => expr.push_operator(BoolOperator::And), in check()
29 '|' => expr.push_operator(BoolOperator::Or), in check()
30 '!' => expr.push_operator(BoolOperator::Not), in check()
H A Dbe_tree.rs267 pub fn push_operator(&mut self, operator: Op) { in push_operator() function
/dports/misc/broot/broot-1.7.0/src/command/
H A Dparts.rs58 pt.push_operator(PatternOperator::Or); in from()
62 pt.push_operator(PatternOperator::And); in from()
66 pt.push_operator(PatternOperator::Not); in from()
/dports/math/bitwise/bitwise-0.43/src/
H A Dshunting-yard.c79 static Status push_operator(const Operator *operator, Stack **operands,
213 status = push_operator( in parse()
266 Status push_operator(const Operator *operator, Stack **operands, in push_operator() function
289 return push_operator(get_operator("*", OPERATOR_BINARY), operands, in push_multiplication()
/dports/net-mgmt/py-pyang/pyang-1.7.8/pyang/
H A Dsyntax.py250 push_operator(tok)
260 push_operator(tok)
274 def push_operator(op): function
/dports/news/golded+/golded-plus/golded+/goldlib/gall/
H A Dgeval.cpp77 void geval::push_operator(geval::ops o) { in push_operator() function in geval
H A Dgeval.h81 void push_operator(ops o);
/dports/misc/broot/broot-1.7.0/cargo-crates/bet-1.0.0/
H A DREADME.md17 An expression is built by calling the `push_operator`, `open_par`, `close_par` and `push_atom` func…
/dports/lang/spidermonkey60/firefox-60.9.0/testing/web-platform/tests/tools/wptrunner/wptrunner/wptmanifest/
H A Dparser.py643 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
650 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
712 def push_operator(self, operator): member in ExpressionBuilder
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/harness/wptrunner/wptmanifest/
H A Dparser.py641 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
648 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
710 def push_operator(self, operator): member in ExpressionBuilder
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/wptrunner/wptrunner/wptmanifest/
H A Dparser.py680 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
687 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
752 def push_operator(self, operator): member in ExpressionBuilder
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/wptrunner/wptrunner/wptmanifest/
H A Dparser.py680 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
687 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
752 def push_operator(self, operator): member in ExpressionBuilder
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/wptrunner/wptrunner/wptmanifest/
H A Dparser.py680 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
687 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
752 def push_operator(self, operator): member in ExpressionBuilder
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/wptrunner/wptrunner/wptmanifest/
H A Dparser.py683 self.expr_builder.push_operator(UnaryOperatorNode(self.token[1]))
690 self.expr_builder.push_operator(BinaryOperatorNode(self.token[1]))
755 def push_operator(self, operator): member in ExpressionBuilder
/dports/news/golded+/golded-plus/golded+/golded3/
H A Dgesrch.cpp390 logic.push_operator(geval::logic_and); in search()
392 logic.push_operator(geval::logic_or); in search()