/external/webkit/WebCore/manual-tests/ |
select-narrow-width.html | 11 widths properly, and while a click on the control would display the popup, 15 (more than 20) items that had narrow widths.
|
/frameworks/base/core/java/android/text/ |
GraphicsOperations.java | 24 * draw/measure/widths calculations from an internal array. 45 public int getTextWidths(int start, int end, float[] widths, Paint p);
|
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...] |
Styled.java | 170 * Returns the advance widths for a uniform left-to-right run of text with 181 * @param widths array to receive the advance widths of the characters. Must 184 * @return the actual number of widths returned 189 float[] widths, Paint.FontMetricsInt fmi) { 208 workPaint.getTextWidths(text, start, end, widths); 213 widths[0] = wid; 215 widths[i - start] = 0;
|
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
FontMetricsImpl.java | 58 // array of char advance widths 59 private int[] widths = new int[256]; field in class:FontMetricsImpl 119 * Initialize the array of the first 256 chars' advance widths of the Font 124 this.widths = new int[256]; 126 widths[chr] = (int) (getFontPeer().charWidth((char) chr) * scaleX); 167 return widths[ch]; 185 return widths[ch]; 229 * Returns the advance widths of the first 256 characters in the Font 234 return this.widths;
|
/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_
|
pshglob.c | 33 /***** STANDARD WIDTHS *****/ 39 /* scale the widths/heights table */ 47 PSH_Width width = stdw->widths; 100 w = dimension->stdw.widths[n].cur; 639 /* copy standard widths */ 642 PSH_Width write = dim->stdw.widths; 662 PSH_Width write = dim->stdw.widths;
|
/dalvik/libdex/ |
InstrUtils.h | 109 * Allocate and populate a 256-element array with instruction widths. A 118 DEX_INLINE int dexGetInstrWidth(const InstructionWidth* widths, OpCode opCode) 121 return widths[opCode]; 127 DEX_INLINE int dexGetInstrWidthAbs(const InstructionWidth* widths,OpCode opCode) 131 int val = dexGetInstrWidth(widths, opCode); 143 int dexGetInstrOrTableWidthAbs(const InstructionWidth* widths, const u2* insns);
|
/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/skia/bench/ |
TextBench.cpp | 37 SkScalar* widths = storage.get(); local 38 fCount = fPaint.getTextWidths(fText.c_str(), fText.size(), widths); 43 x += widths[i];
|
/frameworks/base/graphics/java/android/graphics/ |
Paint.java | [all...] |
/external/webkit/WebKit/android/plugins/ |
ANPPaintInterface.cpp | 151 If widths is not null, returns the array of advance widths for each 156 uint32_t byteLength, float widths[], ANPRectF bounds[]) { 157 return paint->getTextWidths(text, byteLength, widths,
|
/frameworks/base/core/tests/coretests/src/android/view/ |
ZeroSized.java | 25 * This activity contains Views with various widths and heights. The goal is to exercise the
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Paint.java | 1011 * Return the advance widths for the characters in the string. 1016 * @param widths array to receive the advance widths of the characters. 1018 * @return the actual number of widths returned. 1022 float[] widths) { 1025 || count > widths.length) { 1037 widths[i] = info.mMetrics.charWidth(c); 1056 * Return the advance widths for the characters in the string. 1061 * @param widths array to receive the advance widths of the characters [all...] |
/external/webkit/WebCore/rendering/ |
FixedTableLayout.cpp | 60 widths (plus cell spacing or borders). If the table is wider than 66 not affect column widths. Any cell that has content that overflows 190 // numeric_limits<int>::max() will too easily overflow widths. 226 // widths be infinite. 244 // Compute requirements and try to satisfy fixed and percent widths. 268 // Fixed widths only scale up
|
/packages/wallpapers/Basic/res/values/ |
strings.xml | 78 <!-- Polar clock: label for "variable widths" pref --> 79 <string name="variable_line_width">Vary ring widths</string>
|
/external/qemu/hw/ |
sd.h | 60 * SD bus widths
|
/external/webkit/WebCore/css/ |
CSSBorderImageValue.h | 53 int m_horizontalSizeRule; // Rule for how to adjust the widths of the top/middle/bottom
|
/external/webkit/WebCore/inspector/front-end/ |
DataGrid.js | 301 var widths = {}; 304 widths[columnIdentifier] = (columns[columnIdentifier].title || "").length; 310 if (text.length > widths[columnIdentifier]) 311 widths[columnIdentifier] = text.length; 317 totalColumnWidths += widths[columnIdentifier]; 321 var width = Math.round(100 * widths[columnIdentifier] / totalColumnWidths); 329 widths[columnIdentifier] = width; 334 if (widths[columnIdentifier] > minPercent) { 335 --widths[columnIdentifier]; 345 if (widths[columnIdentifier] < maxPercent) [all...] |
/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];
|
/cts/tests/tests/text/src/android/text/method/cts/ |
TouchTest.java | 200 float[] widths = new float[str.length()]; local 201 paint.getTextWidths(str, widths); 202 for (float f : widths) {
|
/dalvik/dx/src/com/android/dx/rop/type/ |
TypeList.java | 53 * all the elements of this list. This is a sum of the widths (categories)
|
/dalvik/vm/analysis/ |
VerifySubs.h | 40 /* add opcode widths to InsnFlags */
|
/external/iproute2/ |
README.lnstat | 62 You can specify individual field widths
|