Ruby  2.0.0p648(2015-12-16revision53162)
Data Structures | Macros | Enumerations | Functions | Variables
encoding.c File Reference
#include "ruby/ruby.h"
#include "ruby/encoding.h"
#include "internal.h"
#include "regenc.h"
#include <ctype.h>
#include "ruby/util.h"
Include dependency graph for encoding.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  rb_encoding_entry
 
struct  default_encoding
 

Macros

#define ENCODING_COUNT   ENCINDEX_BUILTIN_MAX
 
#define UNSPECIFIED_ENCODING   INT_MAX
 
#define ENCODING_NAMELEN_MAX   63
 
#define valid_encoding_name_p(name)   ((name) && strlen(name) <= ENCODING_NAMELEN_MAX)
 
#define enc_autoload_p(enc)   (!rb_enc_mbmaxlen(enc))
 
#define is_data_encoding(obj)   (RTYPEDDATA_P(obj) && RTYPEDDATA_TYPE(obj) == &encoding_data_type)
 
#define ENC_REGISTER(enc)   enc_register_at(ENCINDEX_##enc, rb_enc_name(&OnigEncoding##enc), &OnigEncoding##enc)
 
#define rb_intern(str)   rb_intern_const(str)
 
#define ctype_test(c, ctype)   (rb_isascii(c) && ONIGENC_IS_ASCII_CODE_CTYPE((c), (ctype)))
 

Enumerations

enum  { ENCINDEX_ASCII, ENCINDEX_UTF_8, ENCINDEX_US_ASCII, ENCINDEX_BUILTIN_MAX }
 

Functions

void rb_enc_init (void)
 
static int load_encoding (const char *name)
 
static size_t enc_memsize (const void *p)
 
static VALUE enc_new (rb_encoding *encoding)
 
static VALUE rb_enc_from_encoding_index (int idx)
 
VALUE rb_enc_from_encoding (rb_encoding *encoding)
 
static int enc_autoload (rb_encoding *)
 
static int check_encoding (rb_encoding *enc)
 
static int enc_check_encoding (VALUE obj)
 
static int must_encoding (VALUE enc)
 
int rb_to_encoding_index (VALUE enc)
 
static int str_find_encindex (VALUE enc)
 
static int str_to_encindex (VALUE enc)
 
static rb_encodingstr_to_encoding (VALUE enc)
 
rb_encodingrb_to_encoding (VALUE enc)
 
rb_encodingrb_find_encoding (VALUE enc)
 
void rb_gc_mark_encodings (void)
 
static int enc_table_expand (int newsize)
 
static int enc_register_at (int index, const char *name, rb_encoding *encoding)
 
static int enc_register (const char *name, rb_encoding *encoding)
 
static void set_encoding_const (const char *, rb_encoding *)
 
int rb_enc_registered (const char *name)
 
int rb_enc_register (const char *name, rb_encoding *encoding)
 
void rb_encdb_declare (const char *name)
 
static void enc_check_duplication (const char *name)
 
static rb_encodingset_base_encoding (int index, rb_encoding *base)
 
void rb_enc_set_base (const char *name, const char *orig)
 
int rb_enc_replicate (const char *name, rb_encoding *encoding)
 
static VALUE enc_replicate (VALUE encoding, VALUE name)
 
static int enc_replicate_with_index (const char *name, rb_encoding *origenc, int idx)
 
int rb_encdb_replicate (const char *name, const char *orig)
 
int rb_define_dummy_encoding (const char *name)
 
int rb_encdb_dummy (const char *name)
 
static VALUE enc_dummy_p (VALUE enc)
 
static VALUE enc_ascii_compatible_p (VALUE enc)
 
int rb_enc_unicode_p (rb_encoding *enc)
 
static st_data_t enc_dup_name (st_data_t name)
 
static int enc_alias_internal (const char *alias, int idx)
 
static int enc_alias (const char *alias, int idx)
 
int rb_enc_alias (const char *alias, const char *orig)
 
