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

1 2 34 5 6 7 8 91011>>

  /external/toolchain-utils/crosperf/
column_chart.py 10 self.chart_div = filter(str.isalnum, title)
  /system/core/libcutils/
android_get_control_file.cpp 58 if (!isalnum(*cp)) *cp = '_';
  /external/ImageMagick/coders/
vicar.c 217 if (isalnum(c) == MagickFalse)
237 } while (isalnum(c) || (c == '_'));
250 while (isalnum(c))
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
RangeExpression.py 107 if type(Operand) == type('') and not Operand.isalnum():
121 if type(Operand) == type('') and not Operand.isalnum():
133 if type(Operand) == type('') and not Operand.isalnum():
146 if type(Operand) == type('') and not Operand.isalnum():
159 if type(Operand) == type('') and not Operand.isalnum():
172 if type(Operand) == type('') and not Operand.isalnum():
651 return Ch in '._/:' or Ch.isalnum()
668 if Match and not Expr[Match.end():Match.end() + 1].isalnum() \
  /external/libcap/libcap/
cap_text.c 49 if (*nam || isalnum((unsigned char)*str) || *str == '_')
161 if (isalnum((unsigned char)*str) || *str == '_') {
174 if (!isalnum((unsigned char)*++str) && *str != '_')
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regex2.h 209 #define ISWORD(c) (isalnum((unsigned char)c) || (c) == '_')
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
iswctype_sb.c 62 return isalnum((int)c);
  /external/llvm/lib/Support/
regex2.h 160 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_')
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 134 if (isalnum(UC) || ispunct(UC)) {
  /external/markdown/markdown/extensions/
rss.py 88 guid = ''.join([x for x in heading if x.isalnum()])
  /external/selinux/libselinux/src/
compute_create.c 26 if (isalnum(code) || code == '\0' || code == '-' ||
  /external/swiftshader/third_party/LLVM/lib/Support/
regex2.h 157 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_')
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 123 if (!std::isalnum(*I) && *I != '_' && *I != '-' && *I != '.')
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regex2.h 160 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_')
  /external/v8/tools/
android-run.py 72 if not x.isalnum() and x != '-' and x != '_':
  /frameworks/compile/mclinker/lib/LD/
ELFBinaryReader.cpp 85 if (isalnum(*it) == 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
localefwd.h 104 isalnum(_CharT, const locale&);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
localefwd.h 104 isalnum(_CharT, const locale&);
  /system/core/demangle/
demangle.cpp 86 while (*p && (std::isalnum(*p) || *p == '_' || *p == '.' || *p == '$')) ++p;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
ExpressionValidate.py 117 if (Operator in LetterOp and (Char == '_' or Char.isalnum())) \
163 self.Token[self.Index:self.Index+1].isalnum():
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Unicode.py 396 s.isalnum()
406 s.isalnum()
416 s.isalnum()
426 s.isalnum()
436 s.isalnum()
  /external/python/cpython2/Tools/pybench/
Unicode.py 396 s.isalnum()
406 s.isalnum()
416 s.isalnum()
426 s.isalnum()
436 s.isalnum()
  /external/python/cpython3/Tools/pybench/
Unicode.py 395 s.isalnum()
405 s.isalnum()
415 s.isalnum()
425 s.isalnum()
435 s.isalnum()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bool.py 209 self.assertIs("xyz0123".isalnum(), True)
210 self.assertIs("@#$%".isalnum(), False)
229 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
230 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
  /external/google-benchmark/src/
commandlineflags.cc 215 return isalnum(ch) &&

Completed in 873 milliseconds

1 2 34 5 6 7 8 91011>>