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

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/r13/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /external/libcxx/include/
ctype.h 26 int isspace(int c);
61 #undef isspace macro
  /external/libcxx/test/std/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'));
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 26 int isspace(int c);
61 #undef isspace macro
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
ctype.h 26 int isspace(int c);
61 #undef isspace macro
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/r11/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'));
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
ctype.h 26 int isspace(int c);
61 #undef isspace macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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'));
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /external/selinux/libselinux/src/
matchmediacon.c 31 while (*ptr && isspace(*ptr))
39 while (*ptr2 && !isspace(*ptr2))
55 while (*ptr2 && isspace(*ptr2))
  /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++;;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
isctype.c 112 #undef isspace macro
114 isspace(int c) function
118 DEF_STRONG(isspace); variable
  /external/libpcap/
etherent.c 78 } while (isspace(c) && c != '\n');
135 if (!isspace(c)) {
157 } while (!isspace(c) && c != EOF && --d > 0);
  /device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
ctype.h 45 #define isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) macro
  /external/libcxx/test/std/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(!std::isspace('a'));
  /prebuilts/ndk/r11/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'));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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(!std::isspace('a'));
  /device/linaro/bootloader/edk2/StdLib/Include/
ctype.h 48 isspace is true. In the "C" locale, isalpha returns true only for the
98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
118 locale-specific set of punctuation characters for which neither isspace nor
120 character for which neither isspace nor isalnum is true.
129 /** The isspace function tests for any character that is a standard white-space
133 horizontal tab ('\t'), and vertical tab ('\v'). In the "C" locale, isspace
141 int isspace(int c);
145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
232 #define isspace(c) (__isCClass( (int)c, (_CW))) macro
  /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/msm8084/utils/
loc_misc_utils.cpp 92 if ( !isspace(*scan_ptr) && first_nonspace == NULL) {
104 if ( !isspace(*scan_ptr)) {
  /hardware/qcom/gps/msm8909/utils/
loc_misc_utils.cpp 92 if ( !isspace(*scan_ptr) && first_nonspace == NULL) {
104 if ( !isspace(*scan_ptr)) {
  /hardware/qcom/gps/msm8994/utils/
loc_misc_utils.cpp 92 if ( !isspace(*scan_ptr) && first_nonspace == NULL) {
104 if ( !isspace(*scan_ptr)) {

Completed in 3371 milliseconds

12 3 4 5 6 7 8 91011>>