OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isspace
(Results
151 - 175
of
266
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c
91
for (i = 0; !
isspace
(cpuinfo[i]); i++);
92
for (;
isspace
(cpuinfo[i]); i++);
/system/core/fastboot/
fastboot.c
326
while(*s &&
isspace
(*s)) s++;
329
if(!
isspace
(s[n])) break;
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java
[
all
...]
/external/openssl/ssl/
ssltest.c
[
all
...]
/external/clearsilver/cs/
csparse.c
590
while (*token &&
isspace
(*token)) token++;
950
while (*arg &&
isspace
(*arg)) arg++;
[
all
...]
/external/dnsmasq/src/
option.c
521
for (;
isspace
((int)*comma); comma++);
523
for (; (p >= s) &&
isspace
((int)*p); p--)
[
all
...]
cache.c
719
if (!
isspace
(c))
739
if (
isspace
(c) || c == '#')
[
all
...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
XString.java
[
all
...]
XStringForFSB.java
835
private static boolean
isSpace
(char ch)
871
if (
isSpace
(c))
/external/clearsilver/cgi/
cgi.c
952
ws =
isspace
(str->buf[0]);
1027
while (o &&
isspace
(str->buf[o-1])) o--;
1032
else if (seen_nonws &&
isspace
(str->buf[i]))
[
all
...]
/external/clearsilver/util/
wdb.c
50
while (len > 0 &&
isspace
(s[len]))
90
if ((ch < 32) || (ch > 127) || (ch == ':') || (ch == '%') ||
isspace
(ch))
108
if ((ch < 32) || (ch > 127) || (ch == ':') || (ch == '%') ||
isspace
(ch))
[
all
...]
/external/e2fsprogs/lib/blkid/
probe.c
179
if (!
isspace
(*cp)) {
180
while (*cp && !
isspace
(*cp))
183
while (*cp &&
isspace
(*cp))
[
all
...]
/frameworks/base/tools/aapt/
XMLNode.cpp
40
while (*str != 0 && *str < 128 &&
isspace
(*str)) {
727
while (*p != 0 && *p < 128 &&
isspace
(*p)) {
745
while (e > p && *e < 128 &&
isspace
(*e)) {
[
all
...]
/external/ppp/pppd/plugins/radius/
avpair.c
782
while(*q &&
isspace
(*q)) q++;
/external/qemu/distrib/sdl-1.2.12/include/
SDL_stdinc.h
225
#define SDL_isspace(X)
isspace
(X)
/external/stlport/src/c_locale_dummy/
c_locale_dummy.c
64
if (
isspace
(c)) ctable[(unsigned char)c] |= _Locale_SPACE;
/external/tcpdump/
print-esp.c
229
while (
isspace
((unsigned char)*decode))
/external/tinyxml/
changes.txt
6
- Fixed bad pointer to '
isspace
' that could occur while parsing text.
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/MVS/
MVS.uudecode
301
X nosum |= !
isspace
(*bp);
/external/webkit/WebKitTools/android/flex-2.5.4a/
parse.y
751
| CCE_SPACE { CCL_EXPR(
isspace
) }
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
standalone.py
306
if line[0] == '#' or line.
isspace
():
/prebuilt/darwin-x86/sdl/include/SDL/
SDL_stdinc.h
225
#define SDL_isspace(X)
isspace
(X)
/prebuilt/linux-x86/sdl/include/SDL/
SDL_stdinc.h
225
#define SDL_isspace(X)
isspace
(X)
/prebuilt/windows/sdl/include/SDL/
SDL_stdinc.h
225
#define SDL_isspace(X)
isspace
(X)
/bionic/libc/netbsd/resolv/
res_init.c
498
isascii(*cp) && !
isspace
((unsigned char)*cp))
509
!
isspace
((unsigned char)*cp))
Completed in 1279 milliseconds
1
2
3
4
5
6
7
8
9
10
11