Home
last modified time | relevance | path

Searched refs:lex (Results 1 – 25 of 84) sorted by relevance

1234

/dragonfly/contrib/binutils-2.27/gas/
HDapp.c59 static char lex[256]; variable
86 #define IS_SYMBOL_COMPONENT(c) (lex[c] == LEX_IS_SYMBOL_COMPONENT)
87 #define IS_WHITESPACE(c) (lex[c] == LEX_IS_WHITESPACE)
88 #define IS_LINE_SEPARATOR(c) (lex[c] == LEX_IS_LINE_SEPARATOR)
89 #define IS_PARALLEL_SEPARATOR(c) (lex[c] == LEX_IS_PARALLEL_SEPARATOR)
90 #define IS_COMMENT(c) (lex[c] == LEX_IS_COMMENT_START)
91 #define IS_LINE_COMMENT(c) (lex[c] == LEX_IS_LINE_COMMENT_START)
92 #define IS_NEWLINE(c) (lex[c] == LEX_IS_NEWLINE)
106 lex[' '] = LEX_IS_WHITESPACE; in do_scrub_begin()
107 lex['\t'] = LEX_IS_WHITESPACE; in do_scrub_begin()
[all …]
/dragonfly/contrib/binutils-2.34/gas/
HDapp.c62 static char lex[256]; variable
89 #define IS_SYMBOL_COMPONENT(c) (lex[c] == LEX_IS_SYMBOL_COMPONENT)
90 #define IS_WHITESPACE(c) (lex[c] == LEX_IS_WHITESPACE)
91 #define IS_LINE_SEPARATOR(c) (lex[c] == LEX_IS_LINE_SEPARATOR)
92 #define IS_PARALLEL_SEPARATOR(c) (lex[c] == LEX_IS_PARALLEL_SEPARATOR)
93 #define IS_COMMENT(c) (lex[c] == LEX_IS_COMMENT_START)
94 #define IS_LINE_COMMENT(c) (lex[c] == LEX_IS_LINE_COMMENT_START)
95 #define IS_NEWLINE(c) (lex[c] == LEX_IS_NEWLINE)
109 lex[' '] = LEX_IS_WHITESPACE; in do_scrub_begin()
110 lex['\t'] = LEX_IS_WHITESPACE; in do_scrub_begin()
[all …]
/dragonfly/contrib/grep/lib/
HDdfa.c443 struct lexer_state lex; member
909 int nbytes = mbs_to_wchar (&dfa->lex.wctok, dfa->lex.ptr, dfa->lex.left, in fetch_wc()
911 int c = nbytes == 1 ? to_uchar (dfa->lex.ptr[0]) : EOF; in fetch_wc()
912 dfa->lex.ptr += nbytes; in fetch_wc()
913 dfa->lex.left -= nbytes; in fetch_wc()
922 if (! dfa->lex.left) in bracket_fetch_wc()
981 dfa->lex.brack.nchars = 0; in parse_bracket_exp()
991 wint_t wc = dfa->lex.wctok; in parse_bracket_exp()
1007 wc1 = dfa->lex.wctok; in parse_bracket_exp()
1018 if (dfa->lex.left == 0 in parse_bracket_exp()
[all …]
/dragonfly/contrib/file/magic/Magdir/
HDlex3 # $File: lex,v 1.6 2009/09/19 16:28:10 christos Exp $
4 # lex: file(1) magic for lex
7 0 search/100 yyprevious C program text (from lex)
11 # lex description file, from Daniel Quinlan <quinlan@yggdrasil.com>
12 0 search/1 %{ lex description text
/dragonfly/contrib/bmake/mk/
HDposix.mk43 LEX ?= lex
79 ${CC} ${CFLAGS} -c lex.yy.c
80 rm -f lex.yy.c
81 mv lex.yy.o $@
91 mv lex.yy.c $@
HDautodep.mk103 … "${CC_MD} -M ${CPPFLAGS_MD} lex.yy.c | sed '/:/s/^/$@ /' > $@" || { ${RM} -f lex.yy.c $@; false; }
104 @${RM} -f lex.yy.c
125 … ${CC_MD} ${CFLAGS_MD:S/D//} ${CPPFLAGS_MD} lex.yy.c > $@ || { ${RM} -f lex.yy.c $@; false; }
126 ${RM} -f lex.yy.c
/dragonfly/usr.bin/flex/
HDMakefile11 LINKS+= ${BINDIR}/flex ${BINDIR}/lex
12 LINKS+= ${BINDIR}/flex ${BINDIR}/lex++
15 MLINKS+= flex.1 lex.1
16 MLINKS+= flex.1 lex++.1
/dragonfly/contrib/gcc-4.7/gcc/
HDgraphite-dependences.c370 ppl_Pointset_Powerset_C_Polyhedron_t res, lex; in build_lexicographical_constraint() local
374 lex = build_pairwise_scheduling (dim, 0, offset, direction); in build_lexicographical_constraint()
375 ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag); in build_lexicographical_constraint()
377 if (!ppl_powerset_is_empty (lex)) in build_lexicographical_constraint()
378 ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex); in build_lexicographical_constraint()
380 ppl_delete_Pointset_Powerset_C_Polyhedron (lex); in build_lexicographical_constraint()
393 lex = build_pairwise_scheduling (dim, i + 1, offset, direction); in build_lexicographical_constraint()
394 ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag); in build_lexicographical_constraint()
396 if (!ppl_powerset_is_empty (lex)) in build_lexicographical_constraint()
397 ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex); in build_lexicographical_constraint()
[all …]
/dragonfly/contrib/bmake/mk/sys/
HDLinux.mk63 LEX ?= lex
161 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
162 rm -f lex.yy.c
165 mv lex.yy.c ${.TARGET}
168 ${COMPILE.c} -o ${.TARGET} lex.yy.c
169 rm -f lex.yy.c
HDGeneric.mk73 LEX ?= lex
177 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
178 rm -f lex.yy.c
181 mv lex.yy.c ${.TARGET}
184 ${COMPILE.c} -o ${.TARGET} lex.yy.c
185 rm -f lex.yy.c
HDAIX.mk60 LEX ?= lex
158 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
159 rm -f lex.yy.c
162 mv lex.yy.c ${.TARGET}
165 ${COMPILE.c} -o ${.TARGET} lex.yy.c
166 rm -f lex.yy.c
HDOpenBSD.mk71 LEX ?= lex
179 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
180 rm -f lex.yy.c
183 mv lex.yy.c ${.TARGET}
186 ${COMPILE.c} -o ${.TARGET} lex.yy.c
187 rm -f lex.yy.c
HDIRIX.mk61 LEX ?= lex
169 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
170 rm -f lex.yy.c
173 mv lex.yy.c ${.TARGET}
176 ${COMPILE.c} -o ${.TARGET} lex.yy.c
177 rm -f lex.yy.c
HDOSF1.mk70 LEX ?= lex
172 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
173 rm -f lex.yy.c
176 mv lex.yy.c ${.TARGET}
179 ${COMPILE.c} -o ${.TARGET} lex.yy.c
180 rm -f lex.yy.c
HDHP-UX.mk94 LEX ?= lex
200 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
201 rm -f lex.yy.c
204 mv lex.yy.c ${.TARGET}
207 ${COMPILE.c} -o ${.TARGET} lex.yy.c
208 rm -f lex.yy.c
HDSunOS.mk91 LEX ?= lex
193 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
194 rm -f lex.yy.c
197 mv lex.yy.c ${.TARGET}
200 ${COMPILE.c} -o ${.TARGET} lex.yy.c
201 rm -f lex.yy.c
HDNetBSD.mk96 LEX ?= lex
204 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
205 rm -f lex.yy.c
208 mv lex.yy.c ${.TARGET}
211 ${COMPILE.c} -o ${.TARGET} lex.yy.c
212 rm -f lex.yy.c
HDDarwin.mk74 LEX ?= lex
196 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
197 rm -f lex.yy.c
200 mv lex.yy.c ${.TARGET}
203 ${COMPILE.c} -o ${.TARGET} lex.yy.c
204 rm -f lex.yy.c
HDUnixWare.mk85 LEX ?= lex
221 ${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
222 rm -f lex.yy.c
225 mv lex.yy.c ${.TARGET}
228 ${COMPILE.c} -o ${.TARGET} lex.yy.c
229 rm -f lex.yy.c
/dragonfly/gnu/usr.bin/cc80/cc_prep/
HDMakefile142 gengtype-lex.head:
157 CLEANFILES+= i386-builtin-types.inc gengtype-lex.head
158 afterdepend: i386-builtin-types.inc gengtype-lex.head
/dragonfly/lib/libfetch/
HDhttp.c757 http_header_lex_t lex; in http_parse_authenticate() local
771 lex = http_header_lex(&cp, key); in http_parse_authenticate()
772 if (lex != HTTPHL_WORD) in http_parse_authenticate()
801 lex = http_header_lex(&cp, key); in http_parse_authenticate()
802 if (lex != HTTPHL_WORD) in http_parse_authenticate()
806 lex = http_header_lex(&cp, buf); in http_parse_authenticate()
807 if (lex != '=') in http_parse_authenticate()
811 lex = http_header_lex(&cp, value); in http_parse_authenticate()
812 if (lex != HTTPHL_WORD && lex != HTTPHL_STRING) in http_parse_authenticate()
838 lex = http_header_lex(&cp, key); in http_parse_authenticate()
[all …]
/dragonfly/share/mk/
HDsys.mk95 LEX ?= lex
185 ${CC} ${CFLAGS} -c lex.yy.c
186 rm -f lex.yy.c
187 mv lex.yy.o ${.TARGET}
195 mv lex.yy.c ${.TARGET}
/dragonfly/gnu/usr.bin/cc80/cc_tools/tools/
HDMakefile10 LEX_HEAD= ../../cc_prep/gengtype-lex.head
25 BUILD_GTYPE= gengtype-lex.no \
200 gengtype-lex.c: gengtype-lex.l ${LEX_HEAD}
217 CLEANFILES+= gengtype-lex.c gengtype-lex.c.tmp
/dragonfly/gnu/usr.bin/cc47/cc_tools/tools/
HDMakefile48 gengtype.nx: gengtype-lex.no gengtype-parse.no gengtype-state.no version.no
63 CLEANFILES+= gengtype-lex.c gengtype-lex.no gengtype-parse.no
/dragonfly/usr.sbin/kbdcontrol/
HDMakefile4 SRCS= kbdcontrol.c lex.l

1234