Home
last modified time | relevance | path

Searched refs:yield (Results 76 – 83 of 83) sorted by path

1234

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_get.c347 int yield; in pcre_copy_substring() local
351 yield = ovector[stringnumber+1] - ovector[stringnumber]; in pcre_copy_substring()
352 if (size < yield + 1) return PCRE_ERROR_NOMEMORY; in pcre_copy_substring()
353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield)); in pcre_copy_substring()
354 buffer[yield] = 0; in pcre_copy_substring()
355 return yield; in pcre_copy_substring()
556 int yield; in pcre_get_substring() local
561 yield = ovector[stringnumber+1] - ovector[stringnumber]; in pcre_get_substring()
562 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1)); in pcre_get_substring()
565 substring[yield] = 0; in pcre_get_substring()
[all …]
H A Dpcre_maketables.c80 unsigned char *yield, *p; in pcre_maketables() local
84 yield = (unsigned char*)(PUBL(malloc))(tables_length); in pcre_maketables()
86 yield = (unsigned char*)malloc(tables_length); in pcre_maketables()
89 if (yield == NULL) return NULL; in pcre_maketables()
90 p = yield; in pcre_maketables()
153 return yield; in pcre_maketables()
H A Dpcre_study.c806 int yield = SSB_DONE; in set_start_bits() local
990 yield = SSB_CONTINUE; in set_start_bits()
1424 return yield; in set_start_bits()
/PHP-5.5/ext/reflection/tests/
H A DReflectionFunction_isGenerator_basic.phpt8 yield $param;
22 yield 'func2';
37 yield;
/PHP-5.5/ext/spl/tests/
H A Diterator_to_array_nonscalar_keys.phpt7 yield "foo" => 0;
8 yield 1 => 1;
9 yield 2.5 => 2;
10 yield null => 3;
11 yield [] => 4;
12 yield new stdClass => 5;
/PHP-5.5/ext/standard/tests/array/
H A Dcompact_basic.phpt30 // cases which should not yield any output.
/PHP-5.5/
H A Dphp.ini-development216 ; Turning on this setting and managing its maximum buffer size can yield some
H A Dphp.ini-production216 ; Turning on this setting and managing its maximum buffer size can yield some

Completed in 102 milliseconds

1234