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

/external/chromium_org/rlz/lib/
H A Dstring_utils.cc13 bool IsAscii(unsigned char letter) { argument
14 return letter < 0x80;
17 bool GetHexValue(char letter, int* value) { argument
24 if (letter >= '0' && letter <= '9')
25 *value = letter - '0';
26 else if (letter >= 'a' && letter <= 'f')
27 *value = (letter - 'a') + 0xA;
28 else if (letter >
[all...]
/external/libvpx/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/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.c37 char letter = msg[colpos]; local
40 if (letter <= 'Z' && letter >= ' ')
41 letter_bitmap = font[letter - ' '];
42 else if (letter <= 'z' && letter >= 'a')
43 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/chromium_org/base/files/
H A Dfile_path.cc43 // If this FilePath contains a drive letter specification, returns the
44 // position of the last character of the drive letter specification,
46 // begins with a letter followed by a colon. On other platforms, this always
83 StringType::size_type letter = FindDriveLetter(path); local
84 if (letter != StringType::npos) {
86 return path.length() > letter + 1 &&
87 FilePath::IsSeparator(path[letter + 1]);
243 // Capture drive letter, if any.
245 StringType::size_type letter = FindDriveLetter(dir.value()); local
246 if (letter !
313 StringType::size_type letter = FindDriveLetter(new_path.path_); local
346 StringType::size_type letter = FindDriveLetter(new_path.path_); local
[all...]
/external/chromium_org/third_party/gtk+/gtk/
H A Dcompose-parse.py90 * The following compose letter letter sequences confliced
762 letter = "".join(sequence[-1:]) variable
763 print '0x%(cp)04X, %(uni)s, seq: [ <0x%(base)04X>,' % { 'cp': ord(unicode(letter)), 'uni': letter.encode('utf-8'), 'base': sequence[-2] },
767 print "], recomposed as", letter.encode('utf-8'), "verified"
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumbermatcher.cc385 bool PhoneNumberMatcher::IsLatinLetter(char32 letter) { argument
387 if (!u_isalpha(letter) && (u_charType(letter) != U_NON_SPACING_MARK)) {
390 UBlockCode block = ublock_getCode(letter);
423 // We return false if it is a latin letter or an invalid punctuation
/external/chromium_org/third_party/icu/source/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/icu4c/i18n/
H A Ducol_sit.cpp109 char letter; member in struct:AttributeConversion
134 return conversions[i].letter;
145 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { argument
148 if(conversions[i].letter == letter) {
154 fprintf(stderr, "%s:%d: unknown letter %c: %s\n", __FILE__, __LINE__, letter, u_errorName(*status));
638 char letter = ucol_sit_attributeValueToLetter(attribute, status); local
639 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/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp414 static bool GetLetterCBox(FT_Face face, char letter, FT_BBox* bbox) { argument
415 const FT_UInt glyph_id = FT_Get_Char_Index(face, letter);
/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.cpp417 static bool GetLetterCBox(FT_Face face, char letter, FT_BBox* bbox) { argument
418 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/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCSSMetadata.js89 "empty-cells", "font-family", "font-size", "font-style", "font-variant", "font-weight", "font", "letter-spacing",
252 "a3", "a4", "a5", "b4", "b5", "landscape", "ledger", "legal", "letter", "portrait"
464 "letter-spacing": { values: [
809 "letter-spacing": 3,
/external/chromium_org/v8/src/
H A Dparser.cc5306 // Special case if it is an ASCII letter.
5308 uc32 letter = controlLetter & ~('a' ^ 'A'); local
5309 if (letter < 'A' || 'Z' < letter) {
5636 uc32 letter = controlLetter & ~('A' ^ 'a'); local
5641 (letter >= 'A' && letter <= 'Z')) {
/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/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp1268 // block with pseudo-style element siblings (e.g. first-letter). If these
1409 // Update our first letter info now.
4364 // FIXME: Should letter-spacing apply? This is complicated since it doesn't apply at the edge?
4426 // FIXME: Should letter-spacing apply? This is complicated since it doesn't apply at the edge?
6553 // CSS2 says first-letter can't be positioned.
6558 // CSS 2.1 http://www.w3.org/TR/CSS21/selector.html#first-letter
6560 // "initial" (Pi). "final" (Pf) and "other" (Po) punctuation classes), that precedes or follows the first letter should be included"
6581 // implemented using flex box but should still support first-letter.
6583 // first-letter, though.
6610 // The first-letter rendere
6709 RenderTextFragment* letter = local
[all...]

Completed in 845 milliseconds