Home
last modified time | relevance | path

Searched refs:enc (Results 76 – 100 of 114) sorted by relevance

12345

/PHP-7.0/ext/mbstring/
H A Dphp_mbregex.c447 …tern(const char *pattern, int patlen, OnigOptionType options, OnigEncoding enc, OnigSyntaxType *sy… in php_mbregex_compile_pattern() argument
455 if (!rc || rc->options != options || rc->enc != enc || rc->syntax != syntax) { in php_mbregex_compile_pattern()
456 …w(&retval, (OnigUChar *)pattern, (OnigUChar *)(pattern + patlen), options, enc, syntax, &err_info)… in php_mbregex_compile_pattern()
816 const mbfl_encoding *enc; in _php_mb_regex_ereg_replace_exec() local
822 (enc = mbfl_name2encoding(current_enc_name)) == NULL) { in _php_mb_regex_ereg_replace_exec()
922 int fwd = (int) php_mb_mbchar_bytes_ex(p, enc); in _php_mb_regex_ereg_replace_exec()
/PHP-7.0/ext/soap/
H A Dphp_packet_soap.c397 encodePtr enc = NULL; in parse_packet_soap() local
411 enc = hdr->encode; in parse_packet_soap()
415 master_to_zval(&val, enc, trav); in parse_packet_soap()
H A Dphp_schema.c52 encodePtr enc, enc_ptr; in create_encoder() local
63 enc = enc_ptr; in create_encoder()
64 if (enc->details.ns) { in create_encoder()
65 efree(enc->details.ns); in create_encoder()
67 if (enc->details.type_str) { in create_encoder()
68 efree(enc->details.type_str); in create_encoder()
72 enc = emalloc(sizeof(encode)); in create_encoder()
74 memset(enc, 0, sizeof(encode)); in create_encoder()
86 return enc; in create_encoder()
92 if (enc == NULL) { in get_create_encoder()
[all …]
/PHP-7.0/ext/soap/tests/soap12/
H A DT43.phpt29 …001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://www.w3.org/…
H A DT41.phpt29 …2001/XMLSchema-instance" xmlns:ns2="http://example.org/ts-tests/xsd" xmlns:enc="http://www.w3.org/…
H A DT44.phpt26 …2001/XMLSchema-instance" xmlns:ns2="http://example.org/ts-tests/xsd" xmlns:enc="http://www.w3.org/…
H A DT45.phpt34 …2001/XMLSchema-instance" xmlns:ns2="http://example.org/ts-tests/xsd" xmlns:enc="http://www.w3.org/…
/PHP-7.0/ext/soap/tests/
H A Dtypemap010.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap009.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dclassmap001.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap001.phpt14 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap002.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap006.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap005.phpt14 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
H A Dtypemap013.phpt13 xmlns:enc=\"http://schemas.xmlsoap.org/soap/encoding/\"
/PHP-7.0/ext/mbstring/oniguruma/
H A Donigposix.h160 ONIG_EXTERN void reg_set_encoding P_((int enc));
H A Dregparse.h281 OnigEncoding enc; member
327 extern int onig_scan_unsigned_number P_((UChar** src, const UChar* end, OnigEncoding enc));
H A DHISTORY43 2008/01/23: [bug] update enc/koi8.c.
63 2007/08/21: [impl] remove warnings in enc/mktable.c.
316 add enc member into OnigErrorInfo.
863 2004/11/12: [impl] fix CRWord in enc/unicode.c and MBWord in enc/utf8.c.
864 2004/11/11: [bug] fix enc/utf8.c.
1055 2004/05/24: [impl] add enc/unicode.c.
1243 2004/01/27: [dist] rename enc/isotable.c to enc/mktable.c.
1249 2004/01/23: [dist] add enc/isotable.c.
1256 2004/01/21: [dist] rename enc/eucjp.c to enc/euc_jp.c.
1312 2003/12/15: [impl] divide encoding files. (enc/ascii.c, enc/utf8.c etc...)
[all …]
/PHP-7.0/ext/standard/tests/url/
H A Dbase64_encode_basic_001.phpt19 $enc = base64_encode($str);
20 printf("0x%X: %s\n", $i, $enc);
/PHP-7.0/ext/mbstring/tests/
H A Dmb_internal_encoding_variation2.phpt82 foreach($encoding as $enc) {
85 var_dump(mb_internal_encoding($enc));
H A Dillformed_utf_sequences.phpt7 function chk_enc($str, $n, $enc = "UTF-8", $with_bom = false) {
8 $src = bin2hex(mb_convert_encoding($str, "UCS-4BE", $enc));
H A Dmb_regex_encoding_variation2.phpt81 foreach($encoding as $enc) {
84 var_dump(mb_regex_encoding($enc));
/PHP-7.0/ext/libxml/
H A Dlibxml.c398 php_libxml_input_buffer_create_filename(const char *URI, xmlCharEncoding enc) in php_libxml_input_buffer_create_filename() argument
417 ret = xmlAllocParserInputBuffer(enc); in php_libxml_input_buffer_create_filename()
650 xmlCharEncoding enc = XML_CHAR_ENCODING_NONE; in _php_libxml_external_entity_loader() local
651 xmlParserInputBufferPtr pib = xmlAllocParserInputBuffer(enc); in _php_libxml_external_entity_loader()
662 ret = xmlNewIOInputStream(context, pib, enc); in _php_libxml_external_entity_loader()
/PHP-7.0/ext/intl/converter/
H A Dconverter.c376 const char *enc, size_t enc_len in php_converter_set_encoding() argument
379 UConverter *cnv = ucnv_open(enc, &error); in php_converter_set_encoding()
416 char *enc; in php_converter_do_set_encoding() local
419 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &enc, &enc_len) == FAILURE) { in php_converter_do_set_encoding()
426 RETURN_BOOL(php_converter_set_encoding(objval, pcnv, enc, enc_len)); in php_converter_do_set_encoding()
/PHP-7.0/ext/xml/tests/
H A Dbug32001.phpt19 function __construct($enc, $chunk_size = 0, $bom = 0, $omit_prologue = 0) {
20 $this->encoding = $enc;

Completed in 67 milliseconds

12345