HomeSort by relevance Sort by last modified time
    Searched defs:widths (Results 1 - 18 of 18) sorted by null

  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 214 float[] widths = new float[str.length()]; local
215 paint.getTextWidths(str, widths);
216 for (float f : widths) {
  /external/skia/bench/
TextBench.cpp 37 SkScalar* widths = storage.get(); local
38 fCount = fPaint.getTextWidths(fText.c_str(), fText.size(), widths);
43 x += widths[i];
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 109 int32 widths[3], heights[3]; local
112 frame.iWidth = widths;
  /external/webkit/WebCore/platform/graphics/android/
FontAndroid.cpp 232 SkScalar* widths = storage.get(); local
236 count = paint.getTextWidths(run.characters(), count << 1, widths);
243 if (x < SkScalarRound(pos + SkScalarHalf(widths[i])))
245 pos += widths[i];
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 76 float[] widths = new float[text.length()]; local
78 int count = mPaint.getTextWidths(text, 0, text.length(), widths);
93 x += widths[i];
TextAlign.java 57 float[] widths = new float[text.length()]; local
58 // initially get the widths for each char
59 int n = paint.getTextWidths(text, widths);
66 accumulatedX += widths[i];
  /external/freetype/src/autofit/
aflatin.h 102 AF_WidthRec widths[AF_LATIN_MAX_WIDTHS]; member in struct:AF_LatinAxisRec_
  /external/freetype/src/pshinter/
pshglob.h 57 /* The maximum number of standard and snap widths in either the */
73 /* standard and snap widths table */
77 PSH_WidthRec widths[PS_GLOBALS_MAX_STD_WIDTHS]; member in struct:PSH_WidthsRec_
  /frameworks/base/core/java/android/widget/
TableLayout.java 451 // children with the widths computed in findLargestCells()
500 final int[] widths = row.getColumnsWidths(widthMeasureSpec); local
501 final int newLength = widths.length;
507 System.arraycopy(widths, 0, mMaxWidths, 0, newLength);
519 System.arraycopy(widths, oldMaxWidths.length,
530 maxWidths[j] = Math.max(maxWidths[j], widths[j]);
581 // Column's widths are changed: force child table rows to re-measure.
  /development/simulator/app/
MainFrame.cpp 121 int widths[2] = { -1, 50 }; local
123 SetStatusWidths(2, widths);
    [all...]
  /frameworks/base/core/java/android/text/
StaticLayout.java 143 float[] widths = mWidths; local
217 if ((end - start) * 2 > widths.length) {
218 widths = new float[ArrayUtils.idealIntArraySize((end - start) * 2)];
219 mWidths = widths;
316 paint.getTextWidths(sub, i, next, widths);
317 System.arraycopy(widths, 0, widths,
326 widths, fm);
327 System.arraycopy(widths, 0, widths,
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h 322 /* A small structure used to model the pre-computed widths of a given */
330 /* widths :: An array of widths. Note: These are 8-bit bytes. */
336 FT_Byte* widths; member in struct:TT_HdmxEntryRec_
348 /* pre-computed widths for a set of given sizes/dimensions. */
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 374 milliseconds