HomeSort by relevance Sort by last modified time
    Searched full:charcode (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /external/freetype/src/bdf/
bdfdrivr.c 92 FT_UInt32 charcode )
111 if ( charcode == code )
119 if ( charcode < code )
137 FT_ULong charcode = *acharcode + 1; local
151 if ( charcode == code )
159 if ( charcode < code )
165 charcode = 0;
168 charcode = (FT_ULong)encodings[min].enc;
173 if ( charcode > 0xFFFFFFFFUL )
175 FT_TRACE1(( "bdf_cmap_char_next: charcode 0x%x > 32bit API" ))
    [all...]
  /external/pdfium/core/fpdfapi/font/
cpdf_fontencoding.cpp     [all...]
  /external/autotest/client/cros/
touch_events_test_page.html 191 if ('charCode' in event)
192 msg += ' charCode=' + event.charCode;
  /external/annotation-tools/asmx/test/lib/
saxon7.jar 
  /external/freetype/src/cache/
ftccmap.c 52 #define FTC_CMAP_HASH( faceid, index, charcode ) \
54 ( (charcode) / FTC_CMAP_INDICES_MAX ) )
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 239 * @param charCode A character code
242 private boolean insertCharToComposingText(int charCode) {
243 if (charCode == 0) {
246 insertCharToComposingText(Character.toChars(charCode));
602 int charCode = ev.getUnicodeChar(MetaKeyKeyListener.META_SHIFT_ON | MetaKeyKeyListener.META_ALT_ON);
603 if (charCode == 0 || (charCode & KeyCharacterMap.COMBINING_ACCENT) != 0 || charCode == PRIVATE_AREA_CODE) {
    [all...]
  /external/freetype/src/psaux/
t1decode.c 118 /* Looks up a given glyph by its StandardEncoding charcode. Used to */
124 /* charcode :: The character code to look for. */
132 FT_Int charcode )
140 if ( charcode < 0 || charcode > 255 )
144 psnames->adobe_std_encoding[charcode]);
168 /* Looks up a given glyph by its StandardEncoding charcode. Used to */
174 /* charcode :: The character code to look for. */
182 FT_Int charcode )
190 if ( charcode < 0 || charcode > 255
    [all...]
  /external/freetype/src/type1/
t1load.c 1426 FT_Int charcode; local
2444 FT_Int charcode, idx, min_char, max_char; local
    [all...]
  /external/pdfium/core/fpdftext/
cpdf_textpage.h 150 int GetCharWidth(uint32_t charCode, CPDF_Font* pFont) const;
  /external/skia/tools/fonts/
SkTestScalerContext.cpp 42 int SkTestFont::codeToIndex(SkUnichar charCode) const {
44 if (fCharCodes[index] == (unsigned) charCode) {
  /external/skqp/tools/
SkTestScalerContext.cpp 42 int SkTestFont::codeToIndex(SkUnichar charCode) const {
44 if (fCharCodes[index] == (unsigned) charCode) {
  /external/freetype/src/base/
ftobjs.c     [all...]
  /external/freetype/src/type42/
t42parse.c 378 /* ... charcode /charname ... */
425 FT_Int charcode; local
429 charcode = n;
432 charcode = (FT_Int)T1_ToInt( parser );
435 /* protect against invalid charcode */
461 parser->root.error = T1_Add_Table( char_table, charcode,
465 char_table->elements[charcode][len] = '\0';
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
strings.swg 497 %define %_typemap2_string(StringCode, CharCode,
602 %define %typemaps_string(StringCode, CharCode,
608 %_typemap2_string(StringCode, CharCode,
622 %define %typemaps_string_alloc(StringCode, CharCode,
630 %_typemap2_string(StringCode, CharCode,
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator.cpp 391 for (uint32_t charcode : pTextObj->GetCharCodes()) {
392 if (charcode != CPDF_Font::kInvalidCharCode)
393 pFont->AppendChar(&text, charcode);
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.cpp     [all...]
  /external/pdfium/public/
fpdf_fwlevent.h 263 FPDF_DWORD charcode; member in union:FWL_EVENT_KEY::__anon31339
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.h 184 float getProbability(const int index, const int charCode) const;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
BearerData.java 506 int charCode = UserData.charToAscii.get(msg.charAt(i), -1);
507 if (charCode == -1) {
514 outStream.write(7, charCode);
    [all...]
  /external/pdfium/fxjs/
cjs_document.cpp 1337 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
1369 uint32_t charcode = CPDF_Font::kInvalidCharCode; local
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
freetype.h     [all...]
  /external/pdfium/fpdfsdk/
fpdfedittext.cpp 129 // Loads the charcode to unicode mapping into a stream
132 // A map charcode->unicode
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 520 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
525 (*glyphToUnicode)[glyphIndex] = charCode;
527 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex);
    [all...]
  /external/skqp/src/ports/
SkFontHost_FreeType.cpp 520 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
525 (*glyphToUnicode)[glyphIndex] = charCode;
527 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex);
    [all...]
  /external/libvncserver/webclients/novnc/include/
keyboard.js 167 // if char/charCode is available, prefer those, otherwise fall back to key/keyCode/which
173 else if (evt.charCode) {
174 codepoint = evt.charCode;

Completed in 2032 milliseconds

1 23 4 5