Home
last modified time | relevance | path

Searched refs:source (Results 76 – 100 of 237) sorted by relevance

12345678910

/PHP-7.1/ext/tokenizer/tests/
H A Dtoken_get_all_variation4.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different comparison operators to test them for tokens
19 echo "*** Testing token_get_all() : 'source' string with different comparison operators ***\n";
22 $source = '<?php
34 var_dump( token_get_all($source));
39 *** Testing token_get_all() : 'source' string with different comparison operators ***
H A Dtoken_get_all_variation11.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
29 $source = '<?php
40 var_dump( token_get_all($source));
45 $source = "<?php while(true) {
53 var_dump( token_get_all($source));
58 $source = '<?php for($count=0; $count < 5; $count++) {
65 var_dump( token_get_all($source));
70 $source = '<?php switch($var)
74 var_dump( token_get_all($source));
H A Dtoken_get_all_variation5.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different assignment operators to test them for tokens
21 echo "*** Testing token_get_all() : 'source' string with different assignment operators ***\n";
24 $source = '<?php
38 var_dump( token_get_all($source));
43 *** Testing token_get_all() : 'source' string with different assignment operators ***
H A Dtoken_get_all_variation8.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different type casting operators to test them for token
19 echo "*** Testing token_get_all() : 'source' string with different type casting operators ***\n";
22 $source = '<?php
33 var_dump( token_get_all($source));
38 *** Testing token_get_all() : 'source' string with different type casting operators ***
H A Dtoken_get_all_variation17.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
21 $source = '<?php
36 $tokens = token_get_all($source);
/PHP-7.1/Zend/
H A Dzend_hash.c1619 IS_CONSISTENT(source); in zend_hash_copy()
1625 p = source->arData + idx; in zend_hash_copy()
1714 Bucket *p = source->arData; in zend_array_dup_packed_elements()
1731 Bucket *p = source->arData; in zend_array_dup_elements()
1761 IS_CONSISTENT(source); in zend_array_dup()
1786 memcpy(HT_GET_DATA_ADDR(target), HT_GET_DATA_ADDR(source), HT_USED_SIZE(source)); in zend_array_dup()
1856 IS_CONSISTENT(source); in _zend_hash_merge()
1862 p = source->arData + idx; in _zend_hash_merge()
1882 p = source->arData + idx; in _zend_hash_merge()
1927 IS_CONSISTENT(source); in zend_hash_merge_ex()
[all …]
H A Dzend_ts_hash.h87 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCon…
88 ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pC…
89 ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCo…
90 ZEND_API void zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCop…
/PHP-7.1/ext/standard/tests/file/
H A Dcopy_variation9.phpt20 /* Prototype: bool copy ( string $source, string $dest );
21 Description: Makes a copy of the file source to dest.
25 /* Test copy(): Trying to copy source file to destination file with and without write permissions */
H A Dcopy_variation15.phpt19 /* Prototype: bool copy ( string $source, string $dest );
20 Description: Makes a copy of the file source to dest.
45 var_dump( filesize($file) ); //size of source
H A Dcopy_error.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 * Description: Makes a copy of the file source to dest.
H A Dcopy_variation18.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
/PHP-7.1/ext/intl/resourcebundle/
H A Dresourcebundle.h26 void resourcebundle_extract_value( zval *target, ResourceBundle_object *source);
/PHP-7.1/ext/intl/tests/
H A Duconverter_oop_callback_return.phpt8 public function toUCallback($reason, $source, $codeUnits, &$error) {
21 public function fromUCallback($reason, $source, $codePoint, &$error) {
/PHP-7.1/ext/standard/tests/strings/
H A Dshow_source_variation2.phpt18 $source = show_source(__FILE__, true);
20 var_dump($source);
25source&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">show_so…
H A Dconvert_cyr_string.phpt32 Warning: convert_cyr_string(): Unknown source charset: in %s on line %d
40 Warning: convert_cyr_string(): Unknown source charset: q in %s on line %d
/PHP-7.1/ext/bz2/
H A Dbz2.c79 ZEND_ARG_INFO(0, source)
85 ZEND_ARG_INFO(0, source)
512 char *source; /* Source data to compress */ in PHP_FUNCTION() local
525 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|ll", &source, &source_len, &zblock_size, &zwork_fact… in PHP_FUNCTION()
547 …error = BZ2_bzBuffToBuffCompress(ZSTR_VAL(dest), &dest_len, source, source_len, block_size, 0, wor… in PHP_FUNCTION()
565 char *source; in PHP_FUNCTION() local
577 if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &source, &source_len, &small)) { in PHP_FUNCTION()
588 bzs.next_in = source; in PHP_FUNCTION()
/PHP-7.1/ext/intl/msgformat/
H A Dmsgformat_helpers.h24 UChar *source, int source_len, UErrorCode *status);
/PHP-7.1/ext/zip/lib/
H A Dzip_entry.c51 e->source = NULL; in _zip_entry_init()
/PHP-7.1/
H A DREADME.UNIX-BUILD-SYSTEM52 E.g. this enables the extension foo which consists of three source-code
66 the source-code files here as well. If you need to specify
72 extension source directory and compiles all three files with the
87 This will read a file in the source-dir of your extension called
105 I.e. specify the source-code files as above and also pass the
119 can define special flags for each source-file, where it is
H A DREADME.SELF-CONTAINED-EXTENSIONS7 the PHP source. To create such an extension, two things are
67 It consists of two source files "foo.c" and "bar.c"
77 name an arbitrary number of source files here.
98 extension. The second names the source-code files. The third passes
118 Put config.m4 and the source files into one directory. Then, run phpize
151 3. Add the following lines to your C source file:
/PHP-7.1/Zend/tests/
H A Dbug41372.phpt2 Bug #41372 (Internal pointer of source array resets during array copying)
/PHP-7.1/ext/session/tests/
H A Dbug36459.phpt23 <p>See source html code</p>
36 <p>See source html code</p>
/PHP-7.1/sapi/cli/
H A Dgenerate_mime_type_map.php6 $source = count($_SERVER['argv']) > 1 ? $_SERVER['argv'][1] : 'https://raw.githubusercontent.com/ap… variable
/PHP-7.1/ext/filter/docs/
H A Dfilter.txt30 * Unmade *source* a bitmask, it doesn't make sense to do.
57 mixed *input_get* (int *source*, string *name*, [, int *filter* [, mixed *filter_options*, [ string…
58 Returns the filtered variable *$name* from source *$source*. It uses the
62 mixed *input_get_args* (array *definitions*, int *source*, [, array *data*]);
68 bool *input_has_variable (int *source*, string *name*);
69 Returns *true* if the variable with the name *name* exists in *source*, or
79 *$source*:
95 These two constants define whether to allow arrays in the source values. The
98 type, if you ask for an array, you will get an array even if the source is
99 only one value. However, if you ask for a scalar and the source is an array,
/PHP-7.1/ext/xmlwriter/
H A Dphp_xmlwriter.c599 if (strncasecmp(source, "file:///", 8) == 0) { in _xmlwriter_get_valid_file_path()
600 if (source[sizeof("file:///") - 1] == '\0') { in _xmlwriter_get_valid_file_path()
606 source += 8; in _xmlwriter_get_valid_file_path()
608 source += 7; in _xmlwriter_get_valid_file_path()
618 source += 17; in _xmlwriter_get_valid_file_path()
620 source += 16; in _xmlwriter_get_valid_file_path()
629 if (!VCWD_REALPATH(source, resolved_path) && !expand_filepath(source, resolved_path)) { in _xmlwriter_get_valid_file_path()
634 memcpy(file_dirname, source, strlen(source)); in _xmlwriter_get_valid_file_path()
635 dir_len = php_dirname(file_dirname, strlen(source)); in _xmlwriter_get_valid_file_path()
647 file_dest = source; in _xmlwriter_get_valid_file_path()
[all …]

Completed in 74 milliseconds

12345678910