/external/webkit/Source/WebKit/chromium/src/gtk/ |
WebFontInfo.cpp | 56 FcValue fcvalue; local 57 fcvalue.type = FcTypeCharSet; 58 fcvalue.u.c = cset; 59 FcPatternAdd(pattern, FC_CHARSET, fcvalue, FcFalse); 61 fcvalue.type = FcTypeBool; 62 fcvalue.u.b = FcTrue; 63 FcPatternAdd(pattern, FC_SCALABLE, fcvalue, FcFalse); 122 FcValue fcvalue; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
UserHistoryDictionaryBigramList.java | 54 public void addBigram(String word1, String word2, byte fcValue) { 56 Log.d(TAG, "--- add bigram: " + word1 + ", " + word2 + ", " + fcValue); 67 map.put(word2, fcValue); 74 public void updateBigram(String word1, String word2, byte fcValue) { 76 Log.d(TAG, "--- update bigram: " + word1 + ", " + word2 + ", " + fcValue); 87 map.put(word2, fcValue);
|
/external/skia/src/ports/ |
SkFontHost_fontconfig.cpp | 81 FcValue fcvalue; local 82 fcvalue.type = vtype; 85 fcvalue.u.s = (FcChar8*) value; 88 fcvalue.u.i = (int)(intptr_t)value; 93 FcPatternAdd(pattern, type, fcvalue, FcFalse);
|
/external/skia/legacy/src/ports/ |
SkFontHost_fontconfig.cpp | 104 FcValue fcvalue; local 105 fcvalue.type = vtype; 108 fcvalue.u.s = (FcChar8*) value; 111 fcvalue.u.i = (int)(intptr_t)value; 116 FcPatternAdd(pattern, type, fcvalue, 0);
|