Home
last modified time | relevance | path

Searched refs:IS_SPACE (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/less/
H A Dtags.c715 for (*tag = p; *p && !IS_SPACE(*p); p++) /* tag name */ in getentry()
720 for ( ; *p && IS_SPACE(*p); p++) /* (skip blanks) */ in getentry()
730 for ( ; *p && !IS_SPACE(*p); p++) /* (skip tag type) */ in getentry()
732 for (; *p && IS_SPACE(*p); p++) /* (skip blanks) */ in getentry()
738 for (*line = p; *p && !IS_SPACE(*p); p++) in getentry()
743 for ( ; *p && IS_SPACE(*p); p++) /* (skip blanks) */ in getentry()
748 for (*file = p; *p && !IS_SPACE(*p); p++) in getentry()
H A Dless.h133 #undef IS_SPACE
156 #define IS_SPACE(c) isspace((unsigned char)(c)) macro
158 #define IS_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\r' || (c) == '\f') macro
/freebsd/contrib/libyaml/src/
H A Demitter.c1610 if (IS_SPACE(string)) in yaml_emitter_analyze_scalar()
1944 if (IS_SPACE(string)) in yaml_emitter_write_plain_scalar()
1999 if (IS_SPACE(string)) in yaml_emitter_write_single_quoted_scalar()
2173 else if (IS_SPACE(string)) in yaml_emitter_write_double_quoted_scalar()
2213 if (IS_SPACE(string) || IS_BREAK(string)) in yaml_emitter_write_block_scalar_hints()
2344 if (!breaks && IS_SPACE(string) && !IS_SPACE_AT(string, 1) in yaml_emitter_write_folded_scalar()
H A Dyaml_private.h306 #define IS_SPACE(string) IS_SPACE_AT((string),0) macro
H A Dscanner.c2980 && IS_SPACE(parser->buffer)) { in yaml_parser_scan_block_scalar_breaks()