Searched
full:isalnum (Results
276 -
300 of
572) sorted by null
<<11121314151617181920>>
/external/openssh/openbsd-compat/ |
fmt_scaled.c | 158 if (isalnum(*(p+1))) {
|
/external/srec/config/en.us/dictionary/ |
cmu2nuance.cpp | 50 if (!isalnum(line[0])) {
|
/frameworks/compile/slang/ |
slang_rs_reflect_utils.cpp | 82 if (isalnum(*slash) || *slash == '_') {
|
/frameworks/native/libs/binder/ |
Debug.cpp | 50 return isalnum(c) || c == '_';
|
/ndk/sources/host-tools/ndk-stack/regex/ |
regex2.h | 157 #define ISWORD(c) (isalnum(c) || (c) == '_')
|
/system/extras/fatblock/ |
import.c | 34 return (isalnum(c) ||
|
/external/wpa_supplicant_8/src/wps/ |
wps_upnp_ssdp.c | 51 end1 = !(isalnum(c1) || c1 == '_' || c1 == '-'); 52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); 66 int end = !(isalnum(c) || c == '_' || c == '-');
|
upnp_xml.c | 89 while (isalnum(*in) || *in == '-')
|
/bionic/libc/upstream-netbsd/libc/regex/ |
regex2.h | 209 #define ISWORD(c) (isalnum((unsigned char)c) || (c) == '_')
|
/external/bison/tests/ |
cxx-type.at | 187 while (isalnum (c) || c == '_');
|
/external/chromium/chrome/browser/net/ |
url_info.cc | 203 if (isalnum(next) || isspace(next) || strchr(".-:/", next) != NULL)
|
/external/chromium_org/chrome/browser/net/ |
url_info.cc | 222 if (isalnum(next) || isspace(next) || strchr(".-:/", next) != NULL)
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/ |
nasm.h | 251 #define isnumchar(c) ( isalnum(c) )
|
/external/iputils/ninfod/ |
ninfod_name.c | 195 } else if (!isalnum(name[i+ii]) && name[i+ii] != '-')
|
/external/libppp/src/ |
defs.c | 152 if (!isalnum(*ptr) && strchr("-.", *ptr) == NULL)
|
systems.c | 126 for (from++; (isalnum(*from) || *from == '_') && ptr < endto; from++)
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
cpp-qt.php | 95 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint',
|
klonecpp.php | 74 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint',
|
lscript.php | 105 'illuminate', 'indexOf', 'isAscii', 'isAlnum', 'isAlpha', 'isBone',
|
objc.php | 112 'isgraph', 'isdigit', 'iscntrl', 'isalpha', 'isalnum', 'gmtime',
|
/external/linux-tools-perf/util/ |
config.c | 120 return isalnum(c) || c == '-';
|
/external/opencv/otherlibs/highgui/ |
loadsave.cpp | 247 if( isalnum(str[i])) // fast check to skip most of characters
|
/external/qemu/ |
qemu-common.h | 187 #define qemu_isalnum(c) isalnum((unsigned char)(c))
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
genperf.c | 326 while ((isalnum(*ch) || *ch == '_') && i < 127) 431 while ((isalnum(*ch) || *ch == '_') && i < 127)
|
/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):
|
Completed in 630 milliseconds
<<11121314151617181920>>