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

12 3 4 5 6 7 8 91011>>

  /external/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /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/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /external/valgrind/main/coregrind/m_ume/
script.c 58 while (interp < end && VG_(isspace)(*interp)) interp++;
69 if (VG_(isspace)(*interp)) return False;
104 while (interp < end && VG_(isspace)(*interp))
110 for (cp = interp; cp < end && !VG_(isspace)(*cp); cp++)
119 while (cp < end && VG_(isspace)(*cp) && *cp != '\n')
  /external/oprofile/libpopt/
poptconfig.c 33 if (*line == '\0' || !isspace(*line)) return;
35 while (*line != '\0' && isspace(*line)) line++;
37 while (*line == '\0' || !isspace(*line)) line++;
40 while (*line != '\0' && isspace(*line)) line++;
43 while (*line == '\0' || !isspace(*line)) line++;
46 while (*line != '\0' && isspace(*line)) line++;
137 while (*dst && isspace(*dst)) dst++;
  /external/libpcap/
etherent.c 83 } while (isspace(c) && c != '\n');
140 if (!isspace(c)) {
162 } while (!isspace(c) && c != EOF && --d > 0);
  /external/openssl/crypto/asn1/
asn_moid.c 128 while(isspace((unsigned char)*ostr)) ostr++;
139 while(isspace((unsigned char)*ln)) ln++;
141 while(isspace((unsigned char)*p))
  /external/qemu/android/utils/
property_file.c 19 // Return true iff |ch| is whitespace. Don't use isspace() to avoid
21 static int isspace(int ch) { function
54 while (line < lineEnd && isspace(line[0]))
69 while (nameEnd > name && isspace(nameEnd[-1]))
  /external/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'));
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 46 while (isspace(*current)) {
56 while (isspace(*end)) {
67 } while (isspace(*colon));
69 while (globLen > 0 && isspace(colon[globLen - 1])) {
  /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'));
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_interface.cpp 34 if (isspace(commandChars[i])) {
51 if (isspace(commandChars[i]) || '\0' == commandChars[i]) {
  /external/qemu/android/filesystems/
fstab_parser.cpp 21 while (p < end && isspace(*p)) {
28 while (p < end && !isspace(*p)) {
  /external/skia/platform_tools/nacl/src/
nacl_interface.cpp 34 if (isspace(commandChars[i])) {
51 if (isspace(commandChars[i]) || '\0' == commandChars[i]) {
  /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());
  /hardware/qcom/gps/utils/
loc_misc_utils.cpp 92 if ( !isspace(*scan_ptr) && first_nonspace == NULL) {
104 if ( !isspace(*scan_ptr)) {
  /bootable/recovery/tools/ota/
add-property-tag.c 37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ;
40 for (ptr += strlen(propname); *ptr != '\0' && isspace(*ptr); ++ptr) ;
58 while (end > line && isspace(end[-1])) --end;
  /bionic/libc/bionic/
ctype.cpp 68 return isspace(c);
  /development/ndk/platforms/android-L/include/
ctype.h 73 int isspace(int);
  /external/libpcap/Win32/Src/
inet_net.c 90 if (*cp && !isspace(*cp))

Completed in 1476 milliseconds

12 3 4 5 6 7 8 91011>>