OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isspace
(Results
26 - 50
of
1470
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp
52
#ifdef
isspace
53
#error
isspace
defined
83
static_assert((std::is_same<decltype(
isspace
(0)), int>::value), "");
98
assert(!
isspace
('a'));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp
52
#ifdef
isspace
53
#error
isspace
defined
83
static_assert((std::is_same<decltype(std::
isspace
(0)), int>::value), "");
98
assert(!
isspace
('a'));
/system/sepolicy/tools/sepolicy-analyze/
neverallow.c
35
while (p < end &&
isspace
(*p))
46
while (p < end &&
isspace
(*p))
93
while (p < end && !
isspace
(*p) && *p != ':' && *p != ';' && *p != '{' && *p != '}' && *p != '#')
196
while (p < end &&
isspace
(*p))
207
while (p < end &&
isspace
(*p))
238
while (p < end && !
isspace
(*p) && *p != '{' && *p != '}' && *p != ';' && *p != '#')
273
while (p < end &&
isspace
(*p))
284
while (p < end &&
isspace
(*p))
315
while (p < end && !
isspace
(*p) && *p != '{' && *p != '}' && *p != ';' && *p != '#')
379
while (p < end &&
isspace
(*p)
[
all
...]
/external/toybox/scripts/
mktags.c
19
while (len &&
isspace
(line[len-1])) line[--len]=0;
37
for (s = line;
isspace
(*s); s++);
config2help.c
35
while (
isspace
(*s)) s++;
48
if (*line && !
isspace
(*line)) return 0;
154
if (!
isspace
(*s)) break;
159
if (*line && !
isspace
(*line)) {
175
while (
isspace
(line[sym->help_indent])) sym->help_indent++;
263
else if (strncmp(name, that, len) || !
isspace
(that[len])) continue;
265
while (!
isspace
(*that) && *that) that++;
394
while (
isspace
(*s) && i) {
/external/toybox/toys/other/
sysctl.c
82
for (key = data+strlen(data); key > data &&
isspace
(*--key); *key = 0);
132
while (
isspace
(*key)) key++;
134
while (len &&
isspace
(line[len-1])) line[--len] = 0;
142
while (len &&
isspace
(line[len-1])) line[--len] = 0;
143
while (
isspace
(*val)) val++;;
/prebuilts/go/darwin-x86/src/internal/format/
format.go
112
for j < len(src) &&
IsSpace
(src[j]) {
153
for i > 0 &&
IsSpace
(src[i-1]) {
159
//
IsSpace
reports whether the byte is a space character.
160
//
IsSpace
defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
161
func
IsSpace
(b byte) bool {
/prebuilts/go/linux-x86/src/internal/format/
format.go
112
for j < len(src) &&
IsSpace
(src[j]) {
153
for i > 0 &&
IsSpace
(src[i-1]) {
159
//
IsSpace
reports whether the byte is a space character.
160
//
IsSpace
defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
161
func
IsSpace
(b byte) bool {
/external/libpcap/
etherent.c
78
} while (
isspace
(c) && c != '\n');
135
if (!
isspace
(c)) {
157
} while (!
isspace
(c) && c != EOF && --d > 0);
/external/libselinux/src/
label_support.c
34
while (
isspace
(**ptr) && **ptr != '\0')
40
while (!
isspace
(**ptr) && **ptr != '\0') {
88
while (
isspace
(*buf_p))
/external/selinux/libselinux/src/
label_support.c
25
while (
isspace
(**ptr) && **ptr != '\0')
31
while (!
isspace
(**ptr) && **ptr != '\0') {
69
while (
isspace
(*buf_p))
get_context_list.c
127
while (*ptr && !
isspace
(*ptr) && *ptr != ':')
133
while (*ptr && !
isspace
(*ptr) && *ptr != ':')
194
while (*start &&
isspace
(*start))
201
while (*end && !
isspace
(*end))
208
while (*start && !
isspace
(*start) && *start != ':')
214
while (*start && !
isspace
(*start) && *start != ':')
234
while (*start &&
isspace
(*start))
241
while (*end && !
isspace
(*end))
get_default_type.c
45
while (*ptr &&
isspace
(*ptr))
/prebuilts/go/darwin-x86/src/time/
zoneinfo_plan9.go
14
func
isSpace
(r rune) bool {
25
inField = !
isSpace
(rune)
36
if
isSpace
(rune) {
/prebuilts/go/linux-x86/src/time/
zoneinfo_plan9.go
14
func
isSpace
(r rune) bool {
25
inField = !
isSpace
(rune)
36
if
isSpace
(rune) {
/external/llvm/lib/Fuzzer/
FuzzerUtil.cpp
81
if (!
isspace
(NewX) && !isprint(NewX))
91
if (!(isprint(X) ||
isspace
(X))) return false;
100
while (L < R &&
isspace
(Str[L])) L++;
101
while (R > L &&
isspace
(Str[R])) R--;
114
if (!isprint(V) && !
isspace
(V)) return false;
154
while (Pos < S.size() &&
isspace
(S[Pos])) Pos++; // Skip spaces.
/external/selinux/libsepol/src/
util.c
206
if (
isspace
(delim) &&
isspace
(**ptr)) {
209
} else if (!
isspace
(delim) && **ptr == delim) {
231
while (**ptr != '\0' &&
isspace
(delim) &&
isspace
(**ptr)) {
241
* be tokenized using
isspace
().
/external/v8/src/
ostreams.cc
52
bool
IsSpace
(uint16_t c) { return (0x9 <= c && c <= 0xd) || c == 0x20; }
53
bool IsOK(uint16_t c) { return (IsPrint(c) ||
IsSpace
(c)) && c != '\\'; }
/frameworks/base/tools/split-select/
Rule_test.cpp
68
expected.erase(std::remove_if(expected.begin(), expected.end(), ::
isspace
), expected.end());
72
result.erase(std::remove_if(result.begin(), result.end(), ::
isspace
), result.end());
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cctype
56
#undef
isspace
72
using ::
isspace
;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cctype
56
#undef
isspace
72
using ::
isspace
;
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cctype
56
#undef
isspace
72
using ::
isspace
;
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cctype
56
#undef
isspace
72
using ::
isspace
;
/development/ndk/platforms/android-3/include/linux/
ctype.h
34
#define
isspace
(c) ((__ismask(c)&(_S)) != 0)
macro
/external/icu/icu4c/source/test/perf/charperf/
CharPerf.pl
44
"
isSpace
", ["$p,TestStdLibIsSpace" , "$p,TestIsSpace" ],
Completed in 1946 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>