Searched refs:cRect (Results 1 – 3 of 3) sorted by relevance
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CSpinner.java | 335 Rectangle cRect = composite.getClientArea(); in layout() local 336 if (cRect.isEmpty()) { in layout() 344 sSize.y = Math.min(sSize.y, Math.min(tSize.y, cRect.height)); in layout() 345 sSize.x = Math.min(sSize.x, cRect.width); in layout() 350 cRect.x + cRect.width - sSize.x + 1, in layout() 351 cRect.y - 1, in layout() 353 cRect.height + 2); in layout() 354 m_text.setBounds(cRect.x, cRect.y + 1, cRect.width - arrowWidth, tSize.y); in layout() 355 win32Hack.setBounds(cRect.x, cRect.y, cRect.width - arrowWidth, sSize.y); in layout() 386 Rectangle cRect = composite.getClientArea(); in layout() local [all …]
|
/external/webkit/Source/WebCore/platform/wx/ |
D | ScrollViewWx.cpp | 188 wxRect cRect(win->GetClientSize()); in platformSetScrollPosition() local 193 else if (newScrollOffset.x + cRect.width > vRect.width) in platformSetScrollPosition() 194 newScrollOffset.x = max(0, vRect.width - cRect.width); in platformSetScrollPosition() 198 else if (newScrollOffset.y + cRect.height > vRect.height) in platformSetScrollPosition() 199 newScrollOffset.y = max(0, vRect.height - cRect.height); in platformSetScrollPosition()
|
/external/webkit/Source/WebKit/mac/Carbon/ |
D | CarbonWindowFrame.m | 98 - (NSRect)frameRectForContentRect:(NSRect)cRect styleMask:(NSUInteger)style { 99 return [[self class] frameRectForContentRect: cRect styleMask:style];
|