Home
last modified time | relevance | path

Searched refs:source (Results 101 – 125 of 231) sorted by relevance

12345678910

/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_fromFile_01.phpt12 Fatal error: Uncaught ValueError: DOM\XMLDocument::createFromString(): Argument #1 ($source) must n…
/php-src/ext/curl/
H A Dinterface.c1175 if (!Z_ISUNDEF(source->handlers.write->stream)) { in _php_setup_easy_copy_handlers()
1176 Z_ADDREF(source->handlers.write->stream); in _php_setup_easy_copy_handlers()
1180 if (!Z_ISUNDEF(source->handlers.read->stream)) { in _php_setup_easy_copy_handlers()
1181 Z_ADDREF(source->handlers.read->stream); in _php_setup_easy_copy_handlers()
1187 Z_ADDREF(source->handlers.write_header->stream); in _php_setup_easy_copy_handlers()
1197 zend_fcc_dup(&source->handlers.read->fcc, &source->handlers.read->fcc); in _php_setup_easy_copy_handlers()
1200 zend_fcc_dup(&source->handlers.write->fcc, &source->handlers.write->fcc); in _php_setup_easy_copy_handlers()
1203 zend_fcc_dup(&source->handlers.write_header->fcc, &source->handlers.write_header->fcc); in _php_setup_easy_copy_handlers()
1223 ch->to_free = source->to_free; in _php_setup_easy_copy_handlers()
1225 ch->clone = source->clone; in _php_setup_easy_copy_handlers()
[all …]
/php-src/ext/session/tests/
H A Dbug36459.phpt25 <p>See source html code</p>
38 <p>See source html code</p>
/php-src/sapi/fpm/
H A DLICENSE4 Redistribution and use in source and binary forms, with or without
7 1. Redistributions of source code must retain the above copyright
/php-src/ext/standard/libavifinfo/
H A DLICENSE3 Redistribution and use in source and binary forms, with or without
7 1. Redistributions of source code must retain the above copyright
/php-src/TSRM/
H A DLICENSE4 Redistribution and use in source and binary forms, with or without
8 - Redistributions of source code must retain the above copyright notice,
/php-src/ext/xmlreader/
H A Dphp_xmlreader.stub.php197 public function setRelaxNGSchemaSource(?string $source): bool {} argument
200 …public static function XML(string $source, ?string $encoding = null, int $flags = 0) {} // TODO Re… argument
/php-src/ext/dom/tests/
H A DDOMDocument_schemaValidateSource_error3.phpt23 DOMDocument::schemaValidateSource(): Argument #1 ($source) must not be empty
H A DDOMDocument_schemaValidate_error6.phpt24 Warning: DOMDocument::schemaValidate(): Invalid Schema file source in %s on line %d
/php-src/ext/pdo/tests/
H A Dsensitive_parameter.phpt14 PDOException: PDO::__construct(): Argument #1 ($dsn) must be a valid data source name in %s:%d
/php-src/ext/standard/tests/streams/
H A Dstream_copy_to_stream_socket.phpt2 stream_copy_to_stream() with socket as $source
/php-src/ext/random/
H A Drandomizer.c389 zend_string *source, *retval; in PHP_METHOD() local
393 Z_PARAM_STR(source) in PHP_METHOD()
397 const size_t source_length = ZSTR_LEN(source); in PHP_METHOD()
421 ZSTR_VAL(retval)[total_size++] = ZSTR_VAL(source)[offset]; in PHP_METHOD()
456 ZSTR_VAL(retval)[total_size++] = ZSTR_VAL(source)[offset]; in PHP_METHOD()
/php-src/ext/spl/
H A Dspl_directory.c398 spl_filesystem_object *source; in spl_filesystem_object_clone() local
404 intern->flags = source->flags; in spl_filesystem_object_clone()
406 switch (source->type) { in spl_filesystem_object_clone()
408 if (source->path != NULL) { in spl_filesystem_object_clone()
411 if (source->file_name != NULL) { in spl_filesystem_object_clone()
434 intern->oth = source->oth; in spl_filesystem_object_clone()
489 ce = ce ? ce : source->info_class; in spl_filesystem_object_create_info()
512 switch (source->type) { in spl_filesystem_object_create_type()
517 if (!source->u.dir.entry.d_name[0]) { in spl_filesystem_object_create_type()
525 ce = ce ? ce : source->info_class; in spl_filesystem_object_create_type()
[all …]
/php-src/ext/xmlreader/tests/
H A D001.phpt31 XMLReader::XML(): Argument #1 ($source) cannot be empty
/php-src/ext/intl/converter/
H A Dconverter.stub.php105 …public function fromUCallback(int $reason, array $source, int $codePoint, &$error): string|int|arr… argument
159 …public function toUCallback(int $reason, string $source, string $codeUnits, &$error): string|int|a… argument
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_094.phpt2 Edge cases relating to reference source tracking
/php-src/Zend/tests/
H A Dgh11138.phpt2 move_uploaded_file() emits open_basedir warning for source file
H A Dignore_repeated_source.phpt15 // Also a repeated error, because we're ignoring the different source.
H A Dclosure_064.phpt2 The closure name includes the source location
/php-src/ext/dom/
H A Dhtml_document.c390 static dom_character_encoding_data dom_determine_encoding(const char *source, size_t source_len) in dom_determine_encoding() argument
395 if (source_len >= 3 && source[0] == '\xEF' && source[1] == '\xBB' && source[2] == '\xBF') { in dom_determine_encoding()
400 if (source[0] == '\xFE' && source[1] == '\xFF') { in dom_determine_encoding()
404 } else if (source[0] == '\xFF' && source[1] == '\xFE') { in dom_determine_encoding()
421 …xb_html_encoding_determine(&encoding, (const lxb_char_t *) source, (const lxb_char_t *) source + s… in dom_determine_encoding()
780 const char *source, *override_encoding = NULL; in PHP_METHOD() local
786 &source, in PHP_METHOD()
819 const lxb_char_t *buf_ref = (const lxb_char_t *) source; in PHP_METHOD()
/php-src/win32/build/
H A Dmkdist.php157 function copy_text_file($source, $dest) argument
159 $text = file_get_contents($source);
410 function copy_dir($source, $dest) argument
418 $d = opendir($source);
423 $fs = $source . '/' . $f;
/php-src/ext/com_dotnet/
H A Dcom_com.c347 zend_string *source = NULL, *desc_str = NULL; in php_com_invoke_helper() local
349 source = php_com_olestring_to_string(e.bstrSource, obj->code_page); in php_com_invoke_helper()
358 source ? ZSTR_VAL(source) : "Unknown", in php_com_invoke_helper()
362 source ? ZSTR_VAL(source) : "Unknown", in php_com_invoke_helper()
368 if (source) { in php_com_invoke_helper()
369 zend_string_release_ex(source, /* persistent */ false); in php_com_invoke_helper()
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.h55 PHPDBG_COMMAND(source);
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst6 compiled into machine-readable code ahead of time. Instead, the source files are read, processed and
16 The goal of the interpreter is to read the users source files, and to simulate the users intent.
19 - Tokenization - splitting whole source files into words, called tokens.
43 integer constant representing the token, and a lexeme, the literal string used in the source code.
80 structure from it. To humans, how source code elements are grouped seems obvious through whitespace
83 tree structure from the tokens to more closely reflect the source code the way humans see it.
103 source code, and may define some arbitrary flags. These are omitted for brevity.
/php-src/
H A DREADME.REDIST.BINS82 Redistribution and use in source and binary forms, with or without
128 Redistribution and use in source and binary forms, with or without
131 1. Redistributions of source code must retain the above copyright
170 Redistribution and use in source and binary forms, with or without
225 Redistribution and use in source and binary forms, with or without
229 1. Redistributions of source code must retain the above copyright
331 Redistribution and use in source and binary forms, with or without
334 1. Redistributions of source code must retain the above copyright
387 1. Redistributions of source code must retain the above copyright
444 1. Redistributions of source code must retain the above copyright
[all …]

Completed in 58 milliseconds

12345678910