Home
last modified time | relevance | path

Searched refs:zend_do_include_or_eval (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/Zend/
H A Dzend_language_parser.y985 | T_INCLUDE expr { zend_do_include_or_eval(ZEND_INCLUDE, &$$, &$2 TSRMLS_CC); }
986 | T_INCLUDE_ONCE expr { zend_do_include_or_eval(ZEND_INCLUDE_ONCE, &$$, &$2 TSRMLS_CC); }
987 | T_EVAL '(' expr ')' { zend_do_include_or_eval(ZEND_EVAL, &$$, &$3 TSRMLS_CC); }
988 | T_REQUIRE expr { zend_do_include_or_eval(ZEND_REQUIRE, &$$, &$2 TSRMLS_CC); }
989 | T_REQUIRE_ONCE expr { zend_do_include_or_eval(ZEND_REQUIRE_ONCE, &$$, &$2 TSRMLS_CC); }
H A Dzend_compile.h504 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC);
H A Dzend_compile.c4350 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC) /* {{{ */ in zend_do_include_or_eval() function

Completed in 35 milliseconds