Searched refs:isupper (Results 1 - 25 of 84) sorted by path

1234

/external/arduino/hardware/arduino/cores/arduino/
H A DWCharacter.h53 // It is equivalent to (isupper(c) || islower(c)).
130 return ( isupper (c) == 0 ? false : true);
/external/bison/
H A Dmaint.mk599 |isprint|ispunct|isspace|isupper|isxdigit|tolower|toupper
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dclosurizednamespacesinfo.py185 if len(parts) > 1 and parts[-2][0].isupper():
480 if part == 'prototype' or part.isupper():
483 if part[0].isupper():
/external/chromium_org/base/android/jni_generator/
H A Djni_generator.py266 if len(components) > 2 and components[-2][0].isupper():
472 elif c.isupper() or datatype[i - 1] in ['/', 'L']:
/external/chromium_org/components/autofill/core/browser/
H A Dpassword_generator_unittest.cc36 if (isupper(password[i]))
/external/chromium_org/components/url_matcher/
H A Durl_matcher_factory.cc176 return std::find_if(str.begin(), str.end(), ::isupper) != str.end();
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h2165 return isupper(static_cast<unsigned char>(ch)) != 0;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInspector.py104 while pos < len(str) and str[pos].isupper():
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_protocol_externs.py195 while uppercase_length < len(domain_name) and domain_name[uppercase_length].isupper():
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_utl.c412 if(isupper(ch)) ch = tolower(ch);
413 if(isupper(cl)) cl = tolower(cl);
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dclosurizednamespacesinfo.py184 if len(parts) > 1 and parts[-2][0].isupper():
474 if part == 'prototype' or part.isupper():
477 if part[0].isupper():
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dzic.c2670 return (isascii(a) && isupper(a)) ? tolower(a) : a;
/external/chromium_org/third_party/jinja2/
H A Ddefaults.py43 __all__ = tuple(x for x in locals().keys() if x.isupper())
H A Dtests.py72 return text_type(value).isupper()
/external/chromium_org/third_party/libjpeg_turbo/
H A Dcdjpeg.c13 #include <ctype.h> /* to declare isupper(), tolower() */
130 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
H A Drdjpgcom.c21 #include <ctype.h> /* to declare isupper(), tolower() */
436 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
H A Dwrjpgcom.c20 #include <ctype.h> /* to declare isupper(), tolower() */
395 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2782 return isupper(static_cast<unsigned char>(ch)) != 0;
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c175 # define iswupper(x) isupper(x)
5380 if (isupper(i))
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h1527 return isupper(static_cast<unsigned char>(ch)) != 0;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A DglX_proto_send.py40 elif str[i].isupper():
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dmapi_abi.py377 fmt = formats[prefix.isupper()][stringify]
388 fmt = formats[prefix.isupper()]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstrlib.c276 case 'u' : res = isupper(c); break;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest4.c109 if( zArg==0 || zArg[0]==0 || zArg[1]!=0 || !isupper((unsigned char)zArg[0]) ){
H A Dtest7.c131 if( zArg==0 || zArg[0]==0 || zArg[1]!=0 || !isupper((unsigned char)zArg[0]) ){

Completed in 995 milliseconds

1234