Searched defs:top (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-2249423.js31 function top() { function
40 top();
/external/dropbear/libtommath/
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
41 /* top */
42 top = a->dp + a->used - 1;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
56 top = a->dp;
58 *top++ = 0;
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.h59 SkColor top; member in struct:InfoBarArrowModel::InfoBarColors
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc31 int top = GetVerticalOverlap(NULL); local
35 top -= child->arrow_height();
37 child->SetBounds(0, top, width(), child_height);
38 top += child_height;
H A Dinfobar_button_border.h34 SkBitmap* top; member in struct:InfoBarButtonBorder::MBBImageSet
/external/skia/gpu/src/
H A DGrTexture.cpp21 bool GrRenderTarget::readPixels(int left, int top, int width, int height, argument
27 left, top,
56 bool GrTexture::readPixels(int left, int top, int width, int height, argument
62 left, top,
/external/skia/src/svg/
H A DSkSVGCircle.cpp38 SkScalar left, top, right, bottom; local
40 top = cy - r;
46 sprintf(scratch, "%g", top);
47 parser._addAttribute("top", scratch);
H A DSkSVGEllipse.cpp40 SkScalar left, top, right, bottom; local
42 top = cy - ry;
48 sprintf(scratch, "%g", top);
49 parser._addAttribute("top", scratch);
/external/webkit/Source/WebCore/dom/
H A DClientRect.h44 float top() const { return m_rect.y(); } function in class:WebCore::ClientRect
/external/chromium/chrome/browser/prefs/
H A Dpref_service_uitest.cc120 int top = 0; local
121 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".top",
122 &top));
123 EXPECT_EQ(top, bounds.y());
182 int top = 0; local
183 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".top",
184 &top));
185 EXPECT_EQ(top, bounds.y());
/external/iproute2/netem/
H A Dstats.c24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local
47 top += ((double)x[i]-mu)*((double)x[i-1]-mu);
51 rho = top/sigma2;
57 /*printf("correlation rho = %10.6f\n", top/((double)(n-1)*sigma*sigma));*/
/external/skia/src/core/
H A DSkRect.cpp19 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
21 if (left >= right || top >= bottom) {
27 this->set(left, top, right, bottom);
30 if (top < fTop) fTop = top;
113 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
115 if (left < right && top < bottom && !this->isEmpty() && // check for empties
116 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
119 if (fTop < top) fTop = top;
132 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/src/gpu/
H A DSkGrTexturePixelRef.cpp36 int left, top, width, height; local
40 top = subset->fTop;
45 top = 0;
52 return fTexture->readPixels(left, top, width, height,
80 int left, top, width, height; local
84 top = subset->fTop;
89 top = 0;
96 return fRenderTarget->readPixels(left, top, width, height,
/external/webkit/Source/WebCore/css/
H A DRect.h31 CSSPrimitiveValue* top() const { return m_top.get(); } function in class:WebCore::RectBase
36 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; } argument
/external/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.h80 Element* top() const function in class:WebCore::HTMLElementStack
/external/webkit/Source/WebCore/platform/
H A DLengthBox.h67 Length top() const { return m_top; } function in struct:WebCore::LengthBox
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DDrawErrorUnderline.h65 double top = y; local
68 cairo_move_to(cr, x - halfSquare, top + halfSquare); // A
78 cairo_line_to(cr, right + halfSquare, top + halfSquare); // D
80 cairo_line_to(cr, right, top + square); // C
93 cairo_line_to(cr, right, top); // E
98 cairo_line_to(cr, left, top); // H
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariable.java145 * @param top A valid value that specifies where in the variable
148 public void setVarStackPos(int top) argument
150 m_varStackPos = top;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java110 int top = pos; // Remember the root of this subtree
120 if (top == pos)
129 if ((DTM.NULL == pos) || (top == pos))
131 // %REVIEW% This condition isn't tested in traverse(pos,top)
153 * @param top Node in the tree where to end traversal.
154 * If top==DTM.NULL, run through end of document.
158 public void traverse(int pos, int top) throws org.xml.sax.SAXException argument
161 // if(top==DTM.NULL) top=0
173 if ((DTM.NULL != top)
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java141 Node top = pos;
153 if (top.equals(pos))
162 if ((null == pos) || (top.equals(pos)))
188 * @param top Node in the tree where to end traversal
192 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
207 if ((null != top) && top.equals(pos))
216 if ((null == pos) || ((null != top) && top.equals(pos)))
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java173 Node top = pos;
185 if (top.equals(pos))
194 if ((null == pos) || (top.equals(pos)))
219 * @param top Node in the tree where to end traversal
223 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
238 if ((null != top) && top.equals(pos))
247 if ((null == pos) || ((null != top) && top.equals(pos)))
/external/bison/src/
H A Drelation.c57 static relation_node top; variable
67 VERTICES[++top] = i;
68 INDEX[i] = height = top;
85 j = VERTICES[top--];
104 top = 0;
/external/bluetooth/glib/tests/
H A Dgio-ls.c62 GFile *top; local
73 top = g_file_new_for_path (path);
74 if (top)
78 GFileEnumerator *enumerator = g_file_enumerate_children (top, attrs,
114 g_object_unref (top);
/external/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser_view_layout.cc49 int DOMBrowserViewLayout::LayoutToolbar(int top) { argument
50 return top;
53 int DOMBrowserViewLayout::LayoutBookmarkAndInfoBars(int top) { argument
54 return top;

Completed in 493 milliseconds

1234567891011>>