Searched refs:from_byte (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/emacs-93/emacs/src/
H A Dinsdel.c346 adjust_markers_for_delete (from, from_byte, to, to_byte)
347 register int from, from_byte, to, to_byte;
365 m->bytepos -= to_byte - from_byte;
385 m->bytepos = from_byte;
412 adjust_markers_for_insert (from, from_byte, to, to_byte, before_markers)
413 register int from, from_byte, to, to_byte;
419 int nbytes = to_byte - from_byte;
431 if (m->bytepos == from_byte)
441 else if (m->bytepos > from_byte)
488 adjust_markers_for_replace (from, from_byte, old_char
1213 int from_byte = buf_charpos_to_bytepos (buf, from); local
1502 int from_byte, to_byte; local
1803 int from_byte, to_byte; local
[all...]
H A Dsyntax.c480 back_comment (from, from_byte, stop, comnested, comstyle, charpos_ptr, bytepos_ptr)
481 EMACS_INT from, from_byte, stop;
503 int comment_end_byte = from_byte;
527 DEC_BOTH (from, from_byte);
531 c = FETCH_CHAR (from_byte);
557 int next = from, next_byte = from_byte, next_c, next_syntax;
592 if (code != Sendcomment && char_quoted (from, from_byte))
625 comstart_byte = from_byte;
664 || (temp_byte = dec_bytepos (from_byte),
668 defun_start_byte = from_byte;
1211 register int from_byte = CHAR_TO_BYTE (from); local
2003 EMACS_INT from_byte; variable
2226 EMACS_INT from_byte; local
[all...]
H A Dcoding.c5545 code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace)
5546 int from, from_byte, to, to_byte, encodep, replace;
5549 int len = to - from, len_byte = to_byte - from_byte;
5566 TEMP_SET_PT_BOTH (from, from_byte);
5579 from_byte = CHAR_TO_BYTE (from), to_byte = CHAR_TO_BYTE (to);
5580 len_byte = to_byte - from_byte;
5599 move_gap_both (from, from_byte);
5602 detect_coding (coding, BYTE_POS_ADDR (from_byte), len_byte);
5620 detect_eol (coding, BYTE_POS_ADDR (from_byte), len_byte);
5658 del_range_2 (from, from_byte, t
6678 int from_byte, to_byte; variable
[all...]
H A Dcharset.c895 int from, from_byte, to, stop, stop_byte, i;
910 from_byte = CHAR_TO_BYTE (from);
915 find_charset_in_text (BYTE_POS_ADDR (from_byte), stop - from,
916 stop_byte - from_byte, charsets, table);
919 from = stop, from_byte = stop_byte;
893 int from, from_byte, to, stop, stop_byte, i; variable
H A Dfns.c1260 int from_byte = 0, to_byte = 0;
1294 from_byte = string_char_to_byte (string, from_char);
1302 res = make_specified_string (SDATA (string) + from_byte,
1303 to_char - from_char, to_byte - from_byte,
1329 int from_byte, to_byte;
1337 from_char = from_byte = 0;
1345 from_byte = string_char_to_byte (string, from_char);
1368 return make_specified_string (SDATA (string) + from_byte,
1369 to_char - from_char, to_byte - from_byte,
1377 substring_both (string, from, from_byte, t
1253 int from_byte = 0, to_byte = 0; variable
1322 int from_byte, to_byte; variable
[all...]
H A Dindent.c1906 int from_byte;
1990 from_byte = CHAR_TO_BYTE (from);
1991 if (from > BEGV && FETCH_BYTE (from_byte - 1) != '\n')
1895 int from_byte; local
H A Dprocess.c5478 int from_byte = -1, from = -1, to = -1;
5482 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5483 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
5484 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
5488 from_byte = buf - SDATA (object);
5489 from = string_byte_to_char (object, from_byte);
5490 to = string_byte_to_char (object, from_byte + len);
5495 if (from_byte >= 0)
5504 if (from_byte >= 0)
5506 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
5462 int from_byte = -1, from = -1, to = -1; local
[all...]

Completed in 229 milliseconds