int rb_encdb_alias (const char *alias, const char *orig)
 
void rb_encdb_set_unicode (int index)
 
rb_encodingrb_enc_from_index (int index)
 
static VALUE require_enc (VALUE enclib)
 
int rb_enc_find_index (const char *name)
 
rb_encodingrb_enc_find (const char *name)
 
static int enc_capable (VALUE obj)
 
ID rb_id_encoding (void)
 
int rb_enc_get_index (VALUE obj)
 
static void enc_set_index (VALUE obj, int idx)
 
void rb_enc_set_index (VALUE obj, int idx)
 
VALUE rb_enc_associate_index (VALUE obj, int idx)
 
VALUE rb_enc_associate (VALUE obj, rb_encoding *enc)
 
rb_encodingrb_enc_get (VALUE obj)
 
rb_encodingrb_enc_check (VALUE str1, VALUE str2)
 
rb_encodingrb_enc_compatible (VALUE str1, VALUE str2)
 
void rb_enc_copy (VALUE obj1, VALUE obj2)
 
VALUE rb_obj_encoding (VALUE obj)
 
int rb_enc_fast_mbclen (const char *p, const char *e, rb_encoding *enc)
 
int rb_enc_mbclen (const char *p, const char *e, rb_encoding *enc)
 
int rb_enc_precise_mbclen (const char *p, const char *e, rb_encoding *enc)
 
int rb_enc_ascget (const char *p, const char *e, int *len, rb_encoding *enc)
 
unsigned int rb_enc_codepoint_len (const char *p, const char *e, int *len_p, rb_encoding *enc)
 
unsigned int rb_enc_codepoint (const char *p, const char *e, rb_encoding *enc)
 
int rb_enc_codelen (int c, rb_encoding *enc)
 
int rb_enc_toupper (int c, rb_encoding *enc)
 
int rb_enc_tolower (int c, rb_encoding *enc)
 
static VALUE enc_inspect (VALUE self)
 
static VALUE enc_name (VALUE self)
 
static int enc_names_i (st_data_t name, st_data_t idx, st_data_t args)
 
static VALUE enc_names (VALUE self)
 
static VALUE enc_list (VALUE klass)
 
static VALUE enc_find (VALUE klass, VALUE enc)
 
static VALUE enc_compatible_p (VALUE klass, VALUE str1, VALUE str2)
 
static VALUE enc_dump (int argc, VALUE *argv, VALUE self)
 
static VALUE enc_load (VALUE klass, VALUE str)
 
rb_encodingrb_ascii8bit_encoding (void)
 
int rb_ascii8bit_encindex (void)
 
rb_encodingrb_utf8_encoding (void)
 
int rb_utf8_encindex (void)
 
rb_encodingrb_usascii_encoding (void)
 
int rb_usascii_encindex (void)
 
int rb_locale_encindex (void)
 
rb_encodingrb_locale_encoding (void)
 
static int enc_set_filesystem_encoding (void)
 
int rb_filesystem_encindex (void)
 
rb_encodingrb_filesystem_encoding (void)
 
static int enc_set_default_encoding (struct default_encoding *def, VALUE encoding, const char *name)
 
rb_encodingrb_default_external_encoding (void)
 
VALUE rb_enc_default_external (void)
 
static VALUE get_default_external (VALUE klass)
 
void rb_enc_set_default_external (VALUE encoding)
 
static VALUE set_default_external (VALUE klass, VALUE encoding)
 
rb_encodingrb_default_internal_encoding (void)
 
VALUE rb_enc_default_internal (void)
 
static VALUE get_default_internal (VALUE klass)
 
void rb_enc_set_default_internal (VALUE encoding)
 
static VALUE set_default_internal (VALUE klass, VALUE encoding)
 
VALUE rb_locale_charmap (VALUE klass)
 
static int rb_enc_name_list_i (st_data_t name, st_data_t idx, st_data_t arg)
 
static VALUE rb_enc_name_list (VALUE klass)
 
