HomeSort by relevance Sort by last modified time
    Searched refs:isdigit (Results 1 - 25 of 388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.convenience/classification/
isdigit.pass.cpp 12 // template <class charT> bool isdigit (charT c, const locale& loc);
20 assert(!std::isdigit(' ', l));
21 assert(!std::isdigit('<', l));
22 assert(!std::isdigit('\x8', l));
23 assert(!std::isdigit('A', l));
24 assert(!std::isdigit('a', l));
25 assert(!std::isdigit('z', l));
26 assert( std::isdigit('3', l));
27 assert(!std::isdigit('.', l));
28 assert(!std::isdigit('f', l))
    [all...]
  /external/mdnsresponder/Clients/
ClientCommon.c 55 if (isdigit(cstr[-1]) && isdigit(cstr[0]) && isdigit(cstr[1]))
  /external/srec/portable/src/
ptypes.c 33 if (!isdigit(*str))
  /external/blktrace/
strverscmp.c 129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
136 state |= (c1 == '0') + (isdigit (c1) != 0);
139 state = result_type[state << 2 | (((c2 == '0') + (isdigit (c2) != 0)))];
147 while (isdigit (*p1++))
148 if (!isdigit (*p2++))
151 return isdigit (*p2) ? -1 : diff;
  /bionic/libc/unistd/
charclass.h 18 { "digit", isdigit },
  /external/openssh/openbsd-compat/
charclass.h 20 { "digit", isdigit },
  /external/e2fsprogs/misc/
base_device.c 75 !isdigit(cp[1]) || !isdigit(cp[3]))
85 if (isdigit(*cp))
114 if (!isdigit(*cp))
136 if (!isdigit(*cp))
  /bionic/libstdc++/include/
cctype 46 using ::isdigit;
  /external/webkit/Source/JavaScriptCore/wtf/
DisallowCType.h 45 #undef isdigit macro
62 #define isdigit isdigit_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /ndk/sources/cxx-stl/gabi++/include/
cctype 46 using ::isdigit;
  /ndk/sources/cxx-stl/system/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 44 using ::isdigit;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 44 using ::isdigit;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 46 using ::isdigit;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 46 using ::isdigit;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 50 #ifdef isdigit
82 using std::isdigit;
  /external/e2fsprogs/lib/ext2fs/
version.c 39 if (!isdigit(*cp))
  /external/stlport/stlport/stl/
_cctype.h 35 using _STLP_VENDOR_CSTD::isdigit;
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
ctype_h.pass.cpp 32 #ifdef isdigit
33 #error isdigit defined
78 static_assert((std::is_same<decltype(isdigit(0)), int>::value), "");
93 assert(!isdigit('a'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 35 using _STLP_VENDOR_CSTD::isdigit;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 35 using _STLP_VENDOR_CSTD::isdigit;

Completed in 299 milliseconds

1 2 3 4 5 6 7 8 91011>>