HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 776 - 800 of 959) sorted by null

<<313233343536373839

  /frameworks/base/core/java/android/widget/
AdapterView.java 63 * The offset in pixels from the top of the AdapterView to the top
515 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avcint_common.h 472 int top; /* macroblock address of the current pixel, see below */ member in struct:tagNeighborAvailability
493 AVCPictureType picType; /* frame, top-field or bot-field */
518 int IsReference; /* 0=not used for ref; 1=top used; 2=bottom used; 3=both fields (or frame) used */
519 int IsLongTerm; /* 0=not used for ref; 1=top used; 2=bottom used; 3=both fields (or frame) used */
545 frame top bot top frame bot frame
548 bot 2 and top 4 do not exist, the memory is not used.
633 uint8 *pintra_pred_top; /* pointer to the top intra prediction value */
671 AVCPictureType currPicType; /* frame, top-field or bot-field */
801 Availability of the neighboring top-right block relative to the current block. *
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
pred_intra.cpp 147 /* check availability of top */
277 /* check availability of top */
288 /* check availability of top and left */
592 availability.top = TRUE;
595 availability.top = video->intraAvailB ;
790 if (availability->top)
800 else if (availability->top)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java 480 l.gravity = Gravity.TOP | Gravity.LEFT;
483 if (mAnchor.top > blockHeight) {
485 // edge with top of anchor area, and adjusting to inset arrow.
487 l.y = mAnchor.top - blockHeight + mShadowVert;
491 // Otherwise show upwards callout, aligning block top with bottom of
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 264 mSelectionHighlight.setBounds(0, bgPadding.top, wordWidth, height);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboard.java 110 /** The top and bottom margin of a key. */
244 return mSkbCoreHeight + padding.top + padding.bottom;
  /system/core/include/private/pixelflinger/
ggl_context.h 312 uint32_t top; member in struct:android::scissor_t
  /external/webkit/WebCore/css/
CSSStyleSelector.cpp 4070 Length top; local
5114 Length top = convertToLength(region->top(), style(), m_rootElementStyle); local
    [all...]
  /build/
envsetup.sh 4 - croot: Changes directory to the top of the tree.
5 - m: Makes from the top of the tree.
29 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
41 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
53 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
83 echo "Couldn't locate the top of the tree. Try setting TOP.
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ScrollingMovementMethodTest.java 241 int top = mTextView.getScrollY();
312 assertEquals(top, mTextView.getScrollX());
    [all...]
  /device/samsung/crespo/
device.mk 159 # See comment at the top of this file. This is where the other
  /external/chromium/third_party/zlib/
trees.c 104 * 3 .. 258, the last 256 values correspond to the top 8 bits of
434 #define pqremove(s, tree, top) \
436 top = s->heap[SMALLEST]; \
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 688 Initialize the DIB. Negative height means to use top-down BMP ordering
794 rect.top = 0L;
    [all...]
  /external/libvpx/vp8/common/arm/armv6/
sixtappredict8x4_v6.asm 45 mov r2, #0x90000 ; height=9 is top part of counter
  /external/qemu/distrib/zlib-1.2.3/
trees.c 104 * 3 .. 258, the last 256 values correspond to the top 8 bits of
434 #define pqremove(s, tree, top) \
436 top = s->heap[SMALLEST]; \
    [all...]
  /external/skia/src/gl/
SkGLDevice.cpp 420 // if h < 0, then the texture is bottom-to-top, but since our projection
440 int left, int top, const SkPaint& paint) {
454 gl_drawSprite(left, top, bitmap.width(), bitmap.height(), max, paint, iter);
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 122 // The top level "document" node is given to this fn
469 std::string ruleName = m_RuleListStack.top();
529 std::string ruleName = m_RuleListStack.top();
623 //std::string parentRuleName = m_RuleListStack.top();
    [all...]
  /external/v8/test/mjsunit/
regexp-static.js 164 // we do a match on a sliced string (the top one not the underlying).
  /external/webkit/WebCore/page/
DOMWindow.cpp 279 // 3) Constrain window rect to within the top and left boundaries of the screen rect
1036 DOMWindow* DOMWindow::top() const function in class:WebCore::DOMWindow
1045 return m_frame->tree()->top(true)->domWindow();
    [all...]
  /external/webkit/WebCore/rendering/
RenderObject.h 474 // the offset of baseline from the top of the object.
    [all...]
RenderThemeChromiumSkia.cpp 646 int top = std::max(rect.y(), verticalCenter - 2); local
654 skrect.set(rect.x(), top, rect.x() + rect.width(), bottom);
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 205 bool top = frame->tree()->parent() == NULL;
206 if (top) {
216 if (top && hasChild)
267 if (top) {
2953 int top = bounds.y() + ((RenderBox*)renderer)->paddingTop() local
    [all...]
  /external/webkit/WebKitExamplePlugins/NetscapeInputMethodPlugin/
main.m 274 rect.top = 0;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java     [all...]
  /frameworks/base/libs/surfaceflinger_client/
Surface.cpp 78 uint8_t const * s = src_bits + (r.left + src->stride * r.top) * bpp;
79 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
    [all...]

Completed in 847 milliseconds

<<313233343536373839