static int rb_enc_aliases_enc_i (st_data_t name, st_data_t orig, st_data_t arg)
 
static VALUE rb_enc_aliases (VALUE klass)
 
void Init_Encoding (void)
 
int rb_isalnum (int c)
 
int rb_isalpha (int c)
 
int rb_isblank (int c)
 
int rb_iscntrl (int c)
 
int rb_isdigit (int c)
 
int rb_isgraph (int c)
 
int rb_islower (int c)
 
int rb_isprint (int c)
 
int rb_ispunct (int c)
 
int rb_isspace (int c)
 
int rb_isupper (int c)
 
int rb_isxdigit (int c)
 
int rb_tolower (int c)
 
int rb_toupper (int c)
 

Variables

static ID id_encoding
 
VALUE rb_cEncoding
 
static VALUE rb_encoding_list
 
struct {
   struct rb_encoding_entry *   list
 
   int   count
 
   int   size
 
   st_table *   names
 
enc_table
 
static const rb_data_type_t encoding_data_type
 
rb_encoding OnigEncodingUTF_8
 
rb_encoding OnigEncodingUS_ASCII
 
static struct default_encoding default_external = {0}
 
static struct default_encoding default_internal = {-2}
 

Macro Definition Documentation

#define ctype_test (   c,
  ctype 
)    (rb_isascii(c) && ONIGENC_IS_ASCII_CODE_CTYPE((c), (ctype)))
#define enc_autoload_p (   enc)    (!rb_enc_mbmaxlen(enc))
#define ENC_REGISTER (   enc)    enc_register_at(ENCINDEX_##enc, rb_enc_name(&OnigEncoding##enc), &OnigEncoding##enc)

Referenced by rb_enc_init().

#define ENCODING_COUNT   ENCINDEX_BUILTIN_MAX

Definition at line 58 of file encoding.c.

Referenced by rb_enc_init().

#define ENCODING_NAMELEN_MAX   63

Definition at line 61 of file encoding.c.

Referenced by set_encoding_const().

#define is_data_encoding (   obj)    (RTYPEDDATA_P(obj) && RTYPEDDATA_TYPE(obj) == &encoding_data_type)

Definition at line 79 of file encoding.c.

Referenced by enc_capable(), enc_find(), and rb_enc_get_index().

#define rb_intern (   str)    rb_intern_const(str)

Referenced by rb_enc_get_index().

#define UNSPECIFIED_ENCODING   INT_MAX

Definition at line 59 of file encoding.c.

Referenced by enc_find(), enc_set_default_encoding(), and rb_enc_find_index().

#define valid_encoding_name_p (   name)    ((name) && strlen(name) <= ENCODING_NAMELEN_MAX)

Definition at line 62 of file encoding.c.

Referenced by enc_alias(), and enc_register_at().

Enumeration Type Documentation

anonymous enum
Enumerator
ENCINDEX_ASCII 
ENCINDEX_UTF_8 
ENCINDEX_US_ASCII 
ENCINDEX_BUILTIN_MAX 

Definition at line 522 of file encoding.c.

Function Documentation

static int check_encoding ( rb_encoding enc)
static

Definition at line 114 of file encoding.c.

References enc_autoload(), enc_autoload_p, rb_enc_from_index(), and rb_enc_to_index.

Referenced by enc_check_encoding().

static int enc_alias ( const char *  alias,
int  idx 
)
static
static int enc_alias_internal ( const char *  alias,
int  idx 
)
static
static VALUE enc_ascii_compatible_p ( VALUE  enc)
static

Definition at line 450 of file encoding.c.

References enc_table, must_encoding(), Qfalse, Qtrue, and rb_enc_asciicompat.

Referenced by Init_Encoding().

static int enc_autoload ( rb_encoding enc)
static
static int enc_capable ( VALUE  obj)
inlinestatic

Definition at line 667 of file encoding.c.

References BUILTIN_TYPE, FALSE, is_data_encoding, SPECIAL_CONST_P, SYMBOL_P, T_DATA, T_FILE, T_REGEXP, T_STRING, and TRUE.

