mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* Merge YARV
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3e7566d8fb
commit
a3e1b1ce7e
233 changed files with 46004 additions and 13653 deletions
90
regenc.h
90
regenc.h
|
@ -66,48 +66,74 @@
|
|||
|
||||
#define USE_UNICODE_FULL_RANGE_CTYPE
|
||||
/* following must not use with USE_CRNL_AS_LINE_TERMINATOR */
|
||||
/* #define USE_UNICODE_ALL_LINE_TERMINATORS */ /* see Unicode.org UTF#18 */
|
||||
/* #define USE_UNICODE_ALL_LINE_TERMINATORS *//* see Unicode.org UTF#18 */
|
||||
|
||||
#define ONIG_ENCODING_INIT_DEFAULT ONIG_ENCODING_ASCII
|
||||
|
||||
/* for encoding system implementation (internal) */
|
||||
ONIG_EXTERN int onigenc_ascii_get_all_pair_ambig_codes P_((OnigAmbigType flag, const OnigPairAmbigCodes** acs));
|
||||
ONIG_EXTERN int onigenc_nothing_get_all_comp_ambig_codes P_((OnigAmbigType flag, const OnigCompAmbigCodes** acs));
|
||||
ONIG_EXTERN int onigenc_iso_8859_1_get_all_pair_ambig_codes P_((OnigAmbigType flag, const OnigPairAmbigCodes** acs));
|
||||
ONIG_EXTERN int onigenc_ess_tsett_get_all_comp_ambig_codes P_((OnigAmbigType flag, const OnigCompAmbigCodes** acs));
|
||||
ONIG_EXTERN int onigenc_not_support_get_ctype_code_range P_((int ctype, const OnigCodePoint* sbr[], const OnigCodePoint* mbr[]));
|
||||
ONIG_EXTERN int onigenc_is_mbc_newline_0x0a P_((const UChar* p, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_ascii_get_all_pair_ambig_codes
|
||||
P_((OnigAmbigType flag, const OnigPairAmbigCodes ** acs));
|
||||
ONIG_EXTERN int onigenc_nothing_get_all_comp_ambig_codes
|
||||
P_((OnigAmbigType flag, const OnigCompAmbigCodes ** acs));
|
||||
ONIG_EXTERN int onigenc_iso_8859_1_get_all_pair_ambig_codes
|
||||
P_((OnigAmbigType flag, const OnigPairAmbigCodes ** acs));
|
||||
ONIG_EXTERN int onigenc_ess_tsett_get_all_comp_ambig_codes
|
||||
P_((OnigAmbigType flag, const OnigCompAmbigCodes ** acs));
|
||||
ONIG_EXTERN int onigenc_not_support_get_ctype_code_range
|
||||
P_((int ctype, const OnigCodePoint * sbr[], const OnigCodePoint * mbr[]));
|
||||
ONIG_EXTERN int onigenc_is_mbc_newline_0x0a
|
||||
P_((const UChar * p, const UChar * end));
|
||||
|
||||
/* methods for single byte encoding */
|
||||
ONIG_EXTERN int onigenc_ascii_mbc_to_normalize P_((OnigAmbigType flag, const UChar** p, const UChar* end, UChar* lower));
|
||||
ONIG_EXTERN int onigenc_ascii_is_mbc_ambiguous P_((OnigAmbigType flag, const UChar** p, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p));
|
||||
ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_ascii_mbc_to_normalize
|
||||
P_((OnigAmbigType flag, const UChar ** p, const UChar * end, UChar * lower));
|
||||
ONIG_EXTERN int onigenc_ascii_is_mbc_ambiguous
|
||||
P_((OnigAmbigType flag, const UChar ** p, const UChar * end));
|
||||
ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar * p));
|
||||
ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code
|
||||
P_((const UChar * p, const UChar * end));
|
||||
ONIG_EXTERN int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_single_byte_code_to_mbc_first P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));
|
||||
ONIG_EXTERN UChar* onigenc_single_byte_left_adjust_char_head P_((const UChar* start, const UChar* s));
|
||||
ONIG_EXTERN int onigenc_always_true_is_allowed_reverse_match P_((const UChar* s, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_always_false_is_allowed_reverse_match P_((const UChar* s, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_single_byte_code_to_mbc_first
|
||||
P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_single_byte_code_to_mbc
|
||||
P_((OnigCodePoint code, UChar * buf));
|
||||
ONIG_EXTERN UChar *onigenc_single_byte_left_adjust_char_head
|
||||
P_((const UChar * start, const UChar * s));
|
||||
ONIG_EXTERN int onigenc_always_true_is_allowed_reverse_match
|
||||
P_((const UChar * s, const UChar * end));
|
||||
ONIG_EXTERN int onigenc_always_false_is_allowed_reverse_match
|
||||
P_((const UChar * s, const UChar * end));
|
||||
|
||||
/* methods for multi byte encoding */
|
||||
ONIG_EXTERN OnigCodePoint onigenc_mbn_mbc_to_code P_((OnigEncoding enc, const UChar* p, const UChar* end));
|
||||
ONIG_EXTERN int onigenc_mbn_mbc_to_normalize P_((OnigEncoding enc, OnigAmbigType flag, const UChar** p, const UChar* end, UChar* lower));
|
||||
ONIG_EXTERN int onigenc_mbn_is_mbc_ambiguous P_((OnigEncoding enc, OnigAmbigType flag, const UChar** p, const UChar* end));
|
||||
ONIG_EXTERN OnigCodePoint onigenc_mbn_mbc_to_code
|
||||
P_((OnigEncoding enc, const UChar * p, const UChar * end));
|
||||
ONIG_EXTERN int onigenc_mbn_mbc_to_normalize
|
||||
P_((OnigEncoding enc, OnigAmbigType flag, const UChar ** p, const UChar * end,
|
||||
UChar * lower));
|
||||
ONIG_EXTERN int onigenc_mbn_is_mbc_ambiguous
|
||||
P_((OnigEncoding enc, OnigAmbigType flag, const UChar ** p,
|
||||
const UChar * end));
|
||||
ONIG_EXTERN int onigenc_mb2_code_to_mbclen P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_mb2_code_to_mbc_first P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_mb2_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
|
||||
ONIG_EXTERN int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
|
||||
ONIG_EXTERN int onigenc_mb2_code_to_mbc
|
||||
P_((OnigEncoding enc, OnigCodePoint code, UChar * buf));
|
||||
ONIG_EXTERN int onigenc_mb2_is_code_ctype
|
||||
P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
|
||||
ONIG_EXTERN int onigenc_mb4_code_to_mbclen P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_mb4_code_to_mbc_first P_((OnigCodePoint code));
|
||||
ONIG_EXTERN int onigenc_mb4_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
|
||||
ONIG_EXTERN int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
|
||||
ONIG_EXTERN int onigenc_mb4_code_to_mbc
|
||||
P_((OnigEncoding enc, OnigCodePoint code, UChar * buf));
|
||||
ONIG_EXTERN int onigenc_mb4_is_code_ctype
|
||||
P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
|
||||
|
||||
ONIG_EXTERN int onigenc_get_all_fold_match_code_ss_0xdf P_((OnigCodePoint** codes));
|
||||
ONIG_EXTERN int onigenc_get_all_fold_match_code_ss_0xdf
|
||||
P_((OnigCodePoint ** codes));
|
||||
|
||||
/* in enc/unicode.c */
|
||||
ONIG_EXTERN int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype));
|
||||
ONIG_EXTERN int onigenc_unicode_get_ctype_code_range P_((int ctype, const OnigCodePoint* sbr[], const OnigCodePoint* mbr[]));
|
||||
ONIG_EXTERN int onigenc_unicode_is_code_ctype
|
||||
P_((OnigCodePoint code, unsigned int ctype));
|
||||
ONIG_EXTERN int onigenc_unicode_get_ctype_code_range
|
||||
P_((int ctype, const OnigCodePoint * sbr[], const OnigCodePoint * mbr[]));
|
||||
|
||||
|
||||
#define ONIGENC_ISO_8859_1_TO_LOWER_CASE(c) \
|
||||
|
@ -125,15 +151,17 @@ ONIG_EXTERN const OnigPairAmbigCodes OnigAsciiPairAmbigCodes[];
|
|||
#endif /* is not ONIG_RUBY_M17N */
|
||||
|
||||
ONIG_EXTERN int
|
||||
onigenc_with_ascii_strncmp P_((OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n));
|
||||
ONIG_EXTERN UChar*
|
||||
onigenc_step P_((OnigEncoding enc, const UChar* p, const UChar* end, int n));
|
||||
onigenc_with_ascii_strncmp
|
||||
P_((OnigEncoding enc, const UChar * p, const UChar * end,
|
||||
const UChar * sascii /* ascii */ , int n));
|
||||
ONIG_EXTERN UChar *onigenc_step
|
||||
P_((OnigEncoding enc, const UChar * p, const UChar * end, int n));
|
||||
|
||||
/* defined in regexec.c, but used in enc/xxx.c */
|
||||
extern int onig_is_in_code_range P_((const UChar* p, OnigCodePoint code));
|
||||
extern int onig_is_in_code_range P_((const UChar * p, OnigCodePoint code));
|
||||
|
||||
ONIG_EXTERN OnigEncoding OnigEncDefaultCharEncoding;
|
||||
ONIG_EXTERN const UChar* OnigEncAsciiToLowerCaseTable;
|
||||
ONIG_EXTERN const UChar *OnigEncAsciiToLowerCaseTable;
|
||||
ONIG_EXTERN const UChar OnigEncAsciiToUpperCaseTable[];
|
||||
ONIG_EXTERN const unsigned short OnigEncAsciiCtypeTable[];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue