Searched refs:rb_enc_codepoint (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dencoding.h152 unsigned int rb_enc_codepoint(const char *p, const char *e, rb_encoding *enc);
154 #define rb_enc_codepoint(p,e,enc) rb_enc_codepoint_len((p),(e),0,(enc)) macro
/macosx-10.9.5/ruby-104/ruby/
H A Ddir.c144 c1 = rb_enc_codepoint(s, send, enc);
146 c2 = rb_enc_codepoint(t1, pend, enc);
149 c2 = rb_enc_codepoint(t2, pend, enc);
160 c1 = rb_enc_toupper(rb_enc_codepoint(s, send, enc), enc);
161 c2 = rb_enc_toupper(rb_enc_codepoint(p, pend, enc), enc);
253 if (rb_enc_toupper(rb_enc_codepoint(p, pend, enc), enc) !=
254 rb_enc_toupper(rb_enc_codepoint(s, send, enc), enc))
H A Dencoding.c946 #undef rb_enc_codepoint macro
948 rb_enc_codepoint(const char *p, const char *e, rb_encoding *enc) function
H A Dstring.c4572 (cc = rb_enc_codepoint(p,pend,enc),
6225 newline = rb_enc_codepoint(RSTRING_PTR(rs), RSTRING_END(rs), enc);
6237 while (p < pend && rb_enc_codepoint(p, pend, enc) == newline) {
6921 unsigned int c = rb_enc_codepoint(tp, e, enc);
7236 c = rb_enc_codepoint(RSTRING_PTR(s), RSTRING_END(s), STR_ENC_GET(s));
H A Dio.c3587 c = rb_enc_codepoint(fptr->cbuf.ptr+fptr->cbuf.off,
3609 c = rb_enc_codepoint(fptr->rbuf.ptr+fptr->rbuf.off,

Completed in 125 milliseconds