OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:widthSoFar
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXInlineTextBox.cpp
99
float
widthSoFar
= 0;
101
widthSoFar
+= widths[i];
102
offsets[i] = LayoutUnit::fromFloatRound(
widthSoFar
);
/packages/apps/Camera2/src/com/android/camera/crop/
BoundedRect.java
272
float
widthSoFar
= newInner.width();
304
if (newWidth <
widthSoFar
)
305
widthSoFar
= newWidth;
309
float heightSoFar =
widthSoFar
/ aspRatio;
312
ret.right = ret.left +
widthSoFar
;
315
ret.left = ret.right -
widthSoFar
;
318
ret.left = ret.right -
widthSoFar
;
321
ret.right = ret.left +
widthSoFar
;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java
274
float
widthSoFar
= newInner.width();
306
if (newWidth <
widthSoFar
)
307
widthSoFar
= newWidth;
311
float heightSoFar =
widthSoFar
/ aspRatio;
314
ret.right = ret.left +
widthSoFar
;
317
ret.left = ret.right -
widthSoFar
;
320
ret.left = ret.right -
widthSoFar
;
323
ret.right = ret.left +
widthSoFar
;
/external/icu4c/layoutex/
ParagraphLayout.cpp
672
float
widthSoFar
= 0;
674
while (glyph < fGlyphCount &&
widthSoFar
+ fGlyphWidths[glyph] <= width) {
675
widthSoFar
+= fGlyphWidths[glyph++];
685
if (
widthSoFar
== 0 && glyph < fGlyphCount) {
[
all
...]
Completed in 47 milliseconds