HomeSort by relevance Sort by last modified time
    Searched refs:isspace (Results 301 - 325 of 654) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libjpeg_turbo/
rdswitch.c 20 #include <ctype.h> /* to declare isdigit(), isspace() */
55 } while (isspace(ch));
151 while (ch != EOF && isspace(ch))
  /external/chromium_org/third_party/webrtc/base/
linux.cc 221 while ((pos > 0) && isspace(tokens[0][pos])) {
227 while (pos < tokens[1].length() && isspace(tokens[1][pos])) {
  /external/e2fsprogs/lib/e2p/
feature.c 262 while (*cp && isspace(*cp))
269 while (*cp && !isspace(*cp) && *cp != ',')
  /external/icu/icu4c/source/samples/layout/
FontMap.cpp 178 while (start < len && isspace(s[start])) {
184 while (end > start && isspace(s[end])) {
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.c 259 while(s<targ&&isspace(*s)) s++;
260 for(p=s;s<targ&&!isspace(*p);p++);
  /external/ipsec-tools/src/racoon/
localconf.c 203 for (p = buf; *p != '\0' && !isspace((int)*p); p++)
209 while (isspace((int)*++p))
backupsa.c 241 for (q = p; *q != '\0' && !isspace((int)*q); q++)
248 for (q = p; *q != '\0' && !isspace((int)*q); q++)
258 for (q = p; *q != '\0' && !isspace((int)*q); q++) \
  /external/iptables/extensions/
libxt_u32.c 121 while (isspace(*arg))
224 while (isspace(*arg))
  /external/jpeg/
rdswitch.c 17 #include <ctype.h> /* to declare isdigit(), isspace() */
52 } while (isspace(ch));
139 while (ch != EOF && isspace(ch))
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
color.c 67 while (len > 0 && !isspace(word[wordlen])) {
73 while (len > 0 && isspace(*ptr)) {
util.h 196 #undef isspace macro
223 #define isspace(x) sane_istest(x,GIT_SPACE) macro
  /external/llvm/lib/Support/
FileUtilities.cpp 89 while (isspace(static_cast<unsigned char>(*F1P)) && F1P != F1End)
91 while (isspace(static_cast<unsigned char>(*F2P)) && F2P != F2End)
  /external/qemu/distrib/jpeg-6b/
rdswitch.c 17 #include <ctype.h> /* to declare isdigit(), isspace() */
52 } while (isspace(ch));
139 while (ch != EOF && isspace(ch))
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 144 if (!isspace(c))
153 if (c == EOF || isspace(c)) {
  /external/valgrind/main/tests/
s390x_features.c 9 #include <ctype.h> // isspace
164 while (isspace(*p) || *p == '=') {
174 isspace(model_name[len])) {
  /frameworks/compile/slang/
llvm-rs-cc.cpp 302 if (*P == '\0' || (isspace(*P) && InQuote == ' ')) {
318 if (isspace(*P)) {
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 193 if(isspace(*(inString + len)))
212 while('\0' != *retval && isspace(*retval))
228 while('\0' != *retval && !isspace(*retval))
296 if(0 == isspace(inString[length]))
303 if(0 != isspace(inString[length]))
    [all...]
  /external/valgrind/main/memcheck/tests/
unit_libcbase.c 266 CHECK( VG_(isspace)(' ') );
267 CHECK( VG_(isspace)('\n') );
268 CHECK( VG_(isspace)('\t') );
269 CHECK( ! VG_(isspace)('3') );
270 CHECK( ! VG_(isspace)('x') );
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
genperf.c 323 while (isspace(*ch))
421 while (isspace(*ch))
428 while (isspace(*ch))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_locale.py 346 self.assertEqual('\x20'.isspace(), True)
347 self.assertEqual('\xa0'.isspace(), False)
348 self.assertEqual('\xa1'.isspace(), False)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_locale.py 346 self.assertEqual('\x20'.isspace(), True)
347 self.assertEqual('\xa0'.isspace(), False)
348 self.assertEqual('\xa1'.isspace(), False)
  /system/core/liblog/
fake_log_device.c 209 while (isspace(*tags))
213 while (*tags != '\0' && !isspace(*tags) && *tags != ':' &&
252 if (*tags != '\0' && !isspace(*tags)) {
  /bionic/libc/bionic/
wctype.cpp 46 int iswspace(wint_t wc) { return isspace(wc); }
  /external/chromium_org/content/test/plugin/
plugin_test.cc 61 } else if (isspace(ch) && ((ch != '\n') && (ch != '\r'))) {
  /external/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 141 not child.nodeValue.isspace()):

Completed in 2868 milliseconds

<<11121314151617181920>>