Home
last modified time | relevance | path

Searched refs:esc_start (Results 1 – 9 of 9) sorted by relevance

/dports/devel/efl/efl-1.25.1/src/lib/efl/interfaces/
H A Defl_text_markup_util.c350 char *tag_start, *tag_end, *esc_start, *esc_end; in _text_util_markup_to_text() local
354 tag_start = tag_end = esc_start = esc_end = NULL; in _text_util_markup_to_text()
369 (tag_start) || (esc_start)) in _text_util_markup_to_text()
411 escape = _escaped_char_get(esc_start, esc_end + 1); in _text_util_markup_to_text()
413 esc_start = esc_end = NULL; in _text_util_markup_to_text()
432 if (!esc_start) in _text_util_markup_to_text()
463 esc_start = p; in _text_util_markup_to_text()
478 if (esc_start) in _text_util_markup_to_text()
/dports/textproc/dblatex/dblatex-0.3.11py3/lib/dbtexmf/dblatex/
H A Drawverb.py80 self.esc_start = b""
91 self.esc_start = m.group(1)
109 if not(self.esc_start) and c.get_errors() != 0:
128 if (self.esc_start):
129 if self.esc_start != self.default_esc_start:
130 return VerbCodec(self.esc_start, self.esc_stop,
131 b"verbtex" + self.esc_start,
/dports/devel/R-cran-fansi/fansi/src/
H A Dunhandled.c70 int esc_start = state.pos_ansi; in FANSI_unhandled_esc() local
83 if(esc_start == INT_MAX || state.pos_ansi == INT_MAX) in FANSI_unhandled_esc()
95 INTEGER(err_vals)[1] = esc_start + 1; in FANSI_unhandled_esc()
H A Dtohtml.c542 int esc_start = state.pos_byte; in FANSI_esc_to_html() local
545 bytes_esc += state.pos_byte - esc_start; // cannot overflow int in FANSI_esc_to_html()
/dports/games/tkmoo/tkMOO-light-0.3.32/plugins/
H A Dansi.tcl364 while { [set esc_start [string first "$ansi_esc" $line]] != -1 } {
366 set before [string range $line 0 [expr $esc_start - 1]]
379 set rest [string range $line [expr $esc_start + 1] end]
/dports/devel/efl/efl-1.25.1/src/lib/edje/
H A Dedje_legacy.c778 char *esc_start = NULL, *esc_end = NULL; in edje_object_part_text_escaped_set() local
786 if ((*p == 0) || (esc_end) || (esc_start)) in edje_object_part_text_escaped_set()
793 (esc_start, esc_end + 1); in edje_object_part_text_escaped_set()
795 esc_start = esc_end = NULL; in edje_object_part_text_escaped_set()
799 … if (!s) s = esc_start; /* This would happen when there is & that isn't escaped */ in edje_object_part_text_escaped_set()
809 if (!s) s = esc_start; /* This would happen when there is & that isn't escaped */ in edje_object_part_text_escaped_set()
810 esc_start = p; in edje_object_part_text_escaped_set()
817 if (esc_start) in edje_object_part_text_escaped_set()
/dports/devel/efl/efl-1.25.1/src/lib/evas/canvas/
H A Devas_object_textblock.c8833 (tag_start) || (esc_start)) in _evas_object_textblock_text_markup_prepend()
8855 esc_start = esc_end = NULL; in _evas_object_textblock_text_markup_prepend()
8860 esc_start = esc_end = NULL; in _evas_object_textblock_text_markup_prepend()
8876 esc_start = esc_end = NULL; in _evas_object_textblock_text_markup_prepend()
8879 if (!esc_start) in _evas_object_textblock_text_markup_prepend()
8909 esc_start = p; in _evas_object_textblock_text_markup_prepend()
8917 if (esc_start) in _evas_object_textblock_text_markup_prepend()
9146 (tag_start) || (esc_start)) in evas_textblock_text_markup_to_utf8()
9220 if (!esc_start) in evas_textblock_text_markup_to_utf8()
9251 esc_start = p; in evas_textblock_text_markup_to_utf8()
[all …]
/dports/devel/efl/efl-1.25.1/src/lib/elementary/
H A Delm_entry.c3008 int tag_start, esc_start; in _text_append_idler() local
3010 tag_start = esc_start = -1; in _text_append_idler()
3018 if (esc_start == -1) in _text_append_idler()
3028 esc_start = prev_pos; in _text_append_idler()
3030 esc_start = -1; in _text_append_idler()
3038 else if (esc_start >= 0) in _text_append_idler()
3040 sd->append_text_position = esc_start; in _text_append_idler()
/dports/editors/neovim/neovim-0.6.1/src/nvim/viml/parser/
H A Dexpressions.c1683 const char *const esc_start = p; in parse_quoted_string() local
1695 size -= (size_t)((p - (esc_start - 1)) - utf_char2len(nr)); in parse_quoted_string()