Home
last modified time | relevance | path

Searched refs:map (Results 26 – 50 of 61) sorted by path

123

/PHP-5.5/ext/mbstring/tests/
H A Dbug40685.phpt7 $map = array(0, 0x10FFFF, 0, 0xFFFFFF);
8 var_dump(mb_decode_numericentity('&', $map, 'UTF-8'));
9 var_dump(mb_decode_numericentity('&&&', $map, 'UTF-8'));
10 var_dump(mb_decode_numericentity('&#', $map, 'UTF-8'));
11 var_dump(mb_decode_numericentity('&#x', $map, 'UTF-8'));
12 var_dump(mb_decode_numericentity('&#61', $map, 'UTF-8'));
13 var_dump(mb_decode_numericentity('&#x3d', $map, 'UTF-8'));
14 var_dump(mb_decode_numericentity('=', $map, 'UTF-8'));
15 var_dump(mb_decode_numericentity('=', $map, 'UTF-8'));
/PHP-5.5/ext/mysql/
H A Dmysql.mak164 -@del "$(FINAL_DIR)\$(MODULE_NAME).map"
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_zerofill.phpt73 We map those to PHP numeric types -
/PHP-5.5/ext/opcache/
H A DREADME218 processes have to map shared memory into the same address space. This
/PHP-5.5/ext/openssl/
H A Dopenssl.mak44 MAP_FILE = $(FINAL_DIR)\$(MODULE_NAME).map
180 -@del "$(FINAL_DIR)\$(MODULE_NAME).map"
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog420 unit bit map for the list of possible characters. Now it does. This is an
2011 13. pcre_study() now recognizes \h, \v, and \R when constructing a bit map of
3892 a character class. The bit map for "word" characters is now created
4945 a name/number map. There are three relevant calls:
4947 PCRE_INFO_NAMEENTRYSIZE yields the size of each entry in the map
4949 PCRE_INFO_NAMETABLE yields a pointer to the map.
4951 The map is a vector of fixed-size entries. The size of each entry depends on
5122 a bit map, and the map is inverted for negative classes. Previously, a
5753 initializing a 32-byte map regardless, which could cause it to run off the end
5771 2. Optimized negated single characters not to use a bit map.
[all …]
H A DHACKING325 8-word) bit map containing a 1 bit for every character that is acceptable. The
334 \p or \P, OP_XCLASS is used. It optionally uses a bit map if any code points
339 this is a negative class, and XCL_MAP indicates that a bit map is present.
340 There follows the bit map, if XCL_MAP is set, and then a sequence of items
350 than 256, an XCL_RANGE item is used, without setting any bits in the bit map.
351 This means that if no other items in the class set bits in the map, a map is
H A Dpcre_study.c1341 pcre_uint8 *map; in set_start_bits() local
1343 map = NULL; in set_start_bits()
1347 map = (pcre_uint8 *)(tcode + 1 + LINK_SIZE + 1); in set_start_bits()
1354 map = (pcre_uint8 *)tcode; in set_start_bits()
1365 if (map != NULL) in set_start_bits()
1371 for (c = 0; c < 16; c++) start_bits[c] |= map[c]; in set_start_bits()
1374 if ((map[c/8] && (1 << (c&7))) != 0) in set_start_bits()
1386 for (c = 0; c < 32; c++) start_bits[c] |= map[c]; in set_start_bits()
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2907 the conversion, you need to use the name-to-number map, which is
2910 The map consists of a number of fixed-size entries. PCRE_INFO_NAMECOUNT
2952 name-to-number map, remember that the length of the entries is likely
4647 distinguish which parentheses matched, because both names map to cap-
/PHP-5.5/ext/pdo/
H A DTODO29 transparently map BLOBs and CLOBs as PDO_PARAM_LOB.
H A Dpdo_sql_parser.re341 /* map number to name */
/PHP-5.5/ext/pdo/tests/
H A Dpdo_018.phpt132 // For Oracle map NULL to empty string so the test doesn't diff
/PHP-5.5/ext/pdo_odbc/tests/
H A Dlong_columns.phpt35 …ll have to open MS Access, create a database, then load that file in this Window to map it to a DSN
/PHP-5.5/ext/pgsql/
H A Dpgsql.mak165 -@del "$(FINAL_DIR)\$(MODULE_NAME).map"
/PHP-5.5/ext/soap/
H A DTODO3 - make sure soapserver.map(), soap_encode_to_xml() and soap_encode_to_zval() are really need
H A Dphp_encoding.c632 if (type && type->map && type->map->to_xml) { in to_xml_user()
662 if (type && type->map && type->map->to_zval) { in to_zval_user()
3753 soapMappingPtr map = (soapMappingPtr)data; in delete_mapping() local
3755 if (map->to_xml) { in delete_mapping()
3756 zval_ptr_dtor(&map->to_xml); in delete_mapping()
3758 if (map->to_zval) { in delete_mapping()
3759 zval_ptr_dtor(&map->to_zval); in delete_mapping()
3761 efree(map); in delete_mapping()
3773 if (t->details.map) { in delete_encoder()
3774 delete_mapping(t->details.map); in delete_encoder()
[all …]
H A Dphp_encoding.h181 soapMappingPtr map; member
H A Dsoap.c1071 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1072 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1075 new_enc->details.map->to_xml = to_xml; in soap_create_typemap()
1077 } else if (enc->details.map && enc->details.map->to_xml) { in soap_create_typemap()
1078 zval_add_ref(&enc->details.map->to_xml); in soap_create_typemap()
1079 new_enc->details.map->to_xml = enc->details.map->to_xml; in soap_create_typemap()
1083 new_enc->details.map->to_zval = to_zval; in soap_create_typemap()
1085 } else if (enc->details.map && enc->details.map->to_zval) { in soap_create_typemap()
1086 zval_add_ref(&enc->details.map->to_zval); in soap_create_typemap()
1087 new_enc->details.map->to_zval = enc->details.map->to_zval; in soap_create_typemap()
/PHP-5.5/ext/soap/tests/
H A Dbug48557.phpt11 function test($map) {
12 var_dump($map, $map[1], $map[2]);die;
/PHP-5.5/ext/standard/html_tables/
H A Dents_html5.txt1342 map 021A6
H A Dhtml_table_gen.php187 $map = array(); variable
191 $map[] = array($matches[1], $matches[2]);
195 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
330 $map = array(); variable
334 $map[] = array($matches[1], $matches[2], rtrim($matches[3]));
338 foreach ($map as $v) {
/PHP-5.5/ext/standard/html_tables/mappings/
H A D8859-1.TXT28 # ISO/IEC 8859-1:1998 characters map into Unicode.
H A D8859-15.TXT29 # ISO/IEC 8859-15:1999 characters map into Unicode.
H A D8859-5.TXT28 # ISO/IEC 8859-5:1999 characters map into Unicode.
H A DKOI8-R.TXT28 # KOI8-R characters map into Unicode. The underlying document is the

Completed in 131 milliseconds

123