Home
last modified time | relevance | path

Searched refs:defaultSize (Results 1 – 9 of 9) sorted by relevance

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
DResizableDialog.java71 Point defaultSize = getDefaultSize(); in getInitialSize() local
76 int width = Math.min(displayBounds.width, Math.max(oldBounds.width, defaultSize.x)); in getInitialSize()
77 int height = Math.min(displayBounds.height, Math.max(oldBounds.height, defaultSize.y)); in getInitialSize()
82 return defaultSize; in getInitialSize()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderVideo.cpp55 IntSize RenderVideo::defaultSize() in defaultSize() function in blink::RenderVideo
112 return LayoutSize(defaultSize().width(), 1); in calculateIntrinsicSize()
114 return defaultSize(); in calculateIntrinsicSize()
DRenderListBox.cpp71 const int defaultSize = 4; variable
98 return defaultSize; in size()
DRenderVideo.h42 static IntSize defaultSize();
/external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/
DCameraConfigurationManager.java157 Camera.Size defaultSize = parameters.getPreviewSize(); in findBestPreviewSizeValue() local
158 bestSize = new Point(defaultSize.width, defaultSize.height); in findBestPreviewSizeValue()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DNumberInputType.cpp151 bool NumberInputType::sizeShouldIncludeDecoration(int defaultSize, int& preferredSize) const in sizeShouldIncludeDecoration() argument
153 preferredSize = defaultSize; in sizeShouldIncludeDecoration()
DNumberInputType.h54 virtual bool sizeShouldIncludeDecoration(int defaultSize, int& preferredSize) const OVERRIDE;
DInputTypeView.h81 virtual bool sizeShouldIncludeDecoration(int defaultSize, int& preferredSize) const;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.cpp106 const int defaultSize = 20; variable
111 , m_size(defaultSize) in HTMLInputElement()
679 m_size = valueAsInteger > 0 ? valueAsInteger : defaultSize; in parseAttribute()
900 return m_inputTypeView->sizeShouldIncludeDecoration(defaultSize, preferredSize); in sizeShouldIncludeDecoration()