Searched refs:scanner (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-current/contrib/kyua/engine/
H A Dscanner.hpp29 /// \file engine/scanner.hpp
57 class scanner { class in namespace:engine
63 scanner(const model::test_programs_vector&, const std::set< test_filter >&);
64 ~scanner(void);
H A Dscanner_fwd.hpp30 /// Forward declarations for engine/scanner.hpp
43 /// Result type yielded by the scanner: a (test program, test case name) pair.
54 class scanner;
H A Dscanner_test.cpp29 #include "engine/scanner.hpp"
103 /// The scanner only cares about the relative path of the test program object
131 /// Yields all test cases in the scanner for simplicity of testing.
133 /// In most of the tests below, we just care about the scanner returning the
138 /// \param scanner The scanner on which to iterate.
140 /// \return The full collection of results yielded by the scanner.
142 yield_all(engine::scanner& scanner) argument
145 while (!scanner
[all...]
H A Dscanner.cpp29 #include "engine/scanner.hpp"
71 /// Internal implementation for the scanner class.
72 struct engine::scanner::impl : utils::noncopyable {
170 engine::scanner::scanner(const model::test_programs_vector& test_programs, function in class:engine::scanner
178 engine::scanner::~scanner(void)
188 engine::scanner::yield(void)
203 engine::scanner::done(void)
213 engine::scanner
[all...]
/freebsd-current/contrib/flex/src/
H A Dscanopt.h79 /* Initializes scanner and checks option list for errors.
90 /* Frees memory used by scanner.
92 int scanopt_destroy (scanopt_t * scanner);
97 * scanner - The scanner, already initialized with scanopt_init().
102 int scanopt_usage (scanopt_t * scanner, FILE * fp, const char *usage);
107 * scanner - The scanner, already initialized with scanopt_init().
119 int scanopt (scanopt_t * scanner, char **optarg, int *optindex);
H A Dscanopt.c221 * scanner - The scanner, already initialized with scanopt_init().
230 int scanopt_usage (scanopt_t *scanner, FILE *fp, const char *usage)
245 s = (struct _scanopt_t *) scanner;
229 scanopt_usage(scanopt_t *scanner, FILE *fp, const char *usage) argument
/freebsd-current/usr.sbin/jail/
H A Djailparse.y61 %lex-param { void *scanner }
62 %parse-param { void *scanner }
74 if (!special_param($2, scanner)) {
237 struct cflex *cflex = yyget_extra(scanner);
239 if (!yyget_text(scanner))
241 cflex->cfname, yyget_lineno(scanner), s);
242 else if (!yyget_text(scanner)[0])
247 cflex->cfname, yyget_lineno(scanner),
248 yyget_text(scanner), s);
256 special_param(struct cfparam *p, void *scanner)
[all...]
H A Djailp.h219 extern void include_config(void *scanner, const char *cfname);
243 extern struct cflex *yyget_extra(void *scanner);
244 extern FILE *yyget_in(void *scanner);
245 extern int yyget_lineno(void *scanner);
246 extern char *yyget_text(void *scanner);
H A Djaillex.l45 YYSTYPE *yylval, yyscan_t scanner);
157 yyscan_t scanner)
162 struct yyguts_t *yyg = scanner;
H A Dconfig.c54 extern int yylex_init_extra(struct cflex *extra, void *scanner);
55 extern int yylex_destroy(void *scanner);
56 extern int yyparse(void *scanner);
57 extern int yyset_in(FILE *fp, void *scanner);
270 include_config(void *scanner, const char *cfname) argument
281 if (yyget_in(scanner) != stdin && cfname[0] != '/') {
282 const char *outer_cfname = yyget_extra(scanner)->cfname;
313 void *scanner; local
315 yylex_init_extra(&cflex, &scanner);
318 yyset_in(stdin, scanner);
[all...]
/freebsd-current/contrib/kyua/drivers/
H A Dlist_tests.cpp34 #include "engine/scanner.hpp"
73 engine::scanner scanner(kyuafile.test_programs(), filters);
75 while (!scanner.done()) {
76 const optional< engine::scan_result > result = scanner.yield();
83 return result(scanner.unused_filters());
H A Ddebug_test.cpp36 #include "engine/scanner.hpp"
80 engine::scanner scanner(kyuafile.test_programs(), filters);
82 while (!match && !scanner.done()) {
83 match = scanner.yield();
87 } else if (!scanner.done()) {
91 INV(match && scanner.done());
H A Drun_tests.cpp36 #include "engine/scanner.hpp"
71 /// returned by the scanner in any order, and we only want to put each test
273 engine::scanner scanner(kyuafile.test_programs(), filters);
289 optional< engine::scan_result > match = scanner.yield();
327 } while (!in_flight.empty() || !scanner.done());
343 return result(scanner.unused_filters());
/freebsd-current/contrib/libpcap/msdos/
H A Dmakefile.dj14 PREREQUISITES = scanner.c grammar.c tokdefs.h version.h msdos/pkt_stub.inc
25 SOURCES = grammar.c scanner.c bpf/net/bpf_filter.c bpf_image.c bpf_dump.c \
93 scanner.c: scanner.l
112 scanner.c: scanner.l
115 scanner.l: pcap-int.h pcap-namedb.h gencode.h grammar.h
H A Dmakefile24 SOURCE = grammar.c scanner.c bpf_filt.c bpf_imag.c bpf_dump.c \
62 scanner.c: scanner.l
63 flex -Ppcap_ -7 -oscanner.c scanner.l
99 @del scanner.c
124 scanner.obj: scanner.c pcap-int.h pcap.h pcap-bpf.h gencode.h \
162 scanner.o32: scanner.c pcap-int.h pcap.h pcap-bpf.h gencode.h \
H A Dmakefile.wc27 OBJS = $(OBJDIR)\grammar.obj $(OBJDIR)\scanner.obj $(OBJDIR)\pcap.obj &
72 scanner.c: scanner.l
88 @del scanner.c
114 $(OBJDIR)\scanner.obj: scanner.c pcap-int.h pcap.h pcap-bpf.h gencode.h &
/freebsd-current/usr.bin/localedef/
H A DMakefile11 scanner.c \
/freebsd-current/contrib/libpcap/
H A DMakefile.in98 GENERATED_C_SRC = scanner.c grammar.c
163 scanner.h grammar.h
400 scanner.l \
515 scanner.c: $(srcdir)/scanner.l
516 $(LEX) -P pcap_ --header-file=scanner.h --nounput -o scanner.c $<
517 scanner.h: scanner.c
520 rm -f scanner
[all...]
/freebsd-current/usr.bin/bc/
H A Dscan.l363 YY_FATAL_ERROR( "input in flex scanner failed" );
/freebsd-current/lib/libpcap/
H A DMakefile26 scanner.l \
134 CLEANFILES+=grammar.y scanner.h tokdefs.h
137 LFLAGS+=-Ppcap_ --header-file=${.OBJDIR}/scanner.h --nounput
/freebsd-current/contrib/ntp/ntpd/
H A Dkeyword-gen.c2 * keyword-gen.c -- generate keyword scanner finite state machine and
285 big_scan_state sst[MAXSTATES]; /* scanner FSM state entries */
461 * scanner state machine is built and the practice of
512 /* Define a function to create the states of the scanner. This function
565 "fatal, keyword scanner state array "
623 * creates a keywords scanner out of it.
629 u_short scanner; local
633 scanner = 0;
637 scanner =
642 scanner);
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp432 /// position of the scanner.
528 /// The current position of the scanner.
610 Scanner scanner(Input, SM);
612 Token T = scanner.getNext();
694 Scanner scanner(Input, SM);
696 Token T = scanner.getNext();
1917 : scanner(new Scanner(Input, SM, ShowColors, EC)) {}
1921 : scanner(new Scanner(InputBuffer, SM, ShowColors, EC)) {}
1925 bool Stream::failed() { return scanner->failed(); }
1933 scanner
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp1586 RelocationScanner scanner;
1591 scanner.template scanSection<ELFT>(*s);
1598 RelocationScanner scanner;
1601 scanner.template scanSection<ELFT>(*sec);
1605 scanner.template scanSection<ELFT>(*sec);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h114 std::unique_ptr<Scanner> scanner; member in class:llvm::yaml::Stream
/freebsd-current/sys/net80211/
H A Dieee80211_freebsd.h439 _IEEE80211_POLICY_MODULE(scanner, name, version)

Completed in 164 milliseconds

12