fetch_type       1307 Zend/zend_compile.c static inline zend_bool class_name_refers_to_active_ce(zend_string *class_name, uint32_t fetch_type) /* {{{ */
fetch_type       1312 Zend/zend_compile.c 	if (fetch_type == ZEND_FETCH_CLASS_SELF && zend_is_scope_known()) {
fetch_type       1315 Zend/zend_compile.c 	return fetch_type == ZEND_FETCH_CLASS_DEFAULT
fetch_type       1345 Zend/zend_compile.c static void zend_ensure_valid_class_fetch_type(uint32_t fetch_type) /* {{{ */
fetch_type       1347 Zend/zend_compile.c 	if (fetch_type != ZEND_FETCH_CLASS_DEFAULT && !CG(active_class_entry) && zend_is_scope_known()) {
fetch_type       1349 Zend/zend_compile.c 			fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
fetch_type       1350 Zend/zend_compile.c 			fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
fetch_type       1357 Zend/zend_compile.c 	uint32_t fetch_type;
fetch_type       1372 Zend/zend_compile.c 	fetch_type = zend_get_class_fetch_type(zend_ast_get_str(class_ast));
fetch_type       1373 Zend/zend_compile.c 	zend_ensure_valid_class_fetch_type(fetch_type);
fetch_type       1375 Zend/zend_compile.c 	switch (fetch_type) {
fetch_type       1388 Zend/zend_compile.c 					fetch_type == ZEND_FETCH_CLASS_STATIC ? "static" : "parent"
fetch_type       1404 Zend/zend_compile.c 	uint32_t fetch_type = zend_get_class_fetch_type(class_name);
fetch_type       1407 Zend/zend_compile.c 	if (class_name_refers_to_active_ce(class_name, fetch_type)) {
fetch_type       1409 Zend/zend_compile.c 	} else if (fetch_type == ZEND_FETCH_CLASS_DEFAULT && !(CG(compiler_options) & ZEND_COMPILE_NO_CONSTANT_SUBSTITUTION)) {
fetch_type       2130 Zend/zend_compile.c 		uint32_t fetch_type;
fetch_type       2137 Zend/zend_compile.c 		fetch_type = zend_get_class_fetch_type(name);
fetch_type       2140 Zend/zend_compile.c 		opline->extended_value = fetch_type | (throw_exception ? ZEND_FETCH_CLASS_EXCEPTION : 0);
fetch_type       2142 Zend/zend_compile.c 		if (fetch_type == ZEND_FETCH_CLASS_DEFAULT) {
fetch_type       2148 Zend/zend_compile.c 			zend_ensure_valid_class_fetch_type(fetch_type);
fetch_type       4404 Zend/zend_compile.c 			uint32_t fetch_type = zend_get_class_fetch_type_ast(ast);
fetch_type       4405 Zend/zend_compile.c 			if (fetch_type == ZEND_FETCH_CLASS_DEFAULT) {
fetch_type       4409 Zend/zend_compile.c 				zend_ensure_valid_class_fetch_type(fetch_type);
fetch_type       6634 Zend/zend_compile.c 	uint32_t fetch_type = zend_get_class_fetch_type(zend_ast_get_str(name_ast));
fetch_type       6635 Zend/zend_compile.c 	zend_ensure_valid_class_fetch_type(fetch_type);
fetch_type       6637 Zend/zend_compile.c 	switch (fetch_type) {
fetch_type       6644 Zend/zend_compile.c 				opline->extended_value = fetch_type;
fetch_type       6651 Zend/zend_compile.c 				opline->extended_value = fetch_type;
fetch_type       6834 Zend/zend_compile.c 	int fetch_type;
fetch_type       6847 Zend/zend_compile.c 	fetch_type = zend_get_class_fetch_type(class_name);
fetch_type       6849 Zend/zend_compile.c 	if (ZEND_FETCH_CLASS_STATIC == fetch_type) {
fetch_type       6854 Zend/zend_compile.c 	if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) {
fetch_type       6864 Zend/zend_compile.c 	Z_CONST_FLAGS(result) = fetch_type;
fetch_type       1510 Zend/zend_execute.c static zend_always_inline HashTable *zend_get_target_symbol_table(zend_execute_data *execute_data, int fetch_type)
fetch_type       1514 Zend/zend_execute.c 	if (EXPECTED(fetch_type == ZEND_FETCH_GLOBAL_LOCK) ||
fetch_type       1515 Zend/zend_execute.c 	    EXPECTED(fetch_type == ZEND_FETCH_GLOBAL)) {
fetch_type       1517 Zend/zend_execute.c 	} else if (EXPECTED(fetch_type == ZEND_FETCH_STATIC)) {
fetch_type       1527 Zend/zend_execute.c 		ZEND_ASSERT(fetch_type == ZEND_FETCH_LOCAL);
fetch_type        294 Zend/zend_execute.h ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type);
fetch_type        295 Zend/zend_execute.h ZEND_API zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, const zval *key, int fetch_type);
fetch_type        212 Zend/zend_execute_API.c static void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce, const char *format, ...) /* {{{ */
fetch_type        220 Zend/zend_execute_API.c 	if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) {
fetch_type       1329 Zend/zend_execute_API.c zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type) /* {{{ */
fetch_type       1332 Zend/zend_execute_API.c 	int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK;
fetch_type       1338 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Cannot access self:: when no class scope is active");
fetch_type       1343 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Cannot access parent:: when no class scope is active");
fetch_type       1347 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Cannot access parent:: when current class scope has no parent");
fetch_type       1353 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Cannot access static:: when no class scope is active");
fetch_type       1366 Zend/zend_execute_API.c 	if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) {
fetch_type       1369 Zend/zend_execute_API.c 		if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) {
fetch_type       1371 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Interface '%s' not found", ZSTR_VAL(class_name));
fetch_type       1373 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Trait '%s' not found", ZSTR_VAL(class_name));
fetch_type       1375 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Class '%s' not found", ZSTR_VAL(class_name));
fetch_type       1384 Zend/zend_execute_API.c zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, const zval *key, int fetch_type) /* {{{ */
fetch_type       1388 Zend/zend_execute_API.c 	if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) {
fetch_type       1391 Zend/zend_execute_API.c 		if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) {
fetch_type       1392 Zend/zend_execute_API.c 			if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) {
fetch_type       1393 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Interface '%s' not found", ZSTR_VAL(class_name));
fetch_type       1394 Zend/zend_execute_API.c 			} else if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_TRAIT) {
fetch_type       1395 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Trait '%s' not found", ZSTR_VAL(class_name));
fetch_type       1397 Zend/zend_execute_API.c 				zend_throw_or_error(fetch_type, NULL, "Class '%s' not found", ZSTR_VAL(class_name));
fetch_type       7817 Zend/zend_vm_def.h 	uint32_t fetch_type;
fetch_type       7821 Zend/zend_vm_def.h 	fetch_type = opline->extended_value;
fetch_type       7825 Zend/zend_vm_def.h 			fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
fetch_type       7826 Zend/zend_vm_def.h 			fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
fetch_type       7830 Zend/zend_vm_def.h 	switch (fetch_type) {
fetch_type       1687 Zend/zend_vm_execute.h 	uint32_t fetch_type;
fetch_type       1691 Zend/zend_vm_execute.h 	fetch_type = opline->extended_value;
fetch_type       1695 Zend/zend_vm_execute.h 			fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
fetch_type       1696 Zend/zend_vm_execute.h 			fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
fetch_type       1700 Zend/zend_vm_execute.h 	switch (fetch_type) {
fetch_type       1475 ext/interbase/ibase_query.c static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */
fetch_type       1512 ext/interbase/ibase_query.c 		if (! (fetch_type & FETCH_ROW)) {
fetch_type       1639 ext/interbase/ibase_query.c 			if (fetch_type & FETCH_ROW) {
fetch_type       1645 ext/interbase/ibase_query.c 			if (fetch_type & FETCH_ROW) {
fetch_type        100 ext/odbc/php_odbc.c 	ZEND_ARG_INFO(0, fetch_type)
fetch_type       1569 ext/odbc/php_odbc.c 	SQLSMALLINT len1=0, len2=0, fetch_type;
fetch_type       1575 ext/odbc/php_odbc.c 	fetch_type = (SQLSMALLINT) zv_fetch_type;
fetch_type       1577 ext/odbc/php_odbc.c 	if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) {
fetch_type       1578 ext/odbc/php_odbc.c 		php_error_docref(NULL, E_WARNING, "Invalid fetch type (%d)", fetch_type);
fetch_type       1588 ext/odbc/php_odbc.c 			fetch_type,
fetch_type        674 ext/simplexml/simplexml.c static zval *sxe_property_get_adr(zval *object, zval *member, int fetch_type, void **cache_slot) /* {{{ */