Referenced by enc_compatible_p().

static void enc_check_duplication ( const char *  name)
static

Definition at line 313 of file encoding.c.

References rb_eArgError, rb_enc_registered(), and rb_raise().

Referenced by rb_enc_alias(), and rb_enc_replicate().

static int enc_check_encoding ( VALUE  obj)
static
static VALUE enc_compatible_p ( VALUE  klass,
VALUE  str1,
VALUE  str2 
)
static
static VALUE enc_dummy_p ( VALUE  enc)
static

Definition at line 434 of file encoding.c.

References ENC_DUMMY_P, enc_table, must_encoding(), Qfalse, and Qtrue.

Referenced by enc_inspect(), and Init_Encoding().

static VALUE enc_dump ( int  argc,
VALUE argv,
VALUE  self 
)
static

Definition at line 1137 of file encoding.c.

References enc_name(), and rb_scan_args().

Referenced by Init_Encoding().

static st_data_t enc_dup_name ( st_data_t  name)
static

Definition at line 465 of file encoding.c.

References strdup.

Referenced by enc_alias_internal().

static VALUE enc_find ( VALUE  klass,
VALUE  enc 
)
static
static VALUE enc_inspect ( VALUE  self)
static
static VALUE enc_list ( VALUE  klass)
static
static VALUE enc_load ( VALUE  klass,
VALUE  str 
)
static

Definition at line 1145 of file encoding.c.

References enc_find().

Referenced by Init_Encoding().

static size_t enc_memsize ( const void *  p)
static

Definition at line 69 of file encoding.c.

static VALUE enc_name ( VALUE  self)
static
static VALUE enc_names ( VALUE  self)
static

Definition at line 1030 of file encoding.c.

References args, enc_names_i(), enc_table, rb_ary_new2(), rb_to_encoding_index(), and st_foreach().

Referenced by Init_Encoding().

static int enc_names_i ( st_data_t  name,
st_data_t  idx,
st_data_t  args 
)
static

Definition at line 1009 of file encoding.c.

References OBJ_FREEZE, rb_ary_push(), rb_usascii_str_new2(), and ST_CONTINUE.

Referenced by enc_names().

static VALUE enc_new ( rb_encoding encoding)
static

Definition at line 82 of file encoding.c.

References rb_cEncoding, and TypedData_Wrap_Struct.

Referenced by enc_register_at(), and Init_Encoding().

static int enc_register ( const char *  name,
rb_encoding encoding 
)
static
static int enc_register_at ( int  index,
const char *  name,
rb_encoding encoding 
)
static
static VALUE enc_replicate ( VALUE  encoding,
VALUE  name 
)
static

Definition at line 364 of file encoding.c.

References rb_enc_from_encoding_index(), rb_enc_replicate(), rb_to_encoding(), and StringValueCStr.

Referenced by Init_Encoding().

static int enc_replicate_with_index ( const char *  name,
rb_encoding origenc,
int  idx 
)
static
static int enc_set_default_encoding ( struct default_encoding def,
VALUE  encoding,
const char *  name 
)
static
static int enc_set_filesystem_encoding ( void  )
static
static void enc_set_index ( VALUE  obj,
int  idx 
)
static
static int enc_table_expand ( int  newsize)
static

Definition at line 216 of file encoding.c.

References count, enc_table, and realloc.

Referenced by enc_register(), and rb_enc_init().

static VALUE get_default_external ( VALUE  klass)
static

Definition at line 1332 of file encoding.c.

References rb_enc_default_external().

Referenced by Init_Encoding().

static VALUE get_default_internal ( VALUE  klass)
static

Definition at line 1418 of file encoding.c.

References rb_enc_default_internal().

Referenced by Init_Encoding().

void Init_Encoding ( void  )
static int load_encoding ( const char *  name)
static
static int must_encoding ( VALUE  enc)
static

Definition at line 135 of file encoding.c.

