Searched refs:isspace (Results 1 - 25 of 92) sorted by relevance

1234

/haiku/src/build/libshared/
H A DNaturalCompare.cpp44 while (!isdigit(source[pos]) && !isspace(source[pos])
55 while (source[0] == '0' || isspace(source[0])) {
70 while (isspace(source[pos])) {
98 else if (isdigit(stringA[indexA]) || isspace(stringA[indexA]))
105 else if (isdigit(stringB[indexB]) || isspace(stringB[indexB]))
/haiku/src/apps/cortex/Persistence/
H A DStringContent.cpp95 for(; last < content.Length() && isspace(content[last]); ++last) {}
101 for(; from > 0 && isspace(content[from]); --from) {}
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp21 #undef isspace macro
142 isspace(int c) function
/haiku/src/system/libroot/posix/musl/time/
H A Dstrptime.c18 if (isspace(*f)) for (; *s && isspace(*s); s++);
102 for (; *s && isspace(*s); s++);
/haiku/src/system/libnetwork/netresolv/net/
H A Dbase64.c232 if (isspace(ch)) /*%< Skip whitespace anywhere. */
310 if (!isspace(ch))
325 if (!isspace(ch))
/haiku/headers/posix/
H A Dctype.h26 int isspace(int);
95 #define isspace(c) __isctype((c), _ISspace) macro
/haiku/src/tests/servers/app/code_to_name/
H A Dcode_to_name.cpp29 while (isspace(line[0]))
/haiku/src/tests/system/kernel/unit/
H A Dkernel_unit_tests.cpp67 if (isspace(*start)) {
/haiku/src/kits/debugger/value/value_formatters/
H A DFloatValueFormatter.cpp88 if (parseEnd - text < input.Length() && !isspace(*parseEnd))
H A DIntegerValueFormatter.cpp123 if (parseEnd - text < input.Length() && !isspace(*parseEnd))
180 if (parseEnd - text < input.Length() && !isspace(*parseEnd))
/haiku/src/system/kernel/util/
H A Dinet_addr.c158 if (c != '\0' && (!isascii(c) || !isspace((unsigned char)c)))
/haiku/src/system/libnetwork/netresolv/dst/
H A Ddst_api.c501 if (isspace(c))
505 if (!isspace(c))
511 if (isspace(c))
514 if (!isspace(c))
520 if (isspace(c))
523 if (!isspace(c))
533 if (isspace(c))
536 if (!isspace(c))
551 if (!isspace(c))
566 for (notspace = (char *) enckey; isspace((*notspac
[all...]
/haiku/src/bin/unzip/
H A Denvargs.c35 #ifdef __EMX__ /* emx isspace() returns TRUE on extended ASCII !! */
36 # define ISspace(c) ((c) & 0x80 ? 0 : isspace((unsigned)c))
38 # define ISspace(c) isspace((unsigned)c)
/haiku/src/tests/kits/mail/
H A Dheader_test.cpp118 while (isspace(buffer[fieldStart]) && fieldStart < pos)
122 while (isspace(buffer[end]) && fieldStart < end - 1)
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.c65 while (*p != '\0' && isspace(*p))
70 while (q - 1 >= p && isspace(*(q - 1))) {
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h104 __exctype (isspace); variable
163 # define isspace(c) __isctype((c), _ISspace) macro
/haiku/src/apps/haikudepot/util/
H A DValidationUtils.cpp27 if (0 == isspace(c) && c != 0x40)
/haiku/src/system/libroot/posix/stdlib/
H A Dstrtoll.c67 } while (isspace((unsigned char)c));
H A Dstrtol.c67 } while (isspace((unsigned char)c));
H A Dstrtoull.c64 } while (isspace((unsigned char)c));
H A Dstrtoul.c65 } while (isspace((unsigned char)c));
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_debug.c841 while (isspace((unsigned char)*cp))
850 while (isspace((unsigned char)*cp))
872 while (!isspace((unsigned char)*cp)) /*%< if any trailing garbage */
875 while (isspace((unsigned char)*cp))
912 while (!isspace((unsigned char)*cp)) /*%< if any trailing garbage */
915 while (isspace((unsigned char)*cp)) /*%< move to next field */
987 while (!isspace((unsigned char)*cp) && (cp < maxcp)) /*%< if trailing garbage or m */
990 while (isspace((unsigned char)*cp) && (cp < maxcp))
998 while (!isspace((unsigned char)*cp) && (cp < maxcp)) /*%< if trailing garbage or m */
1001 while (isspace((unsigne
[all...]
H A Dres_query.c413 for (cp1 = buf; *cp1 && !isspace((unsigned char)*cp1); ++cp1)
419 while (isspace((unsigned char)*++cp1))
424 !isspace((unsigned char)*cp2); ++cp2)
/haiku/src/bin/locale/
H A Dcollectcatkeys.cpp72 while (isspace(*in) || *in == '(') {
101 while (isspace(*in) || *in == ')') {
132 while (isspace(*in) || *in == ')') {
/haiku/src/tools/locale/
H A Dcollectcatkeys.cpp73 while (isspace(*in) || *in == '(') {
101 while (isspace(*in) || *in == ')') {
132 while (isspace(*in) || *in == ')') {

Completed in 127 milliseconds

1234