Searched refs:BitwiseAnd (Results 1 – 7 of 7) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ |
H A D | BitwiseAnd.php | 7 class BitwiseAnd extends AssignOp { class
|
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | BitwiseAnd.php | 7 class BitwiseAnd extends BinaryOp { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 74 BinaryOp\BitwiseAnd::class => [ 90, 91, 90], 89 AssignOp\BitwiseAnd::class => [160, -1, -1], 1372 BinaryOp\NotIdentical::class, BinaryOp\Spaceship::class, BinaryOp\BitwiseAnd::class, 1391 AssignOp\BitwiseAnd::class, AssignOp\BitwiseOr::class, AssignOp\BitwiseXor::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 290 …protected function pExpr_AssignOp_BitwiseAnd(AssignOp\BitwiseAnd $node, int $precedence, int $lhsP… 291 …return $this->pPrefixOp(AssignOp\BitwiseAnd::class, $this->p($node->var) . ' &= ', $node->expr, $p… 352 …protected function pExpr_BinaryOp_BitwiseAnd(BinaryOp\BitwiseAnd $node, int $precedence, int $lhsP… 353 …return $this->pInfixOp(BinaryOp\BitwiseAnd::class, $node->left, ' & ', $node->right, $precedence, …
|
/PHP-Parser/grammar/ |
H A D | php.y | 1017 … | variable T_AND_EQUAL expr { $$ = Expr\AssignOp\BitwiseAnd[$1, $3]; } 1034 … | expr T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG expr { $$ = Expr\BinaryOp\BitwiseAnd[$1, $3]; } 1035 … | expr T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG expr { $$ = Expr\BinaryOp\BitwiseAnd[$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2204 …$self->semValue = new Expr\AssignOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$… 2255 …$self->semValue = new Expr\BinaryOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$… 2258 …$self->semValue = new Expr\BinaryOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$…
|
H A D | Php8.php | 2206 …$self->semValue = new Expr\AssignOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$… 2257 …$self->semValue = new Expr\BinaryOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$… 2260 …$self->semValue = new Expr\BinaryOp\BitwiseAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$…
|
Completed in 33 milliseconds