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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
ctype.h 34 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
ctype.h 34 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
buffer_tests.py 51 self.assertFalse(self.marshal(b'').isspace())
52 self.assertFalse(self.marshal(b'a').isspace())
53 self.assertTrue(self.marshal(b' ').isspace())
54 self.assertTrue(self.marshal(b'\t').isspace())
55 self.assertTrue(self.marshal(b'\r').isspace())
56 self.assertTrue(self.marshal(b'\n').isspace())
57 self.assertTrue(self.marshal(b' \t\r\n').isspace())
58 self.assertFalse(self.marshal(b' \t\r\na').isspace())
59 self.assertRaises(TypeError, self.marshal(b'abc').isspace, 42)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
buffer_tests.py 51 self.assertFalse(self.marshal(b'').isspace())
52 self.assertFalse(self.marshal(b'a').isspace())
53 self.assertTrue(self.marshal(b' ').isspace())
54 self.assertTrue(self.marshal(b'\t').isspace())
55 self.assertTrue(self.marshal(b'\r').isspace())
56 self.assertTrue(self.marshal(b'\n').isspace())
57 self.assertTrue(self.marshal(b' \t\r\n').isspace())
58 self.assertFalse(self.marshal(b' \t\r\na').isspace())
59 self.assertRaises(TypeError, self.marshal(b'abc').isspace, 42)
  /system/core/init/
property_service.c 379 while (isspace(*key)) key++;
383 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
387 while (isspace(*fn)) fn++;
392 while (isspace(*key)) key++;
403 while ((tmp > key) && isspace(*tmp)) *tmp-- = 0;
405 while (isspace(*value)) value++;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
PCMFile.cc 58 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (tmp_name[n] != 0)
69 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (n >= 0)) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
strfilter.c 36 while (isspace(*s)) /* Skip spaces */
48 while (*p && !is_separator(*p) && !isspace(*p))
  /external/lldb/source/Core/
InputReader.cpp 162 if (isspace(ch) && (!quote || (quote == ch && p[-1] != '\\')))
278 while (p < end && isspace(*p))
  /external/valgrind/main/coregrind/
m_commandline.c 103 while (VG_(isspace)(*cp)) cp++;
106 while ( !VG_(isspace)(*cp) && *cp != 0 ) cp++;
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.h 79 _sch_iscppsp = _sch_isvsp|_sch_isnvsp, /* isspace + \0 */
98 #define ISSPACE(c) _sch_test(c, _sch_isspace)
142 #undef isspace macro
143 #define isspace(c) do_not_use_isspace_with_safe_ctype macro
  /hardware/qcom/gps/msm8960/utils/
loc_cfg.cpp 89 if ( !isspace(*scan_ptr) && first_nonspace == NULL)
97 if ( !isspace(*scan_ptr))
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 201 for (ptr = line; isspace(*ptr); ptr++); \
205 while (end > ptr && isspace(end[-1])) *--end = '\0'; \
206 if (file && !strncmp(ptr, "_ERR", 4) && isspace(ptr[4])) { \
208 while (isspace(*ptr)) ptr++; \
210 } else if (file && !strncmp(ptr, "_OUT", 4) && isspace(ptr[4])) { \
212 while (isspace(*ptr)) ptr++; \
214 } else if (!strncmp(ptr, "_LEVEL", 6) && isspace(ptr[6])) { \
216 while (isspace(*ptr)) ptr++; \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
safe-ctype.h 79 _sch_iscppsp = _sch_isvsp|_sch_isnvsp, /* isspace + \0 */
98 #define ISSPACE(c) _sch_test(c, _sch_isspace)
139 #undef isspace macro
140 #define isspace(c) do_not_use_isspace_with_safe_ctype macro
  /system/core/libmincrypt/test/
ecdsa_test.c 179 while (isspace(*str)) str++;
196 while (isspace(*str)) str++;
rsa_test.c     [all...]
  /bionic/libc/bionic/
debug_mapinfo.cpp 49 while (isspace(line[name_pos])) {
  /external/arduino/hardware/arduino/cores/arduino/
WCharacter.h 36 inline boolean isSpace(int c) __attribute__((always_inline));
121 inline boolean isSpace(int c)
123 return ( isspace (c) == 0 ? false : true);
  /external/e2fsprogs/intl/
plural-exp.c 119 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
  /external/oprofile/libpopt/
poptparse.c 84 } else if (isspace(*src)) {
160 while( *p != '\0' && isspace(*p) )
172 while (*q != '\0' && (!isspace(*q)) && *q != '=')
175 if (isspace(*q)) {
178 while( *q != '\0' && isspace((int)*q) ) q++;
200 while (*q != '\0' && isspace(*q))
207 while (isspace(*--x))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
markupbase.py 232 while j < n and rawdata[j].isspace():
241 elif c.isspace():
284 while rawdata[j:j+1].isspace():
349 if c.isspace():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
markupbase.py 232 while j < n and rawdata[j].isspace():
241 elif c.isspace():
284 while rawdata[j:j+1].isspace():
349 if c.isspace():
  /bionic/libc/dns/resolv/
res_debug.c 836 while (isspace((unsigned char)*cp))
845 while (isspace((unsigned char)*cp))
867 while (!isspace((unsigned char)*cp)) /* if any trailing garbage */
870 while (isspace((unsigned char)*cp))
908 while (!isspace((unsigned char)*cp)) /* if any trailing garbage */
911 while (isspace((unsigned char)*cp)) /* move to next field */
982 while (!isspace((unsigned char)*cp) && (cp < maxcp)) /* if trailing garbage or m */
985 while (isspace((unsigned char)*cp) && (cp < maxcp))
993 while (!isspace((unsigned char)*cp) && (cp < maxcp)) /* if trailing garbage or m */
996 while (isspace((unsigned char)*cp) && (cp < maxcp)
    [all...]
  /bionic/libc/tzcode/
strptime.c 124 if (isspace(c)) {
125 while (isspace(*bp))
380 while (isspace(*bp))
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
data_socket.cc 218 isspace(begin[supported_methods[i].method_name_len]) &&
233 while (!isspace(*path) && path < end)
247 if (!isspace(headers[0])) {
  /external/chromium_org/third_party/webrtc/overrides/webrtc/base/
logging.cc 101 isspace(static_cast<unsigned char>(msgbuf[len-1]))) {
244 if (isspace(*pos))
269 while ((end_of_line > line) && isspace(*(end_of_line-1))) {

Completed in 1556 milliseconds

1 2 3 4 5 6 7 8 91011>>