HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 276 - 300 of 984) sorted by null

<<11121314151617181920>>

  /external/openssl/crypto/bn/
bn_print.c 74 buf=(char *)OPENSSL_malloc(a->top*BN_BYTES*2+2);
83 for (i=a->top-1; i >=0; i--)
227 ret->top=h;
341 for (i=a->top-1; i >=0; i--)
  /external/v8/test/mjsunit/regress/
regress-2249423.js 31 function top() { function
40 top();
  /external/webkit/WebCore/css/
view-source.css 60 top: 0;
156 top: 2px;
  /external/webkit/WebCore/page/
FrameTree.h 68 Frame* top(bool checkForDisconnectedFrame = false) const;
  /external/webkit/WebCore/platform/
LengthBox.h 59 Length top() const { return m_top; } function in struct:WebCore::LengthBox
  /external/webkit/WebCore/rendering/style/
SVGRenderStyle.cpp 148 static void getSVGShadowExtent(ShadowData* shadow, int& top, int& right, int& bottom, int& left)
150 top = 0;
157 top = min(top, shadow->y - blurAndSpread);
  /frameworks/base/core/java/android/text/method/
ScrollingMovementMethod.java 42 int top = layout.getLineForVertical(scrolly); local
47 for (int i = top; i <= bottom; i++) {
72 int top = layout.getLineForVertical(scrolly); local
77 for (int i = top; i <= bottom; i++) {
101 // If the top line is partially visible, bring it all the way
Touch.java 40 int top = layout.getLineForVertical(y); local
48 for (int i = top; i <= bottom; i++) {
80 int top = layout.getLineForVertical(y); local
85 for (int i = top; i <= bottom; i++) {
  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 114 if (canvas.quickReject(r.left, r.top, r.right, r.bottom,
168 thumbRect.set(bounds.left, bounds.top + offset,
169 bounds.right, bounds.top + offset + length);
171 thumbRect.set(bounds.left + offset, bounds.top,
  /frameworks/base/core/tests/coretests/src/android/util/
InternalSelectionView.java 187 final int top = mPaddingTop + row * rowHeight; local
189 top,
191 top + rowHeight);
249 int y = previouslyFocusedRect.top
  /frameworks/base/graphics/java/android/graphics/drawable/
PictureDrawable.java 72 canvas.translate(bounds.left, bounds.top);
Drawable.java 87 * drawables on top of each other.
121 public void setBounds(int left, int top, int right, int bottom) {
128 if (oldBounds.left != left || oldBounds.top != top ||
130 mBounds.set(left, top, right, bottom);
140 setBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AgendaListView.java 169 if (r.top >= 0) { // if visible
220 // if r.top is < 0, getChildAt(0) and getFirstVisiblePosition() is
223 setSelectionFromTop(position + offset, r.top > 0 ? -r.top : r.top);
  /packages/apps/Camera/src/com/android/camera/ui/
GLOptionHeader.java 73 mTitle.draw(root, p.left, p.top);
LinearLayout.java 44 int offsetY = p.top;
NinePatchChunk.java 54 chunk.mPaddings.top = byteBuffer.getInt();
StringTexture.java 43 int height = metrics.bottom - metrics.top + DEFAULT_PADDING * 2;
GLListView.java 165 bounds.left - mScrollX, bounds.top - mScrollY,
231 boolean change, int left, int top, int right, int bottom) {
235 makeMeasureSpec(bottom - top, MeasureSpec.EXACTLY));
238 mScrollable = mScrollHeight > (bottom - top);
270 if (bottom <= mModel.getView(end).mBounds.top) break;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesapp.h 137 Soft_Label_Key_Set* top() const;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 122 short top; member in struct:_XkbShapeDoodad
137 short top; member in struct:_XkbTextDoodad
153 short top; member in struct:_XkbIndicatorDoodad
174 short top; member in struct:_XkbLogoDoodad
190 short top; member in struct:_XkbAnyDoodad
222 short top; member in struct:_XkbRow
234 short top; member in struct:_XkbSection
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 219 Composite top = new Composite(parent, SWT.NONE); local
220 top.setLayout(new GridLayout(1, false));
221 top.setLayoutData(new GridData(GridData.FILL_BOTH));
223 Composite buttons = new Composite(top, SWT.NONE);
269 mLabel = new Label(top, SWT.NONE);
276 ChartComposite chartComposite = new ChartComposite(top,
293 return top;
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.cc 138 starty = rect.top() >> 1;
140 height = ((rect.bottom() - rect.top()) >> 1) + 2;
194 starty = rect.top() >> 1;
196 height = ((rect.bottom() - rect.top()) >> 1) + 2;
207 fb += 320*239; // Move "fb" to top left corner
253 fb += (rect.left()<<1) + rect.top() * my_painter->lineStep();
254 buf += (rect.left()<<1) + rect.top() * my_image->bytesPerLine();
289 fb += (rect.left()<<1) + rect.top() * my_painter->lineStep();
290 buf += (rect.left()<<1) + rect.top() * my_image->bytesPerLine();
307 fb += ((my_painter->width() - (rect.top() + rect.height())) *
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 48 * This is based on top of {@link Graphics2D} but can operate independently if none are available
256 * Creates a new {@link GcSnapshot} on top of another one, with a layer data to be restored
329 mLayerBounds.left, mLayerBounds.top,
355 * Restores the top {@link GcSnapshot}, and returns the next one.
519 public boolean clipRect(float left, float top, float right, float bottom, int regionOp) {
520 return clip(new Rectangle2D.Float(left, top, right - left, bottom - top), regionOp);
620 // them, starting with the top one (which is the current local layer).
674 mLayerBounds.left, mLayerBounds.top, mLayerBounds.right, mLayerBounds.bottom,
687 mLayerBounds.left, mLayerBounds.top, mLayerBounds.right, mLayerBounds.bottom
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
XmlKeyboardLoader.java 62 * Attribute tag of the top and bottom margin for a key. A key's height
555 float left, right, top, bottom; local
559 top = mKeyYPos;
560 bottom = top + attrKeys.keyHeight;
563 if (bottom - top < 2 * mKeyYMargin) return null;
565 softKey.setKeyDimensions(left, top, right, bottom);
653 float left, right, top, bottom; local
656 top = mKeyYPos;
657 bottom = top + attrKey.keyHeight;
660 if (bottom - top < 2 * mKeyYMargin) return null
    [all...]
  /external/skia/src/core/
SkPoint.cpp 178 unsigned top = x >> 25; local
179 SkASSERT(top >= 8 && top <= 63);
180 SkASSERT(top - 8 < SK_ARRAY_COUNT(gInvSqrt14GuessTable));
181 unsigned U = gInvSqrt14GuessTable[top - 8];

Completed in 695 milliseconds

<<11121314151617181920>>