HomeSort by relevance Sort by last modified time
    Searched refs:isalnum (Results 176 - 200 of 383) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLLexer.cpp 169 return isalnum(C) || C == '-' || C == '$' || C == '.' || C == '_';
353 while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
417 while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
441 if (!KeywordEnd && !isalnum(*CurPtr) && *CurPtr != '_') KeywordEnd = CurPtr;
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
parse_flags_from_env.cc 96 (strchr("-_", flag_str[e]) != nullptr || isalnum(flag_str[e]))) {
  /frameworks/native/libs/vr/libpdx_default_transport/
pdx_tool.cpp 191 if (isalnum(c) || c == ' ') {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
collections.py 270 if (not all(c.isalnum() or c=='_' for c in name) or _iskeyword(name)
277 if not all(c.isalnum() or c=='_' for c in name):
  /external/ImageMagick/coders/
hdr.c 251 if (isalnum(c) == MagickFalse)
267 } while (isalnum(c) || (c == '_'));
  /external/python/cpython2/Lib/test/
test_curses.py 344 check(curses.ascii.isalnum, b.isalnum())
  /external/python/cpython3/Lib/test/
test_bool.py 206 self.assertIs("xyz0123".isalnum(), True)
207 self.assertIs("@#$%".isalnum(), False)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 314 if (not all(c.isalnum() or c=='_' for c in name)
323 if not all(c.isalnum() or c=='_' for c in name):
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 314 if (not all(c.isalnum() or c=='_' for c in name)
323 if not all(c.isalnum() or c=='_' for c in name):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 314 if (not all(c.isalnum() or c=='_' for c in name)
323 if not all(c.isalnum() or c=='_' for c in name):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 314 if (not all(c.isalnum() or c=='_' for c in name)
323 if not all(c.isalnum() or c=='_' for c in name):
  /external/e2fsprogs/intl/
l10nflist.c 378 if (isalnum ((unsigned char) codeset[cnt]))
  /external/libxml2/
trio.c 175 # define iswalnum(x) isalnum(x)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 52 while (isalnum((LastChar = getchar())))
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 133 return isalnum(c) || c == '_' || c == '$' || c == '.' ||
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 46 #include <ctype.h> /* isalnum */
249 if (!*str || !(isalnum(*str) || *str == '_')) {
  /external/opencv/otherlibs/highgui/
loadsave.cpp 247 if( isalnum(str[i])) // fast check to skip most of characters
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 41 while (isalnum((LastChar = getchar())))
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmLexer.cpp 96 return isalnum(c) || c == '_' || c == '$' || c == '.' || c == '@';
  /external/syslinux/com32/elflink/ldlinux/
readconfig.c 1316 while (isalnum(*p))
1325 if (isalnum(*p)) {
1330 while (isalnum(*p))
1336 if (isalnum(*p)) {
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
graph_to_functiondef.cc 71 if (isalnum(c)) {
  /external/tensorflow/tensorflow/compiler/xla/tools/parser/
hlo_lexer.cc 40 return isalnum(static_cast<unsigned char>(c)) || c == '-' || c == '.' ||
  /external/toybox/toys/posix/
sort.c 153 if (isspace(str[end]) || isalnum(str[end])) str[start++] = str[end];
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 85 if (isalnum(*slash) || *slash == '_') {
  /toolchain/binutils/binutils-2.27/intl/
l10nflist.c 409 if (isalnum ((unsigned char) codeset[cnt]))

Completed in 593 milliseconds

1 2 3 4 5 6 78 91011>>