Home
last modified time | relevance | path

Searched refs:ctype (Results 1 – 25 of 126) sorted by last modified time

123456

/PHP-5.5/win32/
H A Dphp5dll.dsp842 SOURCE=..\ext\ctype\ctype.c
H A Dphp5dllts.dsp695 SOURCE=..\ext\ctype\ctype.c
H A Dphp_modules.dsw18 Project: "ctype"=..\ext\ctype\ctype.dsp - Package Owner=<4>
H A Dinstall.txt1002 php_ctype.dll ctype family functions
/PHP-5.5/ext/soap/
H A Dphp_sdl.c453 char *ctype; in wsdl_soap_binding_header() local
462 if (ctype == NULL) { in wsdl_soap_binding_header()
465 ++ctype; in wsdl_soap_binding_header()
668 char *ctype; in wsdl_message() local
671 if (ctype == NULL) { in wsdl_message()
674 ++ctype; in wsdl_message()
767 char *ctype; in load_wsdl() local
838 if (ctype == NULL) { in load_wsdl()
841 ++ctype; in load_wsdl()
893 if (ctype == NULL) { in load_wsdl()
[all …]
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c281 SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0; in odbc_stmt_param_hook() local
332 ctype = SQL_C_BINARY; in odbc_stmt_param_hook()
334 ctype = SQL_C_CHAR; in odbc_stmt_param_hook()
346 ctype = SQL_C_BINARY; in odbc_stmt_param_hook()
374 P->paramtype, ctype, sqltype, precision, scale, in odbc_stmt_param_hook()
/PHP-5.5/ext/pdo/tests/
H A Dpdo_018.phpt95 $ctype = NULL; /* set default for non stored class name */
97 $stmt->bindColumn('id', $ctype);
99 $ctypes[$cname] = $ctype;
110 $stmt->bindParam(':classtype', $ctype);
115 $ctype = $ctypes[get_class($obj)];
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c647 int ctype; in match()
4143 if (ctype == OP_PROP || ctype == OP_NOTPROP) in match()
4347 else if (ctype == OP_EXTUNI) in match()
4381 if (utf) switch(ctype) in match()
4634 switch(ctype) in match()
5105 else if (ctype == OP_EXTUNI) in match()
5154 switch(ctype) in match()
5279 switch(ctype) in match()
5704 switch(ctype) in match()
5946 switch(ctype) in match()
[all …]
H A DChangeLog1261 name is defined in ctype.h.
/PHP-5.5/ext/odbc/
H A Dphp_odbc.c1275 SQLSMALLINT sqltype, ctype, scale; in PHP_FUNCTION() local
1351 ctype = SQL_C_BINARY; in PHP_FUNCTION()
1353 ctype = SQL_C_CHAR; in PHP_FUNCTION()
1397 ctype, sqltype, precision, scale, in PHP_FUNCTION()
1409 ctype, sqltype, precision, scale, in PHP_FUNCTION()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.h71 #define NCTYPE(node) (&((node)->u.ctype))
249 int ctype; member
263 CtypeNode ctype; member
H A Dregcomp.c1638 switch (NCTYPE(node)->ctype) { in compile_tree()
2412 if (NCTYPE(y)->ctype == NCTYPE(x)->ctype && in is_not_included()
2443 switch (NCTYPE(y)->ctype) { in is_not_included()
2519 switch (NCTYPE(y)->ctype) { in is_not_included()
4658 switch (NCTYPE(node)->ctype) { in optimize_node_left()
6140 switch (NCTYPE(node)->ctype) { in print_indent_tree()
H A Dregenc.c556 onigenc_not_support_get_ctype_code_range(OnigCtype ctype ARG_UNUSED, in onigenc_not_support_get_ctype_code_range()
785 return pb->ctype; in onigenc_minimum_property_name_to_ctype()
793 unsigned int ctype) in onigenc_mb2_is_code_ctype() argument
796 return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype); in onigenc_mb2_is_code_ctype()
798 if (CTYPE_IS_WORD_GRAPH_PRINT(ctype)) { in onigenc_mb2_is_code_ctype()
808 unsigned int ctype) in onigenc_mb4_is_code_ctype() argument
811 return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype); in onigenc_mb4_is_code_ctype()
813 if (CTYPE_IS_WORD_GRAPH_PRINT(ctype)) { in onigenc_mb4_is_code_ctype()
H A Dregenc.h93 #define CTYPE_TO_BIT(ctype) (1<<(ctype)) argument
94 #define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \ argument
95 ((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\
96 (ctype) == ONIGENC_CTYPE_PRINT)
101 int ctype; member
140 …XTERN int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
143 …XTERN int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
147 ONIG_EXTERN int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype));
149 ONIG_EXTERN int onigenc_unicode_ctype_code_range P_((int ctype, const OnigCodePoint* ranges[]));
182 #define ONIGENC_IS_ASCII_CODE_CTYPE(code,ctype) \ argument
[all …]
H A Doniguruma.h163 int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);
164 …int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges…
299 #define ONIGENC_IS_CODE_CTYPE(enc,code,ctype) (enc)->is_code_ctype(code,ctype) argument
330 #define ONIGENC_GET_CTYPE_CODE_RANGE(enc,ctype,sbout,ranges) \ argument
331 (enc)->get_ctype_code_range(ctype,sbout,ranges)
H A Dregparse.c1195 NCTYPE(node)->ctype = type; in node_new_ctype()
2302 int ctype; member
2942 tok->u.prop.ctype = ONIGENC_CTYPE_WORD; in fetch_token_in_cc()
3841 switch (ctype) { in add_ctype_to_cc()
4020 int r, ctype; in parse_char_property() local
4024 if (ctype < 0) return ctype; in parse_char_property()
4029 r = add_ctype_to_cc(cc, ctype, 0, env); in parse_char_property()
4331 int ctype; in parse_char_class() local
4334 if (ctype < 0) return ctype; in parse_char_class()
5177 switch (tok->u.prop.ctype) { in parse_exp()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Diso8859_6.c32 #define ENC_IS_ISO_8859_6_CTYPE(code,ctype) \ argument
33 ((EncISO_8859_6_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
71 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
74 return ENC_IS_ISO_8859_6_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_7.c33 #define ENC_IS_ISO_8859_7_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_7_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
139 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
142 return ENC_IS_ISO_8859_7_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_8.c32 #define ENC_IS_ISO_8859_8_CTYPE(code,ctype) \ argument
33 ((EncISO_8859_8_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
71 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
74 return ENC_IS_ISO_8859_8_CTYPE(code, ctype); in is_code_ctype()
H A Diso8859_9.c33 #define ENC_IS_ISO_8859_9_CTYPE(code,ctype) \ argument
34 ((EncISO_8859_9_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
151 is_code_ctype(OnigCodePoint code, unsigned int ctype) in is_code_ctype() argument
154 return ENC_IS_ISO_8859_9_CTYPE(code, ctype); in is_code_ctype()
H A Dkoi8.c33 #define ENC_IS_KOI8_CTYPE(code,ctype) \ argument
34 ((EncKOI8_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
138 koi8_is_code_ctype(OnigCodePoint code, unsigned int ctype) in koi8_is_code_ctype() argument
141 return ENC_IS_KOI8_CTYPE(code, ctype); in koi8_is_code_ctype()
H A Dkoi8_r.c33 #define ENC_IS_KOI8_R_CTYPE(code,ctype) \ argument
34 ((EncKOI8_R_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
131 koi8_r_is_code_ctype(OnigCodePoint code, unsigned int ctype) in koi8_r_is_code_ctype() argument
134 return ENC_IS_KOI8_R_CTYPE(code, ctype); in koi8_r_is_code_ctype()
H A Dsjis.c169 if (CTYPE_IS_WORD_GRAPH_PRINT(ctype)) {
244 hash_data_type ctype; in property_name_to_ctype() local
252 return (int )ctype; in property_name_to_ctype()
258 if (ctype <= ONIGENC_MAX_STD_CTYPE) { in is_code_ctype()
262 if (CTYPE_IS_WORD_GRAPH_PRINT(ctype)) { in is_code_ctype()
270 ctype -= (ONIGENC_MAX_STD_CTYPE + 1); in is_code_ctype()
271 if (ctype >= (unsigned int )PropertyListNum) in is_code_ctype()
284 if (ctype <= ONIGENC_MAX_STD_CTYPE) { in get_ctype_code_range()
292 ctype -= (ONIGENC_MAX_STD_CTYPE + 1); in get_ctype_code_range()
293 if (ctype >= (OnigCtype )PropertyListNum) in get_ctype_code_range()
[all …]
H A Dunicode.c32 #define ONIGENC_IS_UNICODE_ISO_8859_1_CTYPE(code,ctype) \ argument
33 ((EncUNICODE_ISO_8859_1_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
10752 ctype <= ONIGENC_MAX_STD_CTYPE && in onigenc_unicode_is_code_ctype()
10755 return ONIGENC_IS_UNICODE_ISO_8859_1_CTYPE(code, ctype); in onigenc_unicode_is_code_ctype()
10758 if (ctype >= CODE_RANGES_NUM) { in onigenc_unicode_is_code_ctype()
10771 if (ctype >= CODE_RANGES_NUM) { in onigenc_unicode_ctype_code_range()
10777 *ranges = CodeRanges[ctype]; in onigenc_unicode_ctype_code_range()
10787 return onigenc_unicode_ctype_code_range(ctype, ranges); in onigenc_utf16_32_get_ctype_code_range()
10808 (st_data_t )pb->ctype); in init_name_ctype_table()
10820 hash_data_type ctype; in onigenc_unicode_property_name_to_ctype() local
[all …]
H A Dutf8.c260 get_ctype_code_range(OnigCtype ctype, OnigCodePoint *sb_out, in get_ctype_code_range() argument
264 return onigenc_unicode_ctype_code_range(ctype, ranges); in get_ctype_code_range()

Completed in 151 milliseconds

123456