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

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
c.py 274 if Char.isalnum():
648 if (PES[i].isalnum() or PES[i] == '_' or PES[i] == '*') and LogicOpPos > PredicateBegin:
663 if PES[PredicateBegin].isalnum() or PES[PredicateBegin] == '_' or PES[PredicateBegin] == '*':
685 if Lvalue[i].isalnum() or Lvalue[i] == '_':
729 while not LBFound and Str[Index] != '_' and not Str[Index].isalnum():
732 while not LBFound and (Str[Index].isalnum() or Str[Index] == '_'):
774 if Str[Index - 1].isalnum() or Str[Index - 1].isspace() or Str[Index - 1] == ')' or Str[Index - 1] == ']':
    [all...]
  /external/selinux/libsemanage/src/
modules.c 996 #define ISVALIDCHAR(c) (isalnum(c) || c == '_' || c == '-')
1048 if (!isalnum(*ext)) {
1053 #define ISVALIDCHAR(c) (isalnum(c) || c == '_' || c == '-')
  /external/skqp/tools/bookmaker/
mdOut.cpp 83 if (!t.eof() && '~' == base[0] && !isalnum(base[1])) {
311 while (start > 0 && (isalnum(filename[start - 1]) || '_' == filename[start - 1])) {
687 while (start > 0 && (isalnum(filename[start - 1]) || '_' == filename[start - 1])) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 646 if (!isalnum(name[index]) && name[index] != '_')
  /external/libvncserver/libvncserver/
httpd.c 648 if (!isalnum(*ptr) && *ptr != '_' && *ptr != '.'
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-param-util.h 647 if (!isalnum(name[index]) && name[index] != '_')
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 53 while (isalnum((LastChar = getchar())))
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 62 while (isalnum((LastChar = getchar())))
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 48 while (isalnum((LastChar = getchar())))
  /external/swiftshader/third_party/subzero/bloat/
bloat.py 167 not (val[8].isalnum() or val[8] == '_')):
  /external/toolchain-utils/crosperf/
experiment_runner.py 279 benchmark_run_name = filter(str.isalnum, benchmark_run.name)
  /external/v8/testing/gtest/include/gtest/internal/
gtest-param-util.h 647 if (!isalnum(name[index]) && name[index] != '_')
  /external/walt/pywalt/pywalt/
walt.py 321 if args.input and args.input.isalnum():
  /frameworks/base/tools/aapt2/util/
Util.cpp 158 return ::isalnum(c) || c == '_';
  /hardware/interfaces/broadcastradio/common/utils2x/
Utils.cpp 391 if (!std::isalnum(ch, loc)) continue;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_locale.py 354 self.assertEqual('\xc0'.isalnum(), False)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 326 if (not all(c.isalnum() or c=='_' for c in name)
337 if not all(c.isalnum() or c=='_' for c in name):
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 757 if Char.isalnum() or Char in '.-_/':
776 if Char.isalnum() or Char == '_':
    [all...]
  /external/ImageMagick/coders/
xpm.c     [all...]
  /external/icu/icu4c/source/tools/ctestfw/
ctest.c     [all...]
  /system/core/adb/
transport.cpp 710 if (sanitize_qual && !isalnum(ch)) ch = '_';
971 auto pred = alphanumeric ? [](const char c) { return !isalnum(c); }
    [all...]

Completed in 760 milliseconds

1 2 3 4 5 6 7 891011>>