References enc_check_encoding(), rb_eTypeError, rb_obj_classname(), and rb_raise().

Referenced by enc_ascii_compatible_p(), and enc_dummy_p().

int rb_ascii8bit_encindex ( void  )
rb_encoding* rb_ascii8bit_encoding ( void  )
rb_encoding* rb_default_external_encoding ( void  )
rb_encoding* rb_default_internal_encoding ( void  )
int rb_define_dummy_encoding ( const char *  name)
int rb_enc_alias ( const char *  alias,
const char *  orig 
)
static VALUE rb_enc_aliases ( VALUE  klass)
static

Definition at line 1625 of file encoding.c.

References enc_table, rb_ary_new(), rb_enc_aliases_enc_i(), rb_hash_new(), and st_foreach().

Referenced by Init_Encoding().

static int rb_enc_aliases_enc_i ( st_data_t  name,
st_data_t  orig,
st_data_t  arg 
)
static
int rb_enc_ascget ( const char *  p,
const char *  e,
int *  len,
rb_encoding enc 
)
VALUE rb_enc_associate ( VALUE  obj,
rb_encoding enc 
)
VALUE rb_enc_associate_index ( VALUE  obj,
int  idx 
)
rb_encoding* rb_enc_check ( VALUE  str1,
VALUE  str2 
)
int rb_enc_codelen ( int  c,
rb_encoding enc 
)
unsigned int rb_enc_codepoint ( const char *  p,
const char *  e,
rb_encoding enc 
)

Definition at line 948 of file encoding.c.

References rb_enc_codepoint_len().

unsigned int rb_enc_codepoint_len ( const char *  p,
const char *  e,
int *  len_p,
rb_encoding enc 
)
rb_encoding* rb_enc_compatible ( VALUE  str1,
VALUE  str2 
)
void rb_enc_copy ( VALUE  obj1,
VALUE  obj2 
)
VALUE rb_enc_default_external ( void  )
VALUE rb_enc_default_internal ( void  )
int rb_enc_fast_mbclen ( const char *  p,
const char *  e,
rb_encoding enc 
)
rb_encoding* rb_enc_find ( const char *  name)
int rb_enc_find_index ( const char *  name)
VALUE rb_enc_from_encoding ( rb_encoding encoding)
static VALUE rb_enc_from_encoding_index ( int  idx)
static
rb_encoding* rb_enc_from_index ( int  index)
rb_encoding* rb_enc_get ( VALUE  obj)

Definition at line 772 of file encoding.c.

References rb_enc_from_index(), and rb_enc_get_index().

Referenced by check_dirname(), check_path_encoding(), check_pipe_command(), do_writeconv(), econv_set_replacement(), file_s_fnmatch(), fnmatch_brace(), intern_str(), io_encoding_set(), literal_concat0(), must_be_ascii_compatible(), must_not_be_anonymous(), ole_vstr2wc(), parser_prepare(), parser_yyerror(), path_check_0(), path_sub_ext(), prepare_getline_args(), push_glob(), rb_econv_open_opts(), rb_econv_prepare_options(), rb_enc_check(), rb_file_dirname(), rb_file_expand_path_internal(), rb_file_join(), rb_file_s_basename(), rb_file_s_extname(), rb_gzreader_ungetc(), rb_gzwriter_write(), rb_inspect(), rb_mod_const_get(), rb_must_asciicompat(), rb_path_to_class(), rb_push_glob(), rb_realpath_internal(), rb_reg_check_preprocess(), rb_reg_desc(), rb_reg_error_desc(), rb_reg_init_copy(), rb_reg_initialize_m(), rb_reg_initialize_str(), rb_reg_prepare_enc(), rb_reg_preprocess_dregexp(), rb_reg_quote(), rb_reg_regsub(), rb_reg_s_union(), rb_reg_source(), rb_reg_to_s(), rb_str_chomp_bang(), rb_str_dump(), rb_str_each_char_size(), rb_str_ellipsize(), rb_str_encode_ospath(), rb_str_enumerate_chars(), rb_str_enumerate_lines(), rb_str_format(), rb_str_symname_type(), rb_to_encoding_index(), rb_w32_write_console(), realpath_rec(), reg_enc_error(), reg_fragment_setenc_gen(), reg_named_capture_assign_gen(), ruby__sfvextra(), RUBY_ALIAS_FUNCTION(), str_find_encindex(), strio_each_codepoint(), strio_external_encoding(), strio_getc(), strio_getline(), strio_substr(), strio_ungetc(), strio_write(), strscan_getch(), sym_check_asciionly(), syserr_initialize(), time_strftime(), transcode_loop(), and update_char_offset().

