Searched defs:ucs (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/fontconfig/include/fc-glyphname/
H A Dfcglyphname.h33 static const struct { const FcChar32 ucs; const FcChar8 name[5]; } _fc_glyph_names[201] = { member in struct:__anon11791
/external/chromium_org/third_party/skia/src/views/unix/
H A Dkeysym2ucs.c41 unsigned short ucs; member in struct:codepair
842 return keysymtab[mid].ucs;
/external/skia/src/views/unix/
H A Dkeysym2ucs.c41 unsigned short ucs; member in struct:codepair
842 return keysymtab[mid].ucs;
/external/libvterm/src/
H A Dunicode.c3 // ### The following from http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
67 * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
132 static int bisearch(wchar_t ucs, const struct interval *table, int max) { argument
136 if (ucs < table[0].first || ucs > table[max].last)
140 if (ucs > table[mid].last)
142 else if (ucs < table[mid].first)
185 static int mk_wcwidth(wchar_t ucs) argument
188 if (ucs == 0)
190 if (ucs < 3
240 mk_wcwidth_cjk(wchar_t ucs) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtfsmalls.cpp247 UnicodeString ucs = "unicode-string"; local
255 ucs,
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs)
H A Dustrtest.cpp1139 static const UChar ucs[]={ 0x68, 0x6d, 0x20, 0 }; local
1140 test1.insert(9, ucs, -1);
1179 test1.setTo(TRUE, ucs, 3);
/external/icu/icu4c/source/test/intltest/
H A Dtfsmalls.cpp247 UnicodeString ucs = "unicode-string"; local
255 ucs,
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs)
H A Dustrtest.cpp1139 static const UChar ucs[]={ 0x68, 0x6d, 0x20, 0 }; local
1140 test1.insert(9, ucs, -1);
1179 test1.setTo(TRUE, ucs, 3);
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp447 unsigned long ucs = 0; local
467 ucs += mult * (*q - '0');
469 ucs += mult * (*q - 'a' + 10);
471 ucs += mult * (*q - 'A' + 10 );
494 ucs += mult * (*q - '0');
504 ConvertUTF32ToUTF8( ucs, value, length );
508 *value = (char)ucs;
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp447 unsigned long ucs = 0; local
467 ucs += mult * (*q - '0');
469 ucs += mult * (*q - 'a' + 10);
471 ucs += mult * (*q - 'A' + 10 );
494 ucs += mult * (*q - '0');
504 ConvertUTF32ToUTF8( ucs, value, length );
508 *value = (char)ucs;
/external/tinyxml/
H A Dtinyxmlparser.cpp428 unsigned long ucs = 0; local
448 ucs += mult * (*q - '0');
450 ucs += mult * (*q - 'a' + 10);
452 ucs += mult * (*q - 'A' + 10 );
475 ucs += mult * (*q - '0');
485 ConvertUTF32ToUTF8( ucs, value, length );
489 *value = (char)ucs;
/external/tinyxml2/
H A Dtinyxml2.cpp309 unsigned long ucs = 0; local
329 ucs += mult * (*q - '0');
331 ucs += mult * (*q - 'a' + 10);
333 ucs += mult * (*q - 'A' + 10 );
356 ucs += mult * (*q - '0');
364 ConvertUTF32ToUTF8( ucs, value, length );

Completed in 4404 milliseconds