Searched defs:top (Results 201 - 225 of 743) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRootInlineBox.h76 void setLineTopBottomPositions(LayoutUnit top, LayoutUnit bottom, LayoutUnit topWithLeading, LayoutUnit bottomWithLeading, LayoutUnit selectionBottom = LayoutUnit::min()) argument
78 m_lineTop = top;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.h67 , top(0)
75 return !left && !right && !top && !bottom;
80 int top; member in struct:blink::GlyphOverflow
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatQuad.cpp85 float top = min4(m_p1.y(), m_p2.y(), m_p3.y(), m_p4.y()); local
90 return FloatRect(left, top, right - left, bottom - top);
122 // QQQ XXX If the lower left corner of X is left of the vector that goes from the top corner of Q to
H A DFloatRect.cpp89 float top = std::max(y(), other.y()); local
94 if (left >= right || top >= bottom) {
96 top = 0;
101 setLocationAndSizeFromEdges(left, top, right, bottom);
172 float top = std::min(p0.y(), p1.y()); local
176 setLocationAndSizeFromEdges(left, top, right, bottom);
211 float top = min3(p0.y(), p1.y(), p2.y()); local
215 setLocationAndSizeFromEdges(left, top, right, bottom);
221 float top = min4(p0.y(), p1.y(), p2.y(), p3.y()); local
225 setLocationAndSizeFromEdges(left, top, righ
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dmul.c581 int top, al, bl; local
587 al = a->top;
588 bl = b->top;
594 top = al + bl;
612 rr->top = 16;
653 rr->top = top;
658 if (bn_wexpand(rr, top) == NULL) {
661 rr->top = top;
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.h161 FT_Fixed* top; member in struct:CFF_Decoder_
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshglob.c158 FT_Bool top; local
161 /* read blue zone entry, and select target top/bottom zone */
162 top = 0;
179 top = 1;
216 if ( top )
258 /* (one for the top zones, the other for the bottom zones) */
271 /* sanitize top table */
317 /* expand top and bottom tables with blue fuzz */
319 FT_Int dim, top, bot, delta; local
333 /* expand the top an
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.c55 Therefore, the top of the name strings block is the offset of the first item,
495 uint32_t top=stringTop+length; local
498 if(top>STRING_STORE_SIZE) {
503 stringTop=top;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dyuvframegenerator.cc148 void YuvFrameGenerator::GetBarcodeBounds(int* top, int* left, argument
151 *top = barcode_start_y_;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvpx_scale_test.cc97 uint8_t *top = left - (stride * padding); local
104 vpx_memcpy(top, left, extend_width);
105 top += stride;
/external/chromium_org/third_party/libwebp/enc/
H A Dwebpenc.c59 uint8_t* const top = enc->preds_ - enc->preds_w_; local
62 top[i] = B_DC_PRED;
126 // top samples: 1263
150 const size_t samples_size = 2 * top_stride * sizeof(uint8_t) // top-luma/u/v
160 + samples_size // top/left samples
170 " top samples: %ld\n"
210 // top samples (all 16-aligned)
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmatrix.c55 * \param top top clipping plane coordinate.
62 * the top matrix of the current matrix stack and sets
67 GLdouble bottom, GLdouble top,
77 top == bottom)
85 (GLfloat) bottom, (GLfloat) top,
97 * \param top top clipping plane coordinate.
104 * the top matrix of the current matrix stack and sets
109 GLdouble bottom, GLdouble top,
66 _mesa_Frustum( GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval ) argument
108 _mesa_Ortho( GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearval, GLdouble farval ) argument
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc177 int32_t top = length; local
178 while (top != bottom) {
179 location = (top + bottom) / 2;
183 top = location;
207 int32_t top = length; local
208 while (top != bottom) {
209 location = (top + bottom) / 2;
213 top = location;
232 int32_t top = length; local
233 while (top !
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table_format4.cc313 int32_t top = pair_list->size(); local
314 while (top != bottom) {
315 location = (top + bottom) / 2;
319 top = location;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineCubicIntersection.cpp151 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { argument
152 addVerticalEndPoints(top, bottom, axisIntercept);
159 double lineT = (pt.y - top) / (bottom - top);
198 void addVerticalEndPoints(double top, double bottom, double x) argument
204 if (cubic[cIndex].y == top) {
282 int verticalIntersect(const Cubic& cubic, double top, double bottom, double x, argument
285 return c.verticalIntersect(x, top, bottom, flipped);
H A DLineIntersection.cpp257 int verticalIntersect(const _Line& line, double top, double bottom, argument
266 if (yIntercept > bottom || yIntercept < top) {
269 intersections.fT[1][0] = (yIntercept - top) / (bottom - top);
279 double overlapT = SkTMax(top, lineT);
288 intersections.fT[1][0] = (overlapT - top) / (bottom - top);
291 intersections.fT[1][1] = (overlapB - top) / (bottom - top);
296 double b0 = flipped ? bottom : top;
[all...]
H A DLineQuadraticIntersection.cpp185 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { argument
186 addVerticalEndPoints(top, bottom, axisIntercept);
193 double lineT = (pt.y - top) / (bottom - top);
233 void addVerticalEndPoints(double top, double bottom, double x) argument
239 if (quad[qIndex].y == top) {
355 int verticalIntersect(const Quadratic& quad, double top, double bottom, double x, argument
358 return q.verticalIntersect(x, top, bottom, flipped);
H A DLineQuadraticIntersection_Test.cpp36 double top = line[0].y; local
38 flipped = top > bottom;
40 SkTSwap<double>(top, bottom);
42 result = verticalIntersect(quad, top, bottom, line[0].x, flipped, intersections);
H A DQuadraticUtilities.cpp49 _Point top(const Quadratic& quad, double startT, double endT) { function
/external/chromium_org/third_party/skia/gm/
H A Dpathfill.cpp179 const SkRect* clip, SkScalar top, const SkScalar bottom) {
183 r.fTop = top;
178 show(SkCanvas* canvas, const SkPath& path, const SkPaint& paint, const SkRect* clip, SkScalar top, const SkScalar bottom) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkRect.h60 int top() const { return fTop; } function in struct:SkIRect
66 /** return the top edge of the rect */
76 * (i.e. top <= bottom) so the result may be negative.
91 * method is defined to return (bottom + top) >> 1
94 * (bottom + top) / 2 when the sum is negative.
125 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
127 fTop = top;
132 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
133 this->set(left, top, right, bottom);
175 and adding dy to its top an
233 contains(int32_t left, int32_t top, int32_t right, int32_t bottom) const argument
253 containsNoEmptyCheck(int32_t left, int32_t top, int32_t right, int32_t bottom) const argument
[all...]
H A DSkRegion.h118 * If left < right and top < bottom, set this region to that rectangle and
121 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom);
195 bool quickContains(int32_t left, int32_t top, int32_t right, argument
199 return left < right && top < bottom &&
201 /* fBounds.contains(left, top, right, bottom); */
202 fBounds.fLeft <= left && fBounds.fTop <= top &&
266 bool op(int left, int top, int right, int bottom, Op op) { argument
268 rect.set(left, top, right, bottom);
H A DSkTDArray.h287 const T& top() const { return (*this)[fCount - 1]; } function in class:SkTDArray
288 T& top() { return (*this)[fCount - 1]; } function in class:SkTDArray
/external/chromium_org/third_party/skia/src/animator/
H A DSkTDArray_Experimental.h127 const T& top() const { return (*this)[fCount - 1]; } function in class:SkTDS32Array
128 T& top() { return (*this)[fCount - 1]; } function in class:SkTDS32Array
/external/chromium_org/third_party/skia/src/core/
H A DSkEdge.cpp61 int top = SkFDot6Round(y0); local
65 if (top == bot) {
69 if (clip && (top >= clip->fBottom || bot <= clip->fTop)) {
74 const int dy = SkEdge_Compute_DY(top, y0);
78 fFirstY = top;
102 int top = SkFDot6Round(y0); local
105 // SkASSERT(top >= fFirstY);
108 if (top == bot)
115 const int dy = SkEdge_Compute_DY(top, y0);
119 fFirstY = top;
127 int top = fFirstY; local
208 int top = SkFDot6Round(y0); local
372 int top = SkFDot6Round(y0); local
[all...]

Completed in 4932 milliseconds

1234567891011>>