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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/
qemu-common.h 187 #define qemu_isalnum(c) isalnum((unsigned char)(c))
  /ndk/sources/host-tools/make-3.81/
ansi2knr.c 213 #define is_alnum(c) (is_ascii(c) && isalnum(c))
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 80 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
376 if ((STREQ (str, "alnum") && ISALNUM ((unsigned char) *n))
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 206 if (isalnum(c) == 0) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug.c 47 #include <ctype.h> /* isalnum */
207 if (!*str || !(isalnum(*str) || *str == '_')) {
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 48 while (isalnum((LastChar = getchar())))
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 47 #include <ctype.h> /* isalnum */
207 if (!*str || !(isalnum(*str) || *str == '_')) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
test_bigmem.py 195 self.assertTrue(s.isalnum())
197 self.assertFalse(s.isalnum())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
test_bigmem.py 195 self.assertTrue(s.isalnum())
197 self.assertFalse(s.isalnum())
    [all...]
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
ctest.c     [all...]
  /external/icu4c/tools/ctestfw/
ctest.c     [all...]
  /frameworks/native/cmds/installd/
utils.c 175 if (isalnum(*x) || (*x == '_')) {
200 if (!isalnum(*x)) {
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/objects/
obj_dat.c 747 if (!isalnum((unsigned char)buf[0])) return(num);
  /external/chromium_org/third_party/openssl/openssl/
e_os.h 305 # undef isalnum macro
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 52 while (isalnum((LastChar = getchar())))
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 55 while (isalnum((LastChar = getchar())))
  /external/openssl/crypto/objects/
obj_dat.c 747 if (!isalnum((unsigned char)buf[0])) return(num);
  /external/openssl/
e_os.h 305 # undef isalnum macro
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 289 return isalnum(ch) || ch == '\'' || ch == '(' || ch == ')' || ch == '+' || ch == '_' ||
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lib.c 672 if (!(isalnum((uschar) *s) || *s == '_'))
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 521 #define IS_WORD_CHAR(ch) (isalnum (ch) || (ch) == '_')
  /bionic/libc/kernel/tools/
cpp.py 420 if c2 == tokLN or (not c2.isalnum() and c2 != "_"):
426 if c.isalnum() or c == "_": # identifiers ?
429 if c2 == tokLN or (not c2.isalnum() and c2 != "_"):
    [all...]

Completed in 1608 milliseconds

1 2 3 4 5 6 7 8 91011>>