OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tolower
(Results
51 - 75
of
221
) sorted by null
1
2
3
4
5
6
7
8
9
/ndk/build/platforms/android-4/arch-arm/usr/include/
ctype.h
83
int
tolower
(int);
157
__CTYPE_INLINE int
tolower
(int c)
function
/ndk/build/platforms/android-5/arch-arm/usr/include/
ctype.h
83
int
tolower
(int);
157
__CTYPE_INLINE int
tolower
(int c)
function
/ndk/build/platforms/android-5/arch-x86/usr/include/
ctype.h
79
int
tolower
(int);
153
__CTYPE_INLINE int
tolower
(int c)
function
/ndk/build/platforms/android-8/arch-arm/usr/include/
ctype.h
83
int
tolower
(int);
157
__CTYPE_INLINE int
tolower
(int c)
function
/ndk/build/platforms/android-8/arch-x86/usr/include/
ctype.h
83
int
tolower
(int);
157
__CTYPE_INLINE int
tolower
(int c)
function
/external/e2fsprogs/intl/
localealias.c
401
/* I know this seems to be odd but the
tolower
() function in
403
c1 = isupper (*p1) ?
tolower
(*p1) : *p1;
404
c2 = isupper (*p2) ?
tolower
(*p2) : *p2;
/bionic/libc/netbsd/nameser/
ns_ttl.c
93
*p =
tolower
(ch);
/external/icu4c/samples/case/
ucase.c
41
u_fprintf(out, "
tolower
() = %C\n", ch);
/external/icu4c/test/perf/charperf/
charperf.h
164
inline void
toLower
(UChar32 ch)
/external/opencore/oscl/oscl/config/android/
osclconfig_unix_android.h
47
#include <ctype.h> // for
tolower
and toupper
/external/opencore/oscl/oscl/config/shared/
osclconfig_unix_common.h
47
#include <ctype.h> // for
tolower
and toupper
/external/openssl/crypto/x509/
x509_cmp.c
177
ca =
tolower
(a->data[i]);
178
cb =
tolower
(b->data[i]);
224
ca =
tolower
(*pa);
225
cb =
tolower
(*pb);
/external/skia/src/core/
SkTSearch.cpp
110
c =
tolower
(c);
/external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h
38
EAS_INLINE EAS_I8
ToLower
(EAS_I8 c) { if ((c >= 'A') && (c <= 'Z')) return c |= 0x20; else return c; }
/external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h
38
EAS_INLINE EAS_I8
ToLower
(EAS_I8 c) { if ((c >= 'A') && (c <= 'Z')) return c |= 0x20; else return c; }
/external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h
38
EAS_INLINE EAS_I8
ToLower
(EAS_I8 c) { if ((c >= 'A') && (c <= 'Z')) return c |= 0x20; else return c; }
/external/stlport/stlport/
ctype.h
63
# undef
tolower
macro
/system/core/toolbox/
log.c
49
c =
tolower
(c);
/external/e2fsprogs/misc/
util.c
41
ch1 =
tolower
(ch1);
43
ch2 =
tolower
(ch2);
/external/elfutils/src/
ldlex.l
166
if (
tolower
(*endp) == 'k')
170
assert (
tolower
(*endp) == 'm');
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbelo.c
375
req[1] =
tolower
(ELO_PARAMETER);
383
req[1] =
tolower
(ELO_ID);
/external/webkit/JavaScriptCore/wtf/unicode/wince/
UnicodeWince.h
171
wchar_t
toLower
(wchar_t);
175
int
toLower
(wchar_t* result, int resultLength, const wchar_t* source, int sourceLength, bool* isError);
/external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp
76
if (m_isCaseInsensitive && ((upper = Unicode::toUpper(ch)) != (lower = Unicode::
toLower
(ch)))) {
87
return ch != Unicode::
toLower
(ch);
124
UChar lowerCaseRangeBegin = Unicode::
toLower
(unicodeCurr);
126
while ((++unicodeCurr <= hi) && isUnicodeUpper(unicodeCurr) && (Unicode::
toLower
(unicodeCurr) == (lowerCaseRangeEnd + 1)))
370
if (m_pattern.m_ignoreCase && !isASCII(ch) && (Unicode::toUpper(ch) != Unicode::
toLower
(ch))) {
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
console.c
917
if (p_token->alias && (
tolower
( *p_token->alias ) == *new_alias) )
940
(
tolower
( *p_token->alias ) == c) )
964
*s =
tolower
( *s );
979
if (
tolower
( s1[i]) !=
tolower
( s2[i] ))
/external/grub/stage2/
fsys_fat.c
444
for (i = 0; i < 8 && (c = filename[i] =
tolower
(dir_buf[i]))
449
for (j = 0; j < 3 && (c = filename[i + j] =
tolower
(dir_buf[8 + j]))
Completed in 119 milliseconds
1
2
3
4
5
6
7
8
9