OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clipheight
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/fuzzymatch/
fuzzymatch.c
123
const int
clipheight
= pixGetHeight(deltabinary) - 15;
local
125
if (ignore_scrollbars && clipwidth > 0 &&
clipheight
> 0) {
126
BOX *clip = boxCreate(0, 0, clipwidth,
clipheight
);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java
203
float
clipHeight
;
207
clipHeight
= newHeight;
209
clipHeight
= newNotificationEnd - previousNotificationEnd;
210
clipHeight
= Math.max(0.0f,
clipHeight
);
211
if (
clipHeight
!= 0.0f) {
219
clipHeight
+= clippingCorrection;
223
updateChildClippingAndBackground(state, newHeight,
clipHeight
,
241
* @param
clipHeight
the desired clip height, the rest of the view will be clipped from the top
246
float realHeight, float
clipHeight
, float backgroundHeight)
[
all
...]
/external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
app_info_dialog_views.cc
83
// TODO(sashab): Add
ClipHeight
() as a parameter-less method to
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFieldset.cpp
183
LayoutUnit
clipHeight
= max(static_cast<LayoutUnit>(style()->borderTopWidth()), legend->height() - ((legend->height() - borderTop()) / 2));
184
graphicsContext->clipOut(pixelSnappedIntRect(paintRect.x() + legend->x(), clipTop, legend->width(),
clipHeight
));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtilsImpl.js
577
var
clipHeight
= WebInspector.TimelineUIUtils.quadHeight(clip);
578
contentHelper.appendTextRow(WebInspector.UIString("Dimensions"), WebInspector.UIString("%d × %d", clipWidth,
clipHeight
));
TracingTimelineUIUtils.js
602
var
clipHeight
= WebInspector.TimelineUIUtils.quadHeight(clip);
603
contentHelper.appendTextRow(WebInspector.UIString("Dimensions"), WebInspector.UIString("%d × %d", clipWidth,
clipHeight
));
[
all
...]
Completed in 1307 milliseconds