Searched defs:letter (Results 1 - 13 of 13) 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/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatcher.java265 * Helper method to determine if a character is a Latin-script letter or not. For our purposes,
270 static boolean isLatinLetter(char letter) { argument
272 if (!Character.isLetter(letter) && Character.getType(letter) != Character.NON_SPACING_MARK) {
275 UnicodeBlock block = UnicodeBlock.of(letter);
404 // We return null if it is a latin letter or an invalid punctuation symbol.
/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.cc49 // If this FilePath contains a drive letter specification, returns the
50 // position of the last character of the drive letter specification,
52 // begins with a letter followed by a colon. On other platforms, this always
89 StringType::size_type letter = FindDriveLetter(path); local
90 if (letter != StringType::npos) {
92 return path.length() > letter + 1 &&
93 FilePath::IsSeparator(path[letter + 1]);
233 // Capture drive letter, if any.
235 StringType::size_type letter = FindDriveLetter(dir.value()); local
236 if (letter !
303 StringType::size_type letter = FindDriveLetter(new_path.path_); local
336 StringType::size_type letter = FindDriveLetter(new_path.path_); local
[all...]
/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/iptables/iptables/
H A Dip6tables.c987 print_iface(char letter, const char *iface, const unsigned char *mask, argument
995 printf("%s -%c ", invert ? " !" : "", letter);
H A Diptables.c1023 print_iface(char letter, const char *iface, const unsigned char *mask, argument
1031 printf("%s -%c ", invert ? " !" : "", letter);
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp367 static bool GetLetterCBox(FT_Face face, char letter, FT_BBox* bbox) { argument
368 const FT_UInt glyph_id = FT_Get_Char_Index(face, letter);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/v8/src/
H A Dparser.cc5340 // Special case if it is an ASCII letter.
5342 uc32 letter = controlLetter & ~('a' ^ 'A'); local
5343 if (letter < 'A' || 'Z' < letter) {
5670 uc32 letter = controlLetter & ~('A' ^ 'a'); local
5675 (letter >= 'A' && letter <= 'Z')) {
/external/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp1173 // Update our first letter info now.
5329 // CSS2 says first-letter can't be positioned.
5334 // CSS 2.1 http://www.w3.org/TR/CSS21/selector.html#first-letter
5336 // "initial" (Pi). "final" (Pf) and "other" (Po) punctuation classes), that precedes or follows the first letter should be included"
5360 // FIXME: We need to destroy the first-letter object if it is no longer the first child. Need to find
5365 // We only honor first-letter if the firstLetterBlock can have children in the DOM. This correctly
5366 // prevents form controls from honoring first-letter.
5397 // We found a lower-level node with first-letter, which supersedes the higher-level style
5416 // The first-letter renderer needs to be replaced. Create a new renderer of the right type.
5424 // Move the first letter int
5527 RenderTextFragment* letter = local
[all...]

Completed in 290 milliseconds