• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/src/

Lines Matching +defs:prop +defs:start

681 #define CODING_ADD_COMPOSITION_START(coding, start, method)	\
687 data[1] = cmp_data->char_offset + start; \
968 /* SRC_BASE remembers the start position in source in each loop.
1356 o CSI '1' ']' -- start of left-to-right text
1357 o CSI '2' ']' -- start of right-to-left text
1362 o ESC '0' -- start relative composition
1364 o ESC '2' -- start rule-base composition (*)
1365 o ESC '3' -- start relative composition with alternate chars (**)
1366 o ESC '4' -- start rule-base composition with alternate chars (**)
1481 /* ESC <Fp> for start/end composition. */
1728 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4.
1745 /* This is surely the start of a composition. We must be sure \
1749 coding->cmp_data in the caller, then start the decoding \
1840 /* SRC_BASE remembers the start position in source in each loop.
2063 case '0': case '2': case '3': case '4': /* start composition */
2084 case '1': /* start of left-to-right direction */
2092 case '2': /* start of right-to-left direction */
2529 /* Produce codes for indicating the start of a composition sequence
2565 /* Produce composition start sequence ESC 0. Here, this sequence
2566 doesn't mean the start of a new composition but means that we have
2672 /* SRC_BASE remembers the start position in source in each loop.
2717 /* Check composition start and end. */
3072 /* SRC_BASE remembers the start position in source in each loop.
3194 /* SRC_BASE remembers the start position in source in each loop.
3346 /* SRC_BASE remembers the start position in source in each loop.
3434 /* SRC_BASE remembers the start position in source in each loop.
3908 int start = XINT (XCAR (this));
3911 if (start >= 0 && start <= end && end < 256)
3912 while (start <= end)
3913 coding->spec.ccl.valid_codes[start++] = 1;
5402 Lisp_Object prop;
5403 int start, end;
5409 if (!find_composition (from, to, &start, &end, &prop, obj)
5412 if (start < from
5413 && (!find_composition (end, to, &start, &end, &prop, obj)
5419 if (COMPOSITION_VALID_P (start, end, prop))
5421 enum composition_method method = COMPOSITION_METHOD (prop);
5425 /* For relative composition, we remember start and end
5428 CODING_ADD_COMPOSITION_START (coding, start - from, method);
5434 val = COMPOSITION_COMPONENTS (prop);
5459 start = end;
5461 while (start < to
5462 && find_composition (start, to, &start, &end, &prop, obj)
5881 unsigned char *start = dst;
5890 inserted_byte += dst - start;
6683 (start, end, highest)
6684 Lisp_Object start, end, highest;
6690 CHECK_NUMBER_COERCE_MARKER (start);
6693 validate_region (&start, &end);
6694 from = XINT (start), to = XINT (end);
6891 (start, end)
6892 Lisp_Object start, end;
6899 if (STRINGP (start))
6901 if (!STRING_MULTIBYTE (start))
6903 p1 = SDATA (start), p1end = p1 + SBYTES (start);
6905 if (SCHARS (start) != SBYTES (start))
6912 CHECK_NUMBER_COERCE_MARKER (start);
6914 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end))
6915 args_out_of_range (start, end);
6918 from = CHAR_TO_BYTE (XINT (start));
6926 if (XINT (end) - XINT (start) != to - from)
7036 (start, end, coding_system, count, string)
7037 Lisp_Object start, end, coding_system, count, string;
7048 validate_region (&start, &end);
7049 from = XINT (start);
7062 CHECK_NATNUM (start);
7064 from = XINT (start);
7068 args_out_of_range_3 (string, start, end);
7118 code_convert_region1 (start, end, coding_system, encodep)
7119 Lisp_Object start, end, coding_system;
7125 CHECK_NUMBER_COERCE_MARKER (start);
7129 validate_region (&start, &end);
7130 from = XFASTINT (start);
7157 (start, end, coding_system)
7158 Lisp_Object start, end, coding_system;
7160 return code_convert_region1 (start, end, coding_system, 0);
7172 (start, end, coding_system)
7173 Lisp_Object start, end, coding_system;
7175 return code_convert_region1 (start, end, coding_system, 1);
7459 For process I/O, `call-process', `call-process-region', or `start-process'.
7759 Qstart_process = intern ("start-process");