Searched defs:letter (Results 1 - 10 of 10) sorted by relevance

/external/libvpx/vp8/common/
H A Dtextblit.c35 char letter = msg[colpos]; local
38 if (letter <= 'Z' && letter >= ' ')
39 letter_bitmap = font[letter-' '];
40 else if (letter <= 'z' && letter >= 'a')
41 letter_bitmap = font[letter-'a'+'A' - ' '];
/external/iptables/
H A Dip6tables-save.c34 print_iface(char letter, const char *iface, const unsigned char *mask, argument
42 printf("-%c %s", letter, invert ? "! " : "");
H A Diptables-save.c40 print_iface(char letter, const char *iface, const unsigned char *mask, argument
48 printf("-%c %s", letter, invert ? "! " : "");
/external/srec/seti/sltsEngine/include/
H A Dlts_seq_internal.h73 unsigned char letter; member in struct:LDP
90 unsigned char letter; member in struct:LDP
111 typedef struct LM { /*letter mappings*/
/external/chromium/base/
H A Dfile_path.cc42 // 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
85 FilePath::StringType::size_type letter = FindDriveLetter(path); local
86 if (letter != FilePath::StringType::npos) {
88 return path.length() > letter + 1 &&
89 FilePath::IsSeparator(path[letter + 1]);
148 // Capture drive letter, if any.
150 StringType::size_type letter = FindDriveLetter(dir.value()); local
151 if (letter !
236 StringType::size_type letter = FindDriveLetter(new_path.path_); local
269 StringType::size_type letter = FindDriveLetter(new_path.path_); local
[all...]
/external/chromium/third_party/icu/source/i18n/
H A Ducol_sit.cpp97 char letter; member in struct:AttributeConversion
122 return conversions[i].letter;
130 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { argument
133 if(conversions[i].letter == letter) {
598 char letter = ucol_sit_attributeValueToLetter(attribute, status); local
599 appendShortStringElement(&letter, 1,
/external/icu4c/i18n/
H A Ducol_sit.cpp96 char letter; member in struct:AttributeConversion
121 return conversions[i].letter;
129 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { argument
132 if(conversions[i].letter == letter) {
597 char letter = ucol_sit_attributeValueToLetter(attribute, status); local
598 appendShortStringElement(&letter, 1,
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c286 unsigned int letter; local
287 for (letter=0; letter <= UCHAR_MAX; letter++)
288 lm->letter_index_for_letter[letter] = LTS_MAXCHAR;
292 char letter = toupper(lm->letters[i]); local
293 lm->letters[i] = letter;
294 lm->letter_index_for_letter[(unsigned char)letter] = i;
305 /* deallocate letter mapping */
507 pfprintf(PSTDOUT,"loading letter mappin
1005 unsigned char letter; local
[all...]
/external/webkit/WebKit/android/nav/
H A DCacheBuilder.cpp1696 // if a word starts with a lowercase letter, no match
1717 if (ch != 'O') // letter 'O', not zero
1749 if (WTF::isASCIIUpper(ch)) { // allow one letter after house number, e.g. 12A SKOLFIELD PL, HARPSWELL, ME 04079
2067 UChar letter = test[0]; local
2068 letter -= 'A';
2069 if (letter > 'X' - 'A')
2071 const char* names = longStreetNames[letter];
2098 letter = &test[testIndex] < s->mEnds[wordsIndex] ?
2100 if (WTF::isASCIIAlpha(letter) == false && WTF::isASCIIDigit(letter)
[all...]
/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp664 // Update our first letter info now.
4591 // FIXME: We need to destroy the first-letter object if it is no longer the first child. Need to find
4596 // We only honor first-letter if the firstLetterBlock can have children in the DOM. This correctly
4597 // prevents form controls from honoring first-letter.
4659 pseudoStyle->setPosition(StaticPosition); // CSS2 says first-letter can't be positioned.
4670 // string. We want the original string before it got transformed in case first-letter has
4682 // account for first letter
4685 // construct text fragment for the text after the first letter
4698 // construct text fragment for the first letter
4699 RenderTextFragment* letter local
[all...]

Completed in 107 milliseconds