HomeSort by relevance Sort by last modified time
    Searched refs:textSize (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/WebKit/android/nav/
CachedInput.h 57 void setTextSize(int textSize) { mTextSize = textSize; }
58 int textSize() const { return mTextSize; }
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.h 74 FontPlatformData(float textSize, bool fakeBold, bool fakeItalic)
76 , m_textSize(textSize)
82 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic);
83 FontPlatformData(const FontPlatformData& src, float textSize);
FontPlatformDataLinux.cpp 77 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic)
79 , m_textSize(textSize)
86 FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize)
88 , m_textSize(textSize)
  /external/webkit/WebCore/platform/graphics/android/
FontPlatformData.h 52 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic);
53 FontPlatformData(const FontPlatformData& src, float textSize);
FontPlatformDataAndroid.cpp 89 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic)
90 : mTypeface(tf), mTextSize(textSize), mFakeBold(fakeBold), mFakeItalic(fakeItalic)
100 FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize)
101 : mTypeface(src.mTypeface), mTextSize(textSize), mFakeBold(src.mFakeBold), mFakeItalic(src.mFakeItalic)
  /frameworks/base/core/java/com/android/internal/widget/
DialogTitle.java 60 final int textSize = a.getDimensionPixelSize(
64 // textSize is already expressed in pixels
65 setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
  /packages/apps/Camera/src/com/android/camera/ui/
StringTexture.java 48 String text, float textSize, int color) {
50 paint.setTextSize(textSize);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LabelView.java 76 int textSize = a.getDimensionPixelOffset(R.styleable.LabelView_textSize, 0);
77 if (textSize > 0) {
78 setTextSize(textSize);
  /external/icu4c/test/perf/ubrkperf/
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);
ubrkperfold.cpp 164 int32_t textSize = 0;
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/
picoctrl.h 68 picoos_int16 textSize,
picoapi.h 375 'textSize' is the maximum size in number of bytes accessible in
391 const pico_Int16 textSize,
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);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 370 int textSize = 1;
371 mCandidatesPaint.setTextSize(textSize);
374 textSize++;
375 mCandidatesPaint.setTextSize(textSize);
379 mImeCandidateTextSize = textSize;
380 mRecommendedCandidateTextSize = textSize * 3 / 4;
392 textSize = 1;
393 mFootnotePaint.setTextSize(textSize);
396 textSize++;
397 mFootnotePaint.setTextSize(textSize);
    [all...]
SoftKeyboardView.java 243 float textSize;
255 textSize = env
263 textSize, true, mSoftKeyDown.getColorHl(),
289 textSize = env
297 textSize, mSoftKeyDown.needBalloon(), mSoftKeyDown
BalloonHint.java 130 * @param textSize The text size used to show label.
140 public void setBalloonConfig(String label, float textSize,
142 mBalloonView.setTextConfig(label, textSize, textBold, textColor);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 50 private final int textSize = 32;
63 mPaint.setTextSize(textSize);
  /external/skia/src/animator/
SkDrawPaint.h 70 SkScalar textSize;
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);
  /packages/apps/Gallery3D/src/com/cooliris/media/
StringTexture.java 46 public static int computeTextWidthForConfig(float textSize, Typeface typeface, String string) {
51 paint.setTextSize(textSize);
57 public static int lengthToFit(float textSize, float maxWidth, Typeface typeface, String string) {
63 paint.setTextSize(textSize);
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 113 private static WebSettings.TextSize textSize =
114 WebSettings.TextSize.NORMAL;
198 s.setTextSize(b.textSize);
300 textSize = WebSettings.TextSize.valueOf(
301 p.getString(PREF_TEXT_SIZE, textSize.name()));
388 public WebSettings.TextSize getTextSize() {
389 return textSize;
  /external/webkit/WebKit/android/plugins/
ANPPaintInterface.cpp 127 static void anp_setTextSize(ANPPaint* paint, float textSize) {
128 paint->setTextSize(SkFloatToScalar(textSize));
  /external/skia/src/core/
SkPictureFlat.cpp 122 SkScalar textSize = buffer.readScalar();
123 if (textSize != defaultPaint.getTextSize())
125 "textSize:%g ", SkScalarToFloat(textSize));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboard.java 611 style, new int[] { android.R.attr.textSize });
612 int textSize = array.getDimensionPixelSize(array.getResourceId(0, 0), defValue);
613 return textSize;
685 int textSize = getTextSizeFromTheme(android.R.style.TextAppearance_Medium, 18);
686 mTextPaint.setTextSize(textSize);
  /external/webkit/WebKit/android/jni/
WebSettings.cpp 60 "Landroid/webkit/WebSettings$TextSize;");
158 c = env->FindClass("android/webkit/WebSettings$TextSize");
159 LOG_ASSERT(c, "Could not find TextSize enum");
261 jobject textSize = env->GetObjectField(obj, gFieldIds->mTextSize);
262 float zoomFactor = env->GetIntField(textSize, gFieldIds->mTextSizeValue) / 100.0f;

Completed in 993 milliseconds

1 2