Searched refs:isspace (Results 76 - 100 of 316) sorted by relevance

1234567891011>>

/external/libpcap/
H A Dfad-gifc.c169 while (*p != '\0' && isspace(*p))
178 while (*p != '\0' && !isspace(*p)) {
/external/linux-tools-perf/util/
H A Dcolor.c66 while (len > 0 && !isspace(word[wordlen])) {
72 while (len > 0 && isspace(*ptr)) {
H A Dutil.h228 #undef isspace macro
247 #define isspace(x) sane_istest(x,GIT_SPACE) macro
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp169 while (!Str.empty() && isspace(static_cast<unsigned char>(Str[0])))
171 while (!Str.empty() && isspace(static_cast<unsigned char>(Str.back())))
/external/qemu/distrib/jpeg-6b/
H A Drdswitch.c17 #include <ctype.h> /* to declare isdigit(), isspace() */
52 } while (isspace(ch));
139 while (ch != EOF && isspace(ch))
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproduct-weight.h144 if (!isspace(c))
153 if (c == EOF || isspace(c)) {
/external/valgrind/main/tests/
H A Ds390x_features.c8 #include <ctype.h> // isspace
161 while (isspace(*p) || *p == '=') {
171 isspace(model_name[len])) {
/external/chromium_org/third_party/codesighs/
H A Dmsdump2symdb.c193 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]))
/external/valgrind/main/memcheck/tests/
H A Dunit_libcbase.c264 CHECK( VG_(isspace)(' ') );
265 CHECK( VG_(isspace)('\n') );
266 CHECK( VG_(isspace)('\t') );
267 CHECK( ! VG_(isspace)('3') );
268 CHECK( ! VG_(isspace)('x') );
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlogging.cc166 isspace(static_cast<unsigned char>(msgbuf[len-1]))) {
564 if (isspace(*pos))
589 while ((end_of_line > line) && isspace(*(end_of_line-1))) {
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Derror_fixer.py104 if iterator.type == Type.DOC_START_BRACE or iterator.string.isspace():
123 if iterator.type == Type.DOC_END_BRACE or iterator.string.isspace():
251 while last_type.string.isspace():
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Derror_fixer.py104 if iterator.type == Type.DOC_START_BRACE or iterator.string.isspace():
123 if iterator.type == Type.DOC_END_BRACE or iterator.string.isspace():
251 while last_type.string.isspace():
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
H A Dgenperf.c323 while (isspace(*ch))
421 while (isspace(*ch))
428 while (isspace(*ch))
/external/grub/stage2/
H A Dfsys_ext2fs.c613 while (dirname[len] && !isspace (dirname[len]))
670 if (!*dirname || isspace (*dirname))
697 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
/external/ipsec-tools/src/racoon/
H A Dbackupsa.c241 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/chromium/testing/gtest/test/
H A Dgtest_xml_test_utils.py137 not child.nodeValue.isspace()):
/external/chromium/third_party/libevent/
H A Devutil.c193 while (isspace(*s))
/external/chromium_org/content/test/plugin/
H A Dplugin_test.cc61 } else if (isspace(ch) && ((ch != '\n') && (ch != '\r'))) {
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_test_utils.py137 not child.nodeValue.isspace()):
/external/chromium_org/third_party/libevent/
H A Devutil.c193 while (isspace(*s))
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/
H A Dgen_xmlpool.py24 if i == len(s)-1 or s[i+1].isspace():
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspeedtest16.c143 while( i<j && isspace(zSql[i]) ){ i++; }
H A Dspeedtest8inst1.c200 while( i<j && isspace(zSql[i]) ){ i++; }
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.c79 if (c != '\0' && c != '=' && !isspace(c))
/external/chromium_org/tools/measure_page_load_time/ie_bho/
H A DMeasurePageLoadTimeBHO.cpp197 for (i = (int)strlen(strURL)-1; i >= 0 && isspace(strURL[i]); i--)

Completed in 931 milliseconds

1234567891011>>