Searched defs:margin (Results 51 - 75 of 87) sorted by relevance

1234

/external/chromium_org/third_party/speex/libspeex/
H A Dnb_celp.c767 int margin; local
768 margin = SUBMODE(lbr_pitch);
769 if (margin)
771 if (ol_pitch < st->min_pitch+margin-1)
772 ol_pitch=st->min_pitch+margin-1;
773 if (ol_pitch > st->max_pitch-margin)
774 ol_pitch=st->max_pitch-margin;
775 pit_min = ol_pitch-margin+1;
776 pit_max = ol_pitch+margin;
1327 int margin; local
[all...]
/external/harfbuzz_ng/util/
H A Doptions.hh155 margin.t = margin.r = margin.b = margin.l = DEFAULT_MARGIN;
169 } margin; member in struct:view_options_t
/external/speex/libspeex/
H A Dnb_celp.c767 int margin; local
768 margin = SUBMODE(lbr_pitch);
769 if (margin)
771 if (ol_pitch < st->min_pitch+margin-1)
772 ol_pitch=st->min_pitch+margin-1;
773 if (ol_pitch > st->max_pitch-margin)
774 ol_pitch=st->max_pitch-margin;
775 pit_min = ol_pitch-margin+1;
776 pit_max = ol_pitch+margin;
1327 int margin; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js102 return WebInspector.CSSMetadata._distancePropertiesKeySet[propertyName] || propertyName.startsWith("margin") || propertyName.startsWith("padding") || propertyName.indexOf("width") !== -1 || propertyName.indexOf("height") !== -1;
213 "margin-top-collapse": { values: [
288 "margin-bottom-collapse": { values: [
306 "margin-bottom": { values: [
321 "margin-before-collapse": { values: [
417 "margin-after-collapse": { values: [
447 "margin-left": { values: [
450 "margin-top": { values: [
505 "margin": { values: [
511 "margin
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp252 static bool buildNodeQuads(RenderObject* renderer, FloatQuad* content, FloatQuad* padding, FloatQuad* border, FloatQuad* margin) argument
296 *margin = renderer->localToAbsoluteQuad(FloatRect(marginBox));
301 contentsQuadToScreen(containingView, *margin);
323 FloatQuad content, padding, border, margin; local
324 if (!buildNodeQuads(renderer, &content, &padding, &border, &margin))
329 highlight->appendQuad(margin, highlightConfig.margin);
808 FloatQuad content, padding, border, margin;
809 if (!buildNodeQuads(node->renderer(), &content, &padding, &border, &margin))
819 .setMargin(buildArrayForQuad(margin))
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp144 // A margin basically has three types: fixed, percentage, and auto (variable).
149 LayoutUnit margin = 0; local
151 margin += marginLeft.value();
153 margin += marginRight.value();
154 return margin;
193 LayoutUnit margin = marginWidthForChild(child); local
194 LayoutUnit width = child->minPreferredLogicalWidth() + margin;
197 width = child->maxPreferredLogicalWidth() + margin;
205 LayoutUnit margin = marginWidthForChild(child); local
206 minLogicalWidth += child->minPreferredLogicalWidth() + margin;
[all...]
H A DRenderBox.h287 void setMarginTop(LayoutUnit margin) { m_marginBox.setTop(margin); } argument
288 void setMarginBottom(LayoutUnit margin) { m_marginBox.setBottom(margin); } argument
289 void setMarginLeft(LayoutUnit margin) { m_marginBox.setLeft(margin); } argument
290 void setMarginRight(LayoutUnit margin) { m_marginBox.setRight(margin); } argument
322 // formula for computing a collapsed margin is |maxPosMargin| - |maxNegmargin|.
324 // the margin o
[all...]
H A DRenderFlexibleBox.cpp105 LayoutUnit margin = marginIntrinsicLogicalWidthForChild(child); local
109 minPreferredLogicalWidth += margin;
110 maxPreferredLogicalWidth += margin;
770 // For column flows, only make this adjustment if topOrLeft corresponds to the "before" margin,
811 LayoutUnit RenderFlexibleBox::computeChildMarginValue(Length margin) argument
814 // Fortunately, percent margins are always computed with respect to the block's width, even for margin-top and margin-bottom.
816 return minimumValueForLength(margin, availableSize);
829 // Before running the flex algorithm, 'auto' has a margin of 0.
1098 // To avoid double applying margin change
[all...]
H A DRenderInline.cpp587 // We want to get the margin box in the inline direction, and then use our font ascent/descent in the block
720 static LayoutUnit computeMargin(const RenderInline* renderer, const Length& margin) argument
722 if (margin.isAuto())
724 if (margin.isFixed())
725 return margin.value();
726 if (margin.isPercent())
727 return minimumValueForLength(margin, std::max<LayoutUnit>(0, renderer->containingBlock()->availableLogicalWidth()));
921 // We want to get the margin box in the inline direction, and then use our font ascent/descent in the block
945 // We want to get the margin box in the inline direction, and then use our font ascent/descent in the block
H A DRenderBlockFlow.cpp76 // They may or may not collapse with the top margin of the block (|m_canCollapseTopWithChildren| tells us that), but they will
142 LayoutUnit margin() const { return m_positiveMargin - m_negativeMargin; } function in class:blink::MarginInfo
249 // and thereby eating every top margin. It should be trivial to clean up and get rid of this
412 // collapsing together, then you'd take the maximal positive margin from both A and B
413 // and subtract it from the maximal negative margin from both A and B to get the
414 // true collapsed margin. This algorithm is recursive, so when we finish layout()
417 // Start out by setting our margin values to our current margins. Table cells have
521 // margin pull it back over the content edge or any positive margin push it out.
522 // If the child is being centred then the margin calculate
[all...]
H A DRenderBlock.cpp1655 // A margin has three types: fixed, percentage, and auto (variable).
1660 LayoutUnit margin = 0; local
1662 margin += marginLeft.value();
1664 margin += marginRight.value();
1665 return margin;
3269 // A margin basically has three types: fixed, percentage, and auto (variable).
3274 LayoutUnit margin = 0; local
3281 margin = marginStart + marginEnd;
3294 LayoutUnit w = childMinPreferredLogicalWidth + margin;
3301 w = childMaxPreferredLogicalWidth + margin;
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp484 SkIPoint* margin, bool force_quality) {
525 if (margin) {
526 margin->set(padx, pady);
742 SkIPoint *margin, SkMask::CreateMode createMode) {
746 if (margin) {
747 margin->set( pad, pad );
843 SkIPoint *margin, SkMask::CreateMode createMode) {
855 SkBlurStyle style, SkIPoint* margin) {
884 if (margin) {
885 margin
482 BoxBlur(SkMask* dst, const SkMask& src, SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, SkIPoint* margin, bool force_quality) argument
740 BlurRect(SkScalar sigma, SkMask *dst, const SkRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) argument
841 BlurRRect(SkScalar sigma, SkMask *dst, const SkRRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) argument
854 BlurGroundTruth(SkScalar sigma, SkMask* dst, const SkMask& src, SkBlurStyle style, SkIPoint* margin) argument
[all...]
H A DSkBlurMaskFilter.cpp43 SkIPoint* margin) const SK_OVERRIDE;
82 SkIPoint* margin, SkMask::CreateMode createMode) const;
84 SkIPoint* margin, SkMask::CreateMode createMode) const;
161 SkIPoint* margin) const{
163 return SkBlurMask::BoxBlur(dst, src, sigma, fBlurStyle, this->getQuality(), margin);
168 SkIPoint* margin, SkMask::CreateMode createMode) const{
172 margin, createMode);
177 SkIPoint* margin, SkMask::CreateMode createMode) const{
181 margin, createMode);
308 SkIPoint margin; local
166 filterRectMask(SkMask* dst, const SkRect& r, const SkMatrix& matrix, SkIPoint* margin, SkMask::CreateMode createMode) const argument
175 filterRRectMask(SkMask* dst, const SkRRect& r, const SkMatrix& matrix, SkIPoint* margin, SkMask::CreateMode createMode) const argument
420 SkIPoint margin; local
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc101 int margin = (height() - text_height) / 2; local
102 label_->SetBounds(0, margin, width(), text_height);
188 // Set the margin to 0 for the layout. BoxLayout assumes the same margin
189 // for top and bottom, but the bottom margin here should be smaller
191 // to provide this margin.
/external/opencv/cv/src/
H A Dcvsurf.cpp193 int margin = 5*scaleCache[k+1]/scale; local
194 for( i = margin; i < hessian_rows-margin; i++ )
198 for( j = margin; j < hessian_cols-margin; j++ )
/external/skia/src/effects/
H A DSkBlurMask.cpp484 SkIPoint* margin, bool force_quality) {
525 if (margin) {
526 margin->set(padx, pady);
742 SkIPoint *margin, SkMask::CreateMode createMode) {
746 if (margin) {
747 margin->set( pad, pad );
843 SkIPoint *margin, SkMask::CreateMode createMode) {
855 SkBlurStyle style, SkIPoint* margin) {
884 if (margin) {
885 margin
482 BoxBlur(SkMask* dst, const SkMask& src, SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, SkIPoint* margin, bool force_quality) argument
740 BlurRect(SkScalar sigma, SkMask *dst, const SkRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) argument
841 BlurRRect(SkScalar sigma, SkMask *dst, const SkRRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) argument
854 BlurGroundTruth(SkScalar sigma, SkMask* dst, const SkMask& src, SkBlurStyle style, SkIPoint* margin) argument
[all...]
H A DSkBlurMaskFilter.cpp42 SkIPoint* margin) const SK_OVERRIDE;
81 SkIPoint* margin, SkMask::CreateMode createMode) const;
83 SkIPoint* margin, SkMask::CreateMode createMode) const;
158 SkIPoint* margin) const{
160 return SkBlurMask::BoxBlur(dst, src, sigma, fBlurStyle, this->getQuality(), margin);
165 SkIPoint* margin, SkMask::CreateMode createMode) const{
169 margin, createMode);
174 SkIPoint* margin, SkMask::CreateMode createMode) const{
178 margin, createMode);
305 SkIPoint margin; local
163 filterRectMask(SkMask* dst, const SkRect& r, const SkMatrix& matrix, SkIPoint* margin, SkMask::CreateMode createMode) const argument
172 filterRRectMask(SkMask* dst, const SkRRect& r, const SkMatrix& matrix, SkIPoint* margin, SkMask::CreateMode createMode) const argument
417 SkIPoint margin; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp606 if (surround->margin != other.surround->margin)
1584 void RenderStyle::setMarginStart(const Length& margin) argument
1588 setMarginLeft(margin);
1590 setMarginRight(margin);
1593 setMarginTop(margin);
1595 setMarginBottom(margin);
1599 void RenderStyle::setMarginEnd(const Length& margin) argument
1603 setMarginRight(margin);
1605 setMarginLeft(margin);
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrContext.cpp1162 // Right now, nested rects where the margin is not the same width
1167 SkScalar margin = SkScalarAbs(outer[0] - inner[0]); local
1170 if (!SkScalarNearlyEqual(margin, temp)) {
/external/skia/src/gpu/
H A DGrContext.cpp1146 // Right now, nested rects where the margin is not the same width
1151 SkScalar margin = SkScalarAbs(outer[0] - inner[0]); local
1154 if (!SkScalarNearlyEqual(margin, temp)) {
/external/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp2302 SkIPoint margin = SkIPoint::Make(0, 0); local
2311 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
2327 tmp.inset(-SkMin32(margin.fX, MAX_MARGIN),
2328 -SkMin32(margin.fY, MAX_MARGIN));
/external/skia/src/core/
H A DSkDraw.cpp2291 SkIPoint margin = SkIPoint::Make(0, 0); local
2300 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
2316 tmp.inset(-SkMin32(margin.fX, MAX_MARGIN),
2317 -SkMin32(margin.fY, MAX_MARGIN));
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js2215 if (property.test(/(border(.+)Width|margin|padding)/)) return '0px';
2240 margin: '@px @px @px @px', padding: '@px @px @px @px', border: '@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)',
2245 Element.ShortStyles = {margin: {}, padding: {}, border: {}, borderWidth: {}, borderStyle: {}, borderColor: {}};
2250 ['margin', 'padding'].each(function(style){
2384 return {left: obj.x - styleNumber(this, 'margin-left'), top: obj.y - styleNumber(this, 'margin-top')};
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1430 ** Return the margin length of cell p. The margin length is the sum
1434 float margin = 0.0; local
1437 margin += (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii]));
1439 return margin;
2025 float margin = 0.0; local
2051 margin += cellMargin(pRtree, &left);
2052 margin += cellMargin(pRtree, &right);
2065 if( ii==0 || margin<fBestMargin ){
2067 fBestMargin = margin;
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...

Completed in 3499 milliseconds

1234