Home
last modified time | relevance | path

Searched refs:parser (Results 1 – 25 of 32) sorted by relevance

12

/vim-8.2.3635/src/libvterm/src/
H A Dparser.c15 if(vt->parser.callbacks && vt->parser.callbacks->control) in do_control()
16 if((*vt->parser.callbacks->control)(control, vt->parser.cbdata)) in do_control()
35 if(vt->parser.callbacks && vt->parser.callbacks->csi) in do_csi()
40 vt->parser.intermedlen ? vt->parser.intermed : NULL, in do_csi()
57 if(vt->parser.callbacks && vt->parser.callbacks->escape) in do_escape()
75 if(vt->parser.callbacks && vt->parser.callbacks->osc) in string_fragment()
76 (*vt->parser.callbacks->osc)(vt->parser.v.osc.command, frag, vt->parser.cbdata); in string_fragment()
81 …(*vt->parser.callbacks->dcs)(vt->parser.v.dcs.command, vt->parser.v.dcs.commandlen, frag, vt->pars… in string_fragment()
209 vt->parser.v.csi.args[vt->parser.v.csi.argi] = 0; in vterm_input_write()
210 vt->parser.v.csi.args[vt->parser.v.csi.argi] *= 10; in vterm_input_write()
[all …]
H A Dvterm.c53 vt->parser.state = NORMAL; in vterm_new_with_allocator()
55 vt->parser.callbacks = NULL; in vterm_new_with_allocator()
56 vt->parser.cbdata = NULL; in vterm_new_with_allocator()
122 if(vt->parser.callbacks && vt->parser.callbacks->resize) in vterm_set_size()
123 (*vt->parser.callbacks->resize)(rows, cols, vt->parser.cbdata); in vterm_set_size()
H A Dvterm_internal.h212 } parser; member
/vim-8.2.3635/runtime/indent/
H A Docaml.vim144 if lline !~ '^\s*\(|[^\]]\|\(match\|type\|with\)\>\)\|\<\(function\|parser\|private\|with\)\s*$'
146 …return indent(searchpair('^\s*\(match\|type\)\>\|\<\(function\|parser\|private\|with\)\s*$', '', '…
209 …<\|\<\(begin\|do\|else\|fun\|function\|functor\|if\|initializer\|object\|parser\|private\|sig\|str…
265 " Subtract a 'shiftwidth' after lines matching 'match ... with parser':
266 if lline =~ '\<match\>.*\<with\>\s*\<parser\s*$'
H A Derlang.vim287 " Push a token onto the parser's stack.
297 " Pop a token from the parser's stack.
458 " This function is called when the parser encounters a syntax error.
477 " This function is called when the parser encounters an unexpected token,
478 " and the parser will return the number given back by UnexpectedToken.
/vim-8.2.3635/runtime/syntax/
H A Djproperties.vim23 " strictly, the Java properties parser also allows "id value", "id", and
105 " file parser won't issue an error on it, just set something wacky like zero
H A Dhtml.vim135 " The HTML 5.2 syntax 8.2.4.41: bogus comment is parser error; browser skips until next &gt
138 " Idem 8.2.4.43,44: Except <!--> and <!---> are parser errors
139 " Idem 8.2.4.52: dash-dash-bang (--!>) is error ignored by parser, also closes comment
141 " Idem 8.2.4.49: nested comment is parser error, except <!--> is all right
H A Dinittab.vim33 " Line parser
H A Dninja.vim11 " ninja lexer and parser are at
H A Dpccts.vim25 syn match pcctsDirective "^\s*#parser\>.*$" contains=pcctsString,pcctsComment
H A Delm.vim22 " elm/parser
H A Dyacc.vim57 syn match yaccParseOption '%\%(api\.pure\|pure-parser\|locations\|error-verbose\)\>'
H A Ddtrace.vim9 " dtrace lexer and parser are at
H A Docaml.vim179 syn keyword ocamlKeyword parser private rec
H A Dphp.vim133 " The HTML 5.2 syntax 8.2.4.41: bogus comment is parser error; browser skips until next &gt
136 " Idem 8.2.4.43,44: Except <!--> and <!---> are parser errors
137 " Idem 8.2.4.52: dash-dash-bang (--!>) is error ignored by parser, also closes comment
139 " Idem 8.2.4.49: nested comment is parser error, except <!--> is all right
/vim-8.2.3635/src/libvterm/t/
H A D03encoding_utf8.test8 # We want to prove the UTF-8 parser correctly handles all the sequences.
/vim-8.2.3635/runtime/autoload/
H A Dpython3complete.vim128 self.parser = PyParser()
131 sc = self.parser.parse(text,line)
135 except: dbg("parser: %s, %s" % (sys.exc_info()[0],sys.exc_info()[1]))
H A Dpythoncomplete.vim145 self.parser = PyParser()
148 sc = self.parser.parse(text,line)
152 except: dbg("parser: %s, %s" % (sys.exc_info()[0],sys.exc_info()[1]))
/vim-8.2.3635/runtime/doc/
H A Dft_ada.txt128 Exuberant Ctags uses its own multi-language code parser. The parser is quite
138 The Ada parser for Exuberant Ctags is fairly new - don't expect complete
H A Dxxd.man26 Note that a "lazy" parser is used which does not check for more than
H A Dtextprop.txt30 external parser. This only needs to be done once, not every time when
/vim-8.2.3635/src/libvterm/doc/
H A Dseqs.txt1 Sequences documented in parens are implicit ones from parser.c, which move
/vim-8.2.3635/
H A DFilelist349 src/libvterm/src/parser.c \
358 src/libvterm/t/02parser.test \
/vim-8.2.3635/src/
H A DMakefile3624 objects/vterm_parser.o: libvterm/src/parser.c $(TERM_DEPS)
3625 $(CCCTERM) -o $@ libvterm/src/parser.c
H A DMake_mvc.mak1893 $(OUTDIR)/vterm_parser.obj: $(OUTDIR) libvterm/src/parser.c $(TERM_DEPS)
1894 $(CCCTERM) /Fo$@ libvterm/src/parser.c

12