OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isspace
(Results
176 - 200
of
266
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/e2fsprogs/misc/
fsck.c
151
while (*cp &&
isspace
(*cp))
158
while (*cp && !
isspace
(*cp))
/external/grub/stage2/
disk_io.c
[
all
...]
shared.h
362
#define
isspace
grub_isspace
macro
/external/sqlite/dist/
shell.c
[
all
...]
/external/clearsilver/util/
neo_hdf.c
1353
#define SKIPWS(s) while (*s &&
isspace
(*s)) s++;
[
all
...]
/external/e2fsprogs/e2fsck/
dict.c
1236
while (*string &&
isspace
((unsigned char) *string))
1241
while (*string && !
isspace
((unsigned char) *string))
[
all
...]
/external/ppp/pppd/
options.c
1179
if (!
isspace
(c))
[
all
...]
/external/quake/quake/src/QW/client/
cl_main.c
852
while (*s &&
isspace
(*s))
854
while (*s &&
isspace
(s[strlen(s) - 1]))
/prebuilt/linux-x86/oprofile/bin/
opannotate
/external/bluetooth/glib/docs/reference/glib/tmpl/
string_utils.sgml
440
Unlike the standard C library
isspace
() function,
/external/icu4c/common/
uloc.c
[
all
...]
/external/icu4c/tools/tzcode/
zic.c
44
** On some ancient hosts, predicates like `
isspace
(C)' are defined
[
all
...]
/external/jpeg/
ansi2knr.c
304
#define is_space(c) (is_ascii(c) &&
isspace
(c))
/frameworks/base/cmds/installd/
commands.c
758
while (bufp < bufi &&
isspace
(buf[bufp])) {
/frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c
158
if(
isspace
(*cur_pos))
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
builtins.def
[
all
...]
/system/core/init/
init.c
660
while (*x && !
isspace
(*x)) {
/system/core/liblog/
logprint.c
338
while (end >= str &&
isspace
(*end))
/frameworks/base/libs/utils/
ResourceTypes.cpp
71
// Standard C
isspace
() is only required to look at the low byte of its input, so
75
return (c < 0x0080 &&
isspace
(c));
[
all
...]
/bionic/libc/kernel/tools/
cpp.py
361
if c.
isspace
():
364
if c2 == tokLN or not c2.
isspace
():
[
all
...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
XMLChar.java
[
all
...]
/external/bzip2/
bzip2.c
[
all
...]
/external/dropbear/
keyimport.c
415
while (*p &&
isspace
((unsigned char)*p)) p++;
1095
while (*p &&
isspace
((unsigned char)*p)) p++;
[
all
...]
/external/sonivox/arm-fm-22k/lib_src/
eas_rtttl.c
[
all
...]
/external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttl.c
[
all
...]
Completed in 1670 milliseconds
1
2
3
4
5
6
7
8
9
10
11