HomeSort by: relevance | last modified time | path
    Searched defs:scanner (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/flex/dist/tests/
bison_yylloc_main.c 29 yyscan_t scanner; local
35 testlex_init ( &scanner );
36 testset_in(stdin,scanner);
37 testparse ( scanner );
38 testlex_destroy ( scanner );
bison_yylval_main.c 29 yyscan_t scanner; local
35 testlex_init ( &scanner );
36 testset_in(stdin,scanner);
37 testparse ( scanner );
38 testlex_destroy ( scanner );
header_r_main.c 28 /* The scanner itself is not important here.
38 yyscan_t scanner; local
42 testlex_init(&scanner);
43 testset_in(stdin,scanner);
44 testset_out(stdout,scanner);
45 testset_extra(extra,scanner);
47 fp = testget_in(scanner);
49 fp = testget_out(scanner);
52 while(testlex(scanner)) {
55 line = testget_lineno(scanner);
    [all...]
top_main.c 28 /* The scanner itself is not important here.
38 yyscan_t scanner; local
42 testlex_init(&scanner);
43 testset_in(stdin,scanner);
44 testset_out(stdout,scanner);
45 testset_extra(extra,scanner);
47 fp = testget_in(scanner);
49 fp = testget_out(scanner);
52 while(testlex(scanner)) {
55 line = testget_lineno(scanner);
    [all...]
  /src/external/gpl3/gcc/dist/libcc1/
findcomp.cc 30 class scanner class
34 scanner (const std::string &dir) function in class:scanner
39 ~scanner ()
65 scanner scan (dir);
  /src/external/gpl3/gcc.old/dist/libcc1/
findcomp.cc 30 class scanner class
34 scanner (const std::string &dir) function in class:scanner
39 ~scanner ()
65 scanner scan (dir);
  /src/external/bsd/ntp/dist/ntpd/
keyword-gen.c 4 * keyword-gen.c -- generate keyword scanner finite state machine and
287 big_scan_state sst[MAXSTATES]; /* scanner FSM state entries */
463 * scanner state machine is built and the practice of
514 /* Define a function to create the states of the scanner. This function
567 "fatal, keyword scanner state array "
625 * creates a keywords scanner out of it.
631 u_short scanner; local
635 scanner = 0;
639 scanner =
644 scanner);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
YAMLParser.h 63 class Scanner;
114 std::unique_ptr<Scanner> scanner; member in class:llvm::yaml::Stream
168 // These functions forward to Document and Scanner.
  /src/external/bsd/libpcap/dist/
gencode.c 64 #include "scanner.h"
754 yyscan_t scanner = NULL; local
819 if (pcap_lex_init(&scanner) != 0) {
821 errno, "can't initialize scanner");
825 in_buffer = pcap__scan_string(buf ? buf : "", scanner);
831 pcap_set_extra(&cstate, scanner);
837 if (pcap_parse(scanner, &cstate) != 0) {
890 pcap__delete_buffer(in_buffer, scanner);
891 if (scanner != NULL)
892 pcap_lex_destroy(scanner);
    [all...]

Completed in 23 milliseconds