/external/webkit/WebCore/platform/graphics/chromium/ |
H A D | FontPlatformDataLinux.h | 74 FontPlatformData(float textSize, bool fakeBold, bool fakeItalic) argument 76 , m_textSize(textSize) 82 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic); 83 FontPlatformData(const FontPlatformData& src, float textSize);
|
H A D | FontPlatformDataLinux.cpp | 77 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic) argument 79 , m_textSize(textSize) 86 FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize) argument 88 , m_textSize(textSize)
|
/external/webkit/WebCore/platform/graphics/android/ |
H A D | FontPlatformData.h | 52 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic); 53 FontPlatformData(const FontPlatformData& src, float textSize);
|
H A D | FontPlatformDataAndroid.cpp | 89 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic) argument 90 : mTypeface(tf), mTextSize(textSize), mFakeBold(fakeBold), mFakeItalic(fakeItalic) 100 FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize) argument 101 : mTypeface(src.mTypeface), mTextSize(textSize), mFakeBold(src.mFakeBold), mFakeItalic(src.mFakeItalic)
|
/external/webkit/WebKit/android/nav/ |
H A D | CachedInput.h | 57 void setTextSize(int textSize) { mTextSize = textSize; } argument 58 int textSize() const { return mTextSize; } function in class:android::CachedInput
|
H A D | WebView.cpp | 1476 return input ? input->textSize() : 0;
|
/external/icu4c/test/perf/ubrkperf/ |
H A D | ubrkperf.cpp | 90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; 130 int32_t timePerCU = (int)(float(1000) * ((float)loopTime/(float)textSize)); 133 printf("number of code units %d average time per code unit %d\n", textSize, timePerCU); 136 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize);
|
H A D | ubrkperfold.cpp | 164 int32_t textSize = 0; variable 289 brkit->setText(UnicodeString(text, textSize)); 316 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; 356 int32_t timePerCU = (int)(float(1000) * ((float)loopTime/(float)textSize)); 359 printf("number of code units %d average time per code unit %d\n", textSize, timePerCU); 362 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize); 374 brkit->setText(UnicodeString(text, textSize)); 376 for(j = 0; j < textSize; j++) { 390 for(j = 0; j < textSize; j++) { 400 int32_t timePerCU = (int)(float(1000) * ((float)loopTime/(float)textSize)); [all...] |
/external/svox/pico/lib/ |
H A D | picoctrl.h | 68 picoos_int16 textSize,
|
H A D | picoapi.h | 375 'textSize' is the maximum size in number of bytes accessible in 391 const pico_Int16 textSize,
|
H A D | picoapi.c | 587 * @param textSize : text buffer size 597 const pico_Int16 textSize, 606 } else if (textSize < 0) { 612 status = picoctrl_engFeedText((picoctrl_Engine) engine, (picoos_char *)text, textSize, bytesPut); 594 pico_putTextUtf8( pico_Engine engine, const pico_Char *text, const pico_Int16 textSize, pico_Int16 *bytesPut) argument
|
H A D | picoctrl.c | 716 * @param textSize : size of the input text 725 picoos_int16 textSize, picoos_int16 * bytesPut) { 731 while ((*bytesPut < textSize) && (PICO_OK == picodata_cbPutCh(this->cbIn, text[*bytesPut]))) { 723 picoctrl_engFeedText(picoctrl_Engine this, picoos_char * text, picoos_int16 textSize, picoos_int16 * bytesPut) argument
|
/external/skia/src/animator/ |
H A D | SkDrawPaint.cpp | 66 SK_MEMBER(textSize, Float), 82 textAlign((SkPaint::Align) -1), textScaleX(SK_ScalarNaN), textSize(SK_ScalarNaN), 265 if (SkScalarIsNaN(textSize) == false) 266 paint->setTextSize(textSize);
|
H A D | SkDrawPaint.h | 70 SkScalar textSize; member in class:SkDrawPaint
|
/external/webkit/WebKit/android/plugins/ |
H A D | ANPPaintInterface.cpp | 127 static void anp_setTextSize(ANPPaint* paint, float textSize) { argument 128 paint->setTextSize(SkFloatToScalar(textSize));
|
/external/skia/src/core/ |
H A D | SkPictureFlat.cpp | 122 SkScalar textSize = buffer.readScalar(); local 123 if (textSize != defaultPaint.getTextSize()) 125 "textSize:%g ", SkScalarToFloat(textSize));
|
H A D | SkDraw.cpp | 1232 const SkRect& r, SkScalar textSize) { 1237 p.setStrokeWidth(SkScalarMul(textSize, paint.getStrokeWidth())); 1248 SkScalar textSize = paint.getTextSize(); local 1249 SkScalar height = SkScalarMul(textSize, kStdUnderline_Thickness); 1256 SkScalar offset = SkScalarMulAdd(textSize, kStdUnderline_Offset, 1260 draw_paint_rect(draw, paint, r, textSize); 1263 SkScalar offset = SkScalarMulAdd(textSize, kStdStrikeThru_Offset, 1267 draw_paint_rect(draw, paint, r, textSize); 1231 draw_paint_rect(const SkDraw* draw, const SkPaint& paint, const SkRect& r, SkScalar textSize) argument
|
H A D | SkPicturePlayback.cpp | 1030 SkScalar textSize = paint.getTextSize(); local 1031 if (textSize != defaultPaint.getTextSize()) 1033 "{kTextSize, %g}, ", SkScalarToFloat(textSize));
|
/external/webkit/WebKit/android/jni/ |
H A D | WebSettings.cpp | 261 jobject textSize = env->GetObjectField(obj, gFieldIds->mTextSize); local 262 float zoomFactor = env->GetIntField(textSize, gFieldIds->mTextSizeValue) / 100.0f;
|
/external/webkit/WebKit/win/ |
H A D | FullscreenVideoController.cpp | 62 static const int textSize = 11; variable 439 desc.setComputedSize(textSize);
|
/external/skia/include/core/ |
H A D | SkPaint.h | 628 @param textSize set the paint's text size. 630 void setTextSize(SkScalar textSize);
|