Home
last modified time | relevance | path

Searched refs:IS_EOL (Results 1 – 22 of 22) sorted by relevance

/dports/net/sems/sems-f89581a/core/
H A DAmConfigReader.cpp38 #define IS_EOL(c) ((c == '\0')||(c == '#')) macro
101 if(IS_EOL(*c)) continue; in loadFile()
107 while( !IS_EOL(*c) && !IS_SPACE(*c) ) c++; in loadFile()
149 while( !IS_EOL(*c) && !IS_SPACE(*c) ) c++; in loadFile()
275 if(IS_EOL(*c)) continue; in loadString()
309 while( !IS_EOL(*c) && !IS_SPACE(*c) ) c++; in loadString()
/dports/net/kamailio/kamailio-5.4.5/src/core/
H A Dcfg_parser.c219 #define IS_EOL(c) ((c) == '\n') /* End of line */ macro
254 if (IS_EOL(c)) { \
345 } else if (IS_EOL(c)) { in cfg_get_token()
365 } else if (IS_DELIM(c) || IS_EOL(c)) { in cfg_get_token()
384 } else if (IS_COMMENT(c) || IS_EOL(c) || IS_WHITESPACE(c)) { in cfg_get_token()
401 IS_EOL(c)) { in cfg_get_token()
425 } else if (IS_EOL(c)) { in cfg_get_token()
456 } else if (IS_EOL(c)) { in cfg_get_token()
469 } else if (IS_EOL(c)) { in cfg_get_token()
499 } else if (IS_EOL(c)) { in cfg_get_token()
/dports/lang/ficl/ficl-4.1.0/softcore/
H A Dmakesoftcore.c115 #define IS_EOL(x) ((*x == '\n') || (*x == '\r')) in main() macro
129 while (*src && !IS_EOL(src)) in main()
142 while (*src && !IS_EOL(src)) in main()
/dports/devel/libvirt/libvirt-7.10.0/src/util/
H A Dvirconf.c55 #define IS_EOL(c) (((c) == '\n') || ((c) == '\r')) macro
59 do { while ((ctxt->cur < ctxt->end) && (IS_BLANK(CUR) || IS_EOL(CUR))) { \
377 while ((ctxt->cur < ctxt->end) && (CUR != '\'') && (!IS_EOL(CUR))) in virConfParseString()
408 while ((ctxt->cur < ctxt->end) && (CUR != '"') && (!IS_EOL(CUR))) in virConfParseString()
419 while ((ctxt->cur < ctxt->end) && (!IS_EOL(CUR))) in virConfParseString()
575 while ((ctxt->cur < ctxt->end) && (!IS_EOL(CUR))) NEXT; in virConfParseComment()
598 if (IS_EOL(CUR)) { in virConfParseSeparator()
649 while ((ctxt->cur < ctxt->end) && (!IS_EOL(CUR))) NEXT; in virConfParseStatement()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Dimapd.c2670 if (!IS_EOL(c, imapd_in)) { in cmd_login()
3143 if (!IS_EOL(c, imapd_in)) { in cmd_id()
4330 if (!IS_EOL(c, imapd_in)) { in cmd_select()
5124 if (!IS_EOL(c, imapd_in)) { in parse_fetch_args()
5557 if (!IS_EOL(c, imapd_in)) { in cmd_xconvmeta()
5970 if (!IS_EOL(c, imapd_in)) { in cmd_store()
6068 if (!IS_EOL(c, imapd_in)) { in cmd_search()
6142 if (!IS_EOL(c, imapd_in)) { in cmd_sort()
6254 if (!IS_EOL(c, imapd_in)) { in cmd_xconvsort()
6374 if (!IS_EOL(c, imapd_in)) { in cmd_xconvmultisort()
[all …]
/dports/irc/srvx/srvx-1.3.1/src/
H A Dioset.c41 #define IS_EOL(CH) ((CH) == '\n') macro
244 if (IS_EOL(fd->recv.buf[pos])) in ioset_find_line_length()
248 if (IS_EOL(fd->recv.buf[pos])) in ioset_find_line_length()
279 if (IS_EOL(fd->recv.buf[pos])) { in ioset_buffered_read()
/dports/security/snort/snort-2.9.18/src/preprocessors/HttpInspect/files/
H A Dfile_decomp_PDF.c80 #define IS_EOL(c) ((c == CHR_CR) || (c == CHR_LF)) macro
613 if( IS_EOL(c) ) in Handle_State_IND_OBJ()
868 if( IS_EOL(c) ) in Locate_Stream_Beginning()
/dports/security/snort3/snort3-3.1.19.0/src/decompress/
H A Dfile_decomp_pdf.cc81 #define IS_EOL(c) (((c) == CHR_CR) || ((c) == CHR_LF)) macro
608 if ( IS_EOL(c) ) in Handle_State_IND_OBJ()
856 if ( IS_EOL(c) ) in Locate_Stream_Beginning()
/dports/graphics/kdegraphics-thumbnailers/kdegraphics-thumbnailers-21.12.3/ps/
H A Ddscparse.cpp66 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
67 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
68 #define IS_BLANK(str) (IS_EOL(str[0]))
1795 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
1801 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
1810 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Ddscparse.c63 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
64 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
65 #define IS_BLANK(str) (IS_EOL(str[0]))
1901 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
1907 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
1916 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Ddscparse.c63 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
64 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
65 #define IS_BLANK(str) (IS_EOL(str[0]))
1901 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
1907 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
1916 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript8-base/ghostscript-8.71/psi/
H A Ddscparse.c58 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
59 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
60 #define IS_BLANK(str) (IS_EOL(str[0]))
2050 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2056 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2065 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript9-x11/ghostscript-9.06/psi/
H A Ddscparse.c60 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
61 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
62 #define IS_BLANK(str) (IS_EOL(str[0]))
2034 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2040 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2049 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/psi/
H A Ddscparse.c60 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
61 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
62 #define IS_BLANK(str) (IS_EOL(str[0]))
2034 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2040 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2049 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/psi/
H A Ddscparse.c60 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
61 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
62 #define IS_BLANK(str) (IS_EOL(str[0]))
2034 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2040 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2049 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript9-base/ghostscript-9.06/psi/
H A Ddscparse.c60 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
61 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
62 #define IS_BLANK(str) (IS_EOL(str[0]))
2034 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2040 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2049 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/print/ghostscript8-x11/ghostscript-8.71/psi/
H A Ddscparse.c58 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
59 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
60 #define IS_BLANK(str) (IS_EOL(str[0]))
2050 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2056 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2065 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/graphics/epstool/epstool-3.09/src/
H A Ddscparse.c62 #define IS_EOL(ch) (((ch)=='\r') || ((ch)=='\n')) macro
63 #define IS_WHITE_OR_EOL(ch) (IS_WHITE(ch) || IS_EOL(ch))
64 #define IS_BLANK(str) (IS_EOL(str[0]))
2077 while (length && !IS_EOL(line[0])) { in dsc_scan_type()
2083 while ((length >= 2) && IS_EOL(line[0]) && IS_EOL(line[1])) { in dsc_scan_type()
2092 if (IS_EOL(line[0]) && line[1]=='%') { in dsc_scan_type()
/dports/japanese/w3m/w3m-2b59b9e/
H A Dfm.h318 #define IS_EOL(p,l) ((p)==&(l)->ptr[(l)->length]) macro
/dports/japanese/w3m-img/w3m-2b59b9e/
H A Dfm.h318 #define IS_EOL(p,l) ((p)==&(l)->ptr[(l)->length]) macro
/dports/www/w3m-img/w3m-2b59b9e/
H A Dfm.h318 #define IS_EOL(p,l) ((p)==&(l)->ptr[(l)->length]) macro
/dports/www/w3m/w3m-2b59b9e/
H A Dfm.h318 #define IS_EOL(p,l) ((p)==&(l)->ptr[(l)->length]) macro