int rb_enc_get_index ( VALUE  obj)
void rb_enc_init ( void  )
int rb_enc_mbclen ( const char *  p,
const char *  e,
rb_encoding enc 
)
static VALUE rb_enc_name_list ( VALUE  klass)
static

Definition at line 1580 of file encoding.c.

References enc_table, rb_ary_new2(), rb_enc_name_list_i(), and st_foreach().

Referenced by Init_Encoding().

static int rb_enc_name_list_i ( st_data_t  name,
st_data_t  idx,
st_data_t  arg 
)
static

Definition at line 1556 of file encoding.c.

References OBJ_FREEZE, rb_ary_push(), rb_usascii_str_new2(), and ST_CONTINUE.

Referenced by rb_enc_name_list().

int rb_enc_precise_mbclen ( const char *  p,
const char *  e,
rb_encoding enc 
)
int rb_enc_register ( const char *  name,
rb_encoding encoding 
)
int rb_enc_registered ( const char *  name)
int rb_enc_replicate ( const char *  name,
rb_encoding encoding 
)
void rb_enc_set_base ( const char *  name,
const char *  orig 
)

Definition at line 335 of file encoding.c.

References rb_enc_from_index(), rb_enc_registered(), and set_base_encoding().

void rb_enc_set_default_external ( VALUE  encoding)

Definition at line 1338 of file encoding.c.

References enc_set_default_encoding(), NIL_P, rb_eArgError, and rb_raise().

Referenced by process_options(), and set_default_external().

void rb_enc_set_default_internal ( VALUE  encoding)

Definition at line 1424 of file encoding.c.

References enc_set_default_encoding().

Referenced by process_options(), and set_default_internal().

void rb_enc_set_index ( VALUE  obj,
int  idx 
)

Definition at line 741 of file encoding.c.

References enc_set_index(), and rb_check_frozen.

Referenced by pack_pack(), and str_enc_copy().

int rb_enc_tolower ( int  c,
rb_encoding enc 
)
int rb_enc_toupper ( int  c,
rb_encoding enc 
)
int rb_enc_unicode_p ( rb_encoding enc)

Definition at line 459 of file encoding.c.

References ONIGENC_IS_UNICODE.

Referenced by rb_reg_expr_str(), and rb_str_inspect().

int rb_encdb_alias ( const char *  alias,
const char *  orig 
)

Definition at line 506 of file encoding.c.

References enc_alias(), enc_register(), and rb_enc_registered().

void rb_encdb_declare ( const char *  name)
int rb_encdb_dummy ( const char *  name)
int rb_encdb_replicate ( const char *  name,
const char *  orig 
)
void rb_encdb_set_unicode ( int  index)

Definition at line 517 of file encoding.c.

References OnigEncodingTypeST::flags, ONIGENC_FLAG_UNICODE, and rb_enc_from_index().

int rb_filesystem_encindex ( void  )

Definition at line 1237 of file encoding.c.

References rb_ascii8bit_encindex(), and rb_enc_registered().

Referenced by rb_filesystem_encoding().

rb_encoding* rb_filesystem_encoding ( void  )
rb_encoding* rb_find_encoding ( VALUE  enc)

Definition at line 201 of file encoding.c.

References enc_check_encoding(), NULL, rb_enc_from_index(), RDATA, and str_find_encindex().

Referenced by find_encoding().

void rb_gc_mark_encodings ( void  )

Definition at line 211 of file encoding.c.

Referenced by gc_marks().

ID rb_id_encoding ( void  )

Definition at line 683 of file encoding.c.

References CONST_ID, and id_encoding.

Referenced by enc_set_index(), id2encidx(), rb_enc_get_index(), w_encoding(), and w_obj_each().

int rb_isalnum ( int  c)

Definition at line 1882 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_ALNUM.

int rb_isalpha ( int  c)

Definition at line 1883 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_ALPHA.

int rb_isblank ( int  c)

Definition at line 1884 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_BLANK.

int rb_iscntrl ( int  c)

Definition at line 1885 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_CNTRL.

int rb_isdigit ( int  c)

Definition at line 1886 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_DIGIT.

Referenced by f_format().

int rb_isgraph ( int  c)

Definition at line 1887 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_GRAPH.

int rb_islower ( int  c)

Definition at line 1888 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_LOWER.

int rb_isprint ( int  c)

Definition at line 1889 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_PRINT.

Referenced by curses_getch(), and window_getch().

int rb_ispunct ( int  c)

Definition at line 1890 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_PUNCT.

Referenced by rb_id2str().

int rb_isspace ( int  c)

Definition at line 1891 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_SPACE.

Referenced by rb_str_lstrip_bang(), rb_str_rstrip_bang(), and rb_str_split_m().

int rb_isupper ( int  c)

Definition at line 1892 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_UPPER.

int rb_isxdigit ( int  c)

Definition at line 1893 of file encoding.c.

References ctype_test, and ONIGENC_CTYPE_XDIGIT.

VALUE rb_locale_charmap ( VALUE  klass)
int rb_locale_encindex ( void  )
rb_encoding* rb_locale_encoding ( void  )
VALUE rb_obj_encoding ( VALUE  obj)
rb_encoding* rb_to_encoding ( VALUE  enc)
int rb_to_encoding_index ( VALUE  enc)
int rb_tolower ( int  c)

Definition at line 1896 of file encoding.c.

References ONIGENC_ASCII_CODE_TO_LOWER_CASE, and rb_isascii.

Referenced by readline_attempted_completion_function().

int rb_toupper ( int  c)

Definition at line 1902 of file encoding.c.

References ONIGENC_ASCII_CODE_TO_UPPER_CASE, and rb_isascii.

int rb_usascii_encindex ( void  )
rb_encoding* rb_usascii_encoding ( void  )
int rb_utf8_encindex ( void  )
rb_encoding* rb_utf8_encoding ( void  )
static VALUE require_enc ( VALUE  enclib)
static

Definition at line 573 of file encoding.c.

References rb_require_safe(), and rb_safe_level.

Referenced by load_encoding().

static rb_encoding* set_base_encoding ( int  index,
rb_encoding base 
)
static
static VALUE set_default_external ( VALUE  klass,
VALUE  encoding 
)
static

Definition at line 1361 of file encoding.c.

References rb_enc_set_default_external(), and rb_warning().

Referenced by Init_Encoding().

static VALUE set_default_internal ( VALUE  klass,
VALUE  encoding 
)
static

Definition at line 1444 of file encoding.c.

References rb_enc_set_default_internal(), and rb_warning().

Referenced by Init_Encoding().

static void set_encoding_const ( const char *  name,
rb_encoding enc 
)
static
static int str_find_encindex ( VALUE  enc)
static
static int str_to_encindex ( VALUE  enc)
static

Definition at line 178 of file encoding.c.

References rb_eArgError, rb_raise(), RSTRING_PTR, and str_find_encindex().

Referenced by enc_find(), and str_to_encoding().

static rb_encoding* str_to_encoding ( VALUE  enc)
static

Definition at line 188 of file encoding.c.

References rb_enc_from_index(), and str_to_encindex().

Referenced by rb_to_encoding().

Variable Documentation

int count
struct default_encoding default_external = {0}
static

Definition at line 1256 of file encoding.c.

struct default_encoding default_internal = {-2}
static

Definition at line 1368 of file encoding.c.

struct { ... } enc_table
const rb_data_type_t encoding_data_type
static
Initial value:
= {
"encoding",
{0, 0, enc_memsize,},
}
static size_t enc_memsize(const void *p)
Definition: encoding.c:69

Definition at line 74 of file encoding.c.

ID id_encoding
static

Definition at line 39 of file encoding.c.

Referenced by rb_id_encoding().

struct rb_encoding_entry* list
st_table* names

Definition at line 53 of file encoding.c.

Referenced by code_page(), make_hostent_internal(), match_inspect(), and sock_s_gethostbyaddr().

rb_encoding OnigEncodingUS_ASCII
rb_encoding OnigEncodingUTF_8
VALUE rb_cEncoding
VALUE rb_encoding_list
static

Definition at line 41 of file encoding.c.

Referenced by enc_list(), enc_register_at(), Init_Encoding(), and rb_enc_from_encoding_index().

int size

Definition at line 52 of file encoding.c.

Referenced by add_code_range_to_buf0(), allocate_sorted_heaps(), argf_memsize(), ary2list(), ary2list2(), backtrace_each(), backtrace_to_location_ary(), backtrace_to_str_ary(), bdigbitsize(), BSD_vfprintf(), check_machine_stack_size(), closure_memsize(), cont_memsize(), cont_save_machine_stack(), date_strftime_alloc(), dh_generate(), dlcfunc_memsize(), dsa_generate(), dump_node(), each_cons_i(), each_slice_i(), enum_cycle_size(), enum_each_cons(), enum_each_cons_size(), enum_each_slice(), enum_each_slice_size(), enumerator_init(), enumerator_initialize(), env_memsize(), fiber_memsize(), finish_overlapped(), finish_overlapped_socket(), fmt_setup(), function_memsize(), get_line_info(), get_user_from_path(), io_fread(), iseq_memsize(), iseq_set_local_table(), lazy_initialize(), make_readconv(), memsize_of(), mmrot3_(), mmswap_(), ole_mb2wc(), ole_vstr2wc(), ole_wc2mb(), onig_memsize(), onig_region_memsize(), onig_set_match_stack_limit_size(), ossl_dh_s_generate(), ossl_rsa_s_generate(), overlapped_socket_io(), parser_memsize(), rb_ary_initialize(), rb_dlptr_initialize(), rb_dlptr_minus(), rb_dlptr_new2(), rb_dlptr_plus(), rb_dlptr_s_malloc(), rb_dlptr_size_get(), rb_dlptr_size_set(), rb_econv_memsize(), rb_fiddle_ptr_initialize(), rb_fiddle_ptr_minus(), rb_fiddle_ptr_new2(), rb_fiddle_ptr_plus(), rb_fiddle_ptr_s_malloc(), rb_fiddle_ptr_size_get(), rb_fiddle_ptr_size_set(), rb_file_expand_path_internal(), rb_io_memsize(), rb_iseq_disasm(), rb_str_justify(), rb_strftime_alloc(), rb_struct_new(), rb_transcoding_memsize(), rb_w32_read(), rb_w32_write(), rb_zstream_set_avail_out(), recvmsg(), reg_get_val(), remove_invalid_alternative_data(), replace_to_long_name(), resize_property_list(), rsa_generate(), ruby_qsort(), sendmsg(), st_init_table_with_size(), strscan_memsize(), tcltklib_compile_info(), thread_memsize(), tk_conv_args(), unset_addr_list_add(), unset_addr_list_init(), vm_malloc_fixup(), vm_malloc_prepare(), vm_memsize(), vm_xcalloc(), vm_xfree(), vm_xrealloc(), window_memsize(), wmap_memsize(), wstati64(), yaml_emitter_set_output_string(), yaml_parser_set_input_string(), yaml_parser_update_buffer(), yaml_string_read_handler(), and yaml_string_write_handler().