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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/localization/locales/locale.convenience/classification/
isalpha.pass.cpp 12 // template <class charT> bool isalpha (charT c, const locale& loc);
20 assert(!std::isalpha(' ', l));
21 assert(!std::isalpha('<', l));
22 assert(!std::isalpha('\x8', l));
23 assert( std::isalpha('A', l));
24 assert( std::isalpha('a', l));
25 assert( std::isalpha('z', l));
26 assert(!std::isalpha('3', l));
27 assert(!std::isalpha('.', l));
28 assert( std::isalpha('f', l))
    [all...]
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 4 int isalpha(int);
21 // CHECK: call signext i32 @isalpha(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
22 (void)isalpha(x);
50 // CHECK: declare signext i32 @isalpha(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 4 int isalpha(int);
21 // CHECK: call i32 @isalpha(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
22 (void)isalpha(x);
50 // CHECK: declare i32 @isalpha(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 15 { "alpha", isalpha },
isctype.c 48 #undef isalpha macro
50 isalpha(int c) function
54 DEF_STRONG(isalpha); variable
  /external/openssh/openbsd-compat/
charclass.h 17 { "alpha", isalpha },
strtoll.c 114 else if (isalpha(c))
strtoul.c 84 else if (isalpha(c))
  /external/toybox/scripts/
mktags.c 27 if (!isalpha(*line)) {
48 if (!isalpha(*s) && !isdigit(*s)) *s = '_';
  /external/libcxx/include/
ctype.h 18 int isalpha(int c);
44 #undef isalpha macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
  /external/libcxx/test/std/strings/c.strings/
cctype.pass.cpp 22 #ifdef isalpha
23 #error isalpha defined
78 ASSERT_SAME_TYPE(int, decltype(std::isalpha(0)));
93 assert( std::isalpha('a'));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
ctype.h 49 #define isalpha(c) (isupper(c) || islower(c)) macro
  /device/linaro/bootloader/edk2/StdLib/Include/
ctype.h 35 /** The isalnum function tests for any character for which isalpha or isdigit
45 /** The isalpha function tests for any character for which isupper or islower
48 isspace is true. In the "C" locale, isalpha returns true only for the
56 int isalpha(int c);
225 #define isalpha(c) (__isCClass( (int)c, (_CU | _CL | _XA))) macro
  /bionic/libc/bionic/
ctype.cpp 36 return isalpha(c);
  /bionic/tests/
ctype_test.cpp 37 TEST(ctype, isalpha) {
38 EXPECT_FALSE(isalpha('1'));
39 EXPECT_TRUE(isalpha('a'));
40 EXPECT_TRUE(isalpha('A'));
41 EXPECT_FALSE(isalpha('!'));
42 EXPECT_FALSE(isalpha(' '));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
bytes_methods.h 41 #define ISALPHA(c) Py_ISALPHA(c)
51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
bytes_methods.h 41 #define ISALPHA(c) Py_ISALPHA(c)
51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.c 75 (Length == 3 && isalpha (FilePath[0]) && (strcmp(FilePath + 1, ":\\") == 0)) ||
190 (Length == 3 && isalpha (Return[0]) && (strcmp(Return + 1, ":\\") == 0)) ||
  /external/python/cpython2/Include/
bytes_methods.h 41 #define ISALPHA(c) Py_ISALPHA(c)
51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
  /bionic/tests/headers/posix/
ctype_h.c 36 FUNCTION(isalpha, int (*f)(int));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lctype.h 83 #define lislalpha(c) (isalpha(c) || (c) == '_')
  /device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
CClass.c 39 /** The isalnum function tests for any character for which isalpha or isdigit
55 /** The isalpha function tests for any character for which isupper or islower
58 isspace is true. In the "C" locale, isalpha returns true only for the
67 isalpha( function
  /external/curl/lib/
curl_ctype.h 44 #define ISALPHA(x) (isalpha((int) ((unsigned char)x)))
69 #define ISALPHA(x) (Curl_isalpha((int) ((unsigned char)x)))
  /external/lua/src/
lctype.h 83 #define lislalpha(c) (isalpha(c) || (c) == '_')

Completed in 701 milliseconds

1 2 3 4 5 6 7 8 91011>>