Home
last modified time | relevance | path

Searched refs:raw (Results 176 – 200 of 417) sorted by path

12345678910>>...17

/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DAddBinary.php21 return $compiler->raw('+');
H A DAndBinary.php21 return $compiler->raw('&&');
H A DBitwiseAndBinary.php21 return $compiler->raw('&');
H A DBitwiseOrBinary.php21 return $compiler->raw('|');
H A DBitwiseXorBinary.php21 return $compiler->raw('^');
H A DConcatBinary.php21 return $compiler->raw('.');
H A DDivBinary.php21 return $compiler->raw('/');
H A DEndsWithBinary.php23 ->raw(sprintf('(is_string($%s = ', $left))
25 ->raw(sprintf(') && is_string($%s = ', $right))
27 … ->raw(sprintf(') && (\'\' === $%2$s || $%2$s === substr($%1$s, -strlen($%2$s))))', $left, $right))
33 return $compiler->raw('');
H A DEqualBinary.php20 return $compiler->raw('==');
H A DFloorDivBinary.php20 $compiler->raw('(int) floor(');
22 $compiler->raw(')');
27 return $compiler->raw('/');
H A DGreaterBinary.php20 return $compiler->raw('>');
H A DGreaterEqualBinary.php20 return $compiler->raw('>=');
H A DInBinary.php21 ->raw('twig_in_filter(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('in');
H A DLessBinary.php20 return $compiler->raw('<');
H A DLessEqualBinary.php20 return $compiler->raw('<=');
H A DMatchesBinary.php21 ->raw('preg_match(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('');
H A DModBinary.php21 return $compiler->raw('%');
H A DMulBinary.php21 return $compiler->raw('*');
H A DNotEqualBinary.php20 return $compiler->raw('!=');
H A DNotInBinary.php21 ->raw('!twig_in_filter(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('not in');
H A DOrBinary.php21 return $compiler->raw('||');
H A DPowerBinary.php25 ->raw('pow(')
27 ->raw(', ')
29 ->raw(')')
35 return $compiler->raw('**');
H A DRangeBinary.php21 ->raw('range(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('..');
H A DStartsWithBinary.php23 ->raw(sprintf('(is_string($%s = ', $left))
25 ->raw(sprintf(') && is_string($%s = ', $right))
27 ->raw(sprintf(') && (\'\' === $%2$s || 0 === strpos($%1$s, $%2$s)))', $left, $right))
33 return $compiler->raw('');
H A DSubBinary.php21 return $compiler->raw('-');

12345678910>>...17