HomeSort by relevance Sort by last modified time
    Searched defs:letter (Results 1 - 23 of 23) sorted by null

  /external/autotest/client/deps/glbench/src/
filepath.cc 22 unsigned int letter = 0; local
25 new_path.path_.resize(letter + 1);
26 } else if (last_separator == letter + 1) {
28 new_path.path_.resize(letter + 2);
29 } else if (last_separator == letter + 2 &&
30 IsSeparator(new_path.path_[letter + 1])) {
31 // path_ is in "//" (possibly with a drive letter); leave the double
33 new_path.path_.resize(letter + 3);
93 // Don't append a separator if the path is just a drive letter.
104 // If there is no drive letter, start will be 1, which will preven
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCodeConverter.java 134 long[] letter = pattern(c); local
135 System.arraycopy(letter, 0, result, pos, letter.length);
136 pos += letter.length;
  /external/python/cpython3/Lib/
textwrap.py 78 letter = r'[^\d\W]' variable in class:TextWrapper
96 )''' % {'wp': word_punct, 'lt': letter,
99 del word_punct, letter, nowhitespace
110 sentence_end_re = re.compile(r'[a-z]' # lowercase letter
  /frameworks/av/services/oboeservice/
AAudioMixer.cpp 65 char letter = 'A' + (streamIndex % 26); local
66 rdyText[sizeof(rdyText) - 2] = letter;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
dlg.h 105 unsigned char letter; member in struct:__anon6337
111 (attr)->letter = text[0]; (attr)->l = NULL; \
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestUnicodeProperty.java 28 static final UnicodeSet casedLetter = new UnicodeSet("[:gc=cased letter:]");
29 static final UnicodeSet letter = new UnicodeSet("[:gc=L:]"); field in class:TestUnicodeProperty
51 UnicodeSet casedLetter2 = new UnicodeSet("[:gc=cased letter:]");
70 UnicodeSet casedLetter2 = new UnicodeSet("[:gc=cased letter:]");
  /art/dexlayout/
dexdiag.cc 63 char letter; member in struct:art::DexSectionInfo
172 std::cout << section_info.letter << " " << section_info.name.c_str() << std::endl;
183 return kDexSectionInfoMap.find(type)->second.letter;
  /external/curl/src/
tool_getparam.c 63 const char *letter; /* short name option */ member in struct:LongShort
74 /* 'letter' strings with more than one character have *no* short option to
404 first character is an alphabetic letter:
406 this is a drive letter colon */
412 /* escaped colons and Windows drive letter colons were handled
498 char letter; local
530 parse = aliases[j].letter;
535 parse = aliases[j].letter;
557 letter = (char)*parse;
561 letter = parse[0]
    [all...]
  /external/icu/icu4c/source/i18n/
ucol_sit.cpp 112 char letter; member in struct:AttributeConversion
133 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) {
136 if(conversions[i].letter == letter) {
142 fprintf(stderr, "%s:%d: unknown letter %c: %s\n", __FILE__, __LINE__, letter, u_errorName(*status));
  /external/libchrome/base/files/
file_path.cc 42 // If this FilePath contains a drive letter specification, returns the
43 // position of the last character of the drive letter specification,
45 // begins with a letter followed by a colon. On other platforms, this always
81 StringType::size_type letter = FindDriveLetter(path); local
82 if (letter != StringType::npos) {
84 return path.length() > letter + 1 &&
85 FilePath::IsSeparator(path[letter + 1]);
246 // Capture drive letter, if any.
248 StringType::size_type letter = FindDriveLetter(dir.value()); local
249 if (letter != StringType::npos)
316 StringType::size_type letter = FindDriveLetter(new_path.path_); local
349 StringType::size_type letter = FindDriveLetter(new_path.path_); local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
ZoneParser.java 251 * Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
315 * of these forms may be followed by the letter w if
328 * LETTER/S
352 letter = l.get(7);
353 if (letter.equals("-")) letter = null;
376 public String letter; field in class:ZoneParser.RuleLine
793 // # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 546 String letter = isLong ? "L" : "S"; local
547 String key = tzID + "&" + mzID + "#" + letter;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalInfo.java 63 * only keeps the field pattern letter and ignores all other parts
68 * might hide a field's pattern letter length.
70 * For those non-digit calendar fields, the pattern letter length is
72 * and the field's pattern letter length is honored.
77 * letter length in skeleton.
514 * Processes the pattern letter
516 * @return Pattern letter
519 // Check that patternLetter is just one letter
522 // Check that the pattern letter is accepted
523 char letter = patternLetter.charAt(0) local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 542 String letter = isLong ? "L" : "S"; local
543 String key = tzID + "&" + mzID + "#" + letter;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalInfo.java 62 * only keeps the field pattern letter and ignores all other parts
67 * might hide a field's pattern letter length.
69 * For those non-digit calendar fields, the pattern letter length is
71 * and the field's pattern letter length is honored.
76 * letter length in skeleton.
524 * Processes the pattern letter
526 * @return Pattern letter
529 // Check that patternLetter is just one letter
532 // Check that the pattern letter is accepted
533 char letter = patternLetter.charAt(0) local
    [all...]
  /external/skia/platform_tools/android/apps/arcore/src/main/cpp/
hello_ar_application.cc 160 const char letter[] = {text[i]}; local
161 size_t byteLength = strlen(static_cast<const char *>(letter));
162 canvas->drawText(letter, byteLength, spacing * i, 0, *paint);
    [all...]
  /external/skqp/platform_tools/android/apps/arcore/src/main/cpp/
hello_ar_application.cc 160 const char letter[] = {text[i]}; local
161 size_t byteLength = strlen(static_cast<const char *>(letter));
162 canvas->drawText(letter, byteLength, spacing * i, 0, *paint);
    [all...]
  /external/v8/src/regexp/
regexp-parser.cc 434 // Special case if it is an ASCII letter.
436 uc32 letter = controlLetter & ~('a' ^ 'A'); local
437 if (letter < 'A' || 'Z' < letter) {
1477 uc32 letter = controlLetter & ~('A' ^ 'a'); local
    [all...]
  /external/selinux/libsepol/src/
module_to_cil.c 3963 char *letter; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatTest.java 3412 char letter = PATTERN_CHARS.charAt(j); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatTest.java 3409 char letter = PATTERN_CHARS.charAt(j); local
    [all...]
  /external/dokka/maven/org/jetbrains/dokka/dokka-fatjar/0.9.17-g20190326/
dokka-fatjar-0.9.17-g20190326.jar 
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 806 milliseconds