HomeSort by relevance Sort by last modified time
    Searched full:uppercase (Results 51 - 75 of 807) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 14 uppercase -- a string containing all characters considered uppercase letters
28 uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' variable
29 letters = lowercase + uppercase
58 Return a copy of the string s converted to uppercase.
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace
430 letters = lowercase + uppercase
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 14 uppercase -- a string containing all characters considered uppercase letters
28 uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' variable
29 letters = lowercase + uppercase
58 Return a copy of the string s converted to uppercase.
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace
430 letters = lowercase + uppercase
  /external/google-breakpad/src/common/windows/
guid_string.h 49 // Converts guid to a string formatted as uppercase hexadecimal, with
  /external/icu/icu4c/source/samples/props/
props.cpp 41 printf(" is lowercase: %d uppercase: U+%04lx\n", u_islower(codePoint), u_toupper(codePoint));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterCategoryTest.java 49 "Letter, Uppercase",
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/atari/
README.TXT 8 - All *.c files must start with an uppercase letter.
  /packages/apps/UnifiedEmail/tests/src/com/google/android/mail/common/base/
StringUtilTest.java 46 // Named entity uppercase
  /external/guava/guava/src/com/google/common/io/
BaseEncoding.java 327 * uppercase letters. Padding and separator characters remain in their original case.
333 public abstract BaseEncoding upperCase();
526 Alphabet upperCase() {
530 checkState(!hasUpperCase(), "Cannot call upperCase() on a mixed-case alphabet");
535 return new Alphabet(name + ".upperCase()", upperCased);
716 private transient BaseEncoding upperCase;
720 public BaseEncoding upperCase() {
721 BaseEncoding result = upperCase;
723 Alphabet upper = alphabet.upperCase();
724 result = upperCase
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
BaseEncoding.java 270 * uppercase letters. Padding and separator characters remain in their original case.
276 public abstract BaseEncoding upperCase();
469 Alphabet upperCase() {
473 checkState(!hasUpperCase(), "Cannot call upperCase() on a mixed-case alphabet");
478 return new Alphabet(name + ".upperCase()", upperCased);
659 private transient BaseEncoding upperCase;
663 public BaseEncoding upperCase() {
664 BaseEncoding result = upperCase;
666 Alphabet upper = alphabet.upperCase();
667 result = upperCase
    [all...]
  /system/bt/bta/sys/
utl.c 73 ** Description This utility function compares two strings in uppercase.
74 ** String p_s must be uppercase. String p_t is converted to
75 ** uppercase if lowercase. If p_s ends first, the substring
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationCompare.java 206 // Note: A tertiary CE has uppercase case bits (0.0.ut)
210 // Otherwise a tertiary CE's uppercase would be no greater than
211 // a primary/secondary CE's uppercase.
213 // We could construct a special case weight higher than uppercase,
273 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
  /external/icu/icu4c/source/i18n/
collationcompare.cpp 212 // Note: A tertiary CE has uppercase case bits (0.0.ut)
216 // Otherwise a tertiary CE's uppercase would be no greater than
217 // a primary/secondary CE's uppercase.
219 // We could construct a special case weight higher than uppercase,
277 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
  /external/icu/icu4c/source/test/intltest/
punyref.c 72 /* nonzero, in which case the uppercase form is used. The behavior */
73 /* is undefined if flag is nonzero and digit d has no uppercase form. */
83 /* (uppercase). The behavior is undefined if bcp is not a */
89 /* if flag is zero, uppercase if flag is nonzero, and returns */
288 /* Case of last character determines uppercase flag: */
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 202 // Note: A tertiary CE has uppercase case bits (0.0.ut)
206 // Otherwise a tertiary CE's uppercase would be no greater than
207 // a primary/secondary CE's uppercase.
209 // We could construct a special case weight higher than uppercase,
269 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Punycode.java 91 private static char asciiCaseMap(char b, boolean uppercase) {
92 if(uppercase) {
107 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
108 * nonzero, in which case the uppercase form is used.
110 private static char digitToBasic(int digit, boolean uppercase) {
114 if(uppercase) {
419 /* Case of last character determines uppercase flag: */
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Punycode.java 89 private static char asciiCaseMap(char b, boolean uppercase) {
90 if(uppercase) {
105 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
106 * nonzero, in which case the uppercase form is used.
108 private static char digitToBasic(int digit, boolean uppercase) {
112 if(uppercase) {
417 /* Case of last character determines uppercase flag: */
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 449 * "%XY", where "XY" is the two-digit, uppercase, hexadecimal
453 * <p><b>Note</b>: Unlike other escapers, URI escapers produce uppercase
456 * <i>"URI producers and normalizers should use uppercase hexadecimal digits
491 * "%XY", where "XY" is the two-digit, uppercase, hexadecimal
495 * <p><b>Note</b>: Unlike other escapers, URI escapers produce uppercase
498 * <i>"URI producers and normalizers should use uppercase hexadecimal digits
532 * "%XY", where "XY" is the two-digit, uppercase, hexadecimal
536 * <p><b>Note</b>: Unlike other escapers, URI escapers produce uppercase
539 * <i>"URI producers and normalizers should use uppercase hexadecimal digits
562 * "%XY", where "XY" is the two-digit, uppercase, hexadecima
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 125 base64().upperCase();
244 assertSame(base32(), base32().upperCase());
292 assertSame(base32Hex(), base32Hex().upperCase());
306 assertSame(base16(), base16().upperCase());
312 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
375 testStreamingEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
  /cts/hostsidetests/devicepolicy/app/DeviceAdmin/src/com.android.cts.deviceadmin/
DeviceOwnerPasswordTest.java 177 String caseDescription = "minimum UpperCase=0";
186 caseDescription = "minimum UpperCase=1";
195 caseDescription = "minimum UpperCase=3";
  /external/clang/include/clang/Basic/
CharInfo.h 105 /// Return true if this character is an uppercase ASCII letter: [A-Z]
164 /// If the character is not an uppercase character, it is returned as is.
171 /// Converts the given ASCII character to its uppercase equivalent.
  /external/curl/packages/vms/
gnv_libcurl_symbols.opt 7 ! with either case sensitive symbol names or the default of uppercase.
26 ! in pairs for both exact and with an uppercase alias.
29 ! The aliases will be the special shortened uppercase alias, and both
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
field_mask_util.h 117 // 1. Every character after "_" will be converted to uppercase.
120 // 1. The field name contains uppercase letters.
131 // 1. Every uppercase letter is converted to lowercase with a additional
  /development/samples/training/device-management-policy/res/values/
strings.xml 25 <string name="setup_password_uppercase">Set min. pw. uppercase</string>
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
test4.test 167 {"description":"Uppercase start tag name",
171 {"description":"Uppercase end tag name",
175 {"description":"Uppercase attribute name",
187 {"description":"Uppercase close tag attributes",
  /external/curl/m4/
xc-translit.m4 83 dnl characters are converted to uppercase.
97 dnl given in 'extra' argument to uppercase 'P'. For
114 dnl characters are converted to uppercase.
127 dnl given in 'extra' argument to uppercase 'P'. For

Completed in 1478 milliseconds

1 23 4 5 6 7 8 91011>>