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

<<21222324252627282930>>

  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 269 public void initializeInvalidateRegion(int left, int top, int right, int bottom) {
271 region.set(left, top, right, bottom);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 76 int h = bounds.bottom - bounds.top;
191 mState.mDrawable.setBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
NinePatchDrawable.java 174 dest.top = Bitmap.scaleFromDensity(src.top, sdensity, tdensity);
RotateDrawable.java 79 int h = bounds.bottom - bounds.top;
175 mState.mDrawable.setBounds(bounds.left, bounds.top,
  /frameworks/base/include/utils/
Vector.h 92 //! stack-usage of the vector. returns the top of the stack (last element)
93 const TYPE& top() const;
103 //! grants right acces to the top of the stack (last element)
131 //! pop the top of the stack (removes the last element). No-op if the stack's empty
135 //! pushes an item on the top of the stack
243 const TYPE& Vector<TYPE>::top() const { function in class:android::Vector
  /frameworks/base/media/libeffects/testlibs/
AudioEqualizer.cpp 87 const int32_t top = Effects_log2(mSampleRate * 500); local
88 const int32_t jump = (top - bottom) / (mNumPeaking + 2);
  /frameworks/base/opengl/include/GLES/
glext.h 537 GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
555 GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
577 typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
595 typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 333 public void glFrustumf(float left, float right, float bottom, float top,
336 mgl.glFrustumf(left, right, bottom, top, near, far);
340 public void glFrustumx(int left, int right, int bottom, int top, int near,
343 mgl.glFrustumx(left, right, bottom, top, near, far);
607 public void glOrthof(float left, float right, float bottom, float top,
610 mgl.glOrthof(left, right, bottom, top, near, far);
614 public void glOrthox(int left, int right, int bottom, int top, int near,
617 mgl.glOrthox(left, right, bottom, top, near, far);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 269 Node top = pos; local
281 if (top.equals(pos))
289 if ((null == pos) || (top.equals(pos))) {
314 * @param top Node in the tree where to end traversal
318 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException {
354 if ((null != top) && top.equals(pos))
362 if ((null == pos) || ((null != top) && top.equals(pos))) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 102 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
175 super.onLayout(changed, left, top, right, bottom);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 118 NJ_UINT32 top; member in struct:__anon11175
214 NJ_UINT32 top; member in struct:__anon11182
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 44 * {@link IXmlPullParser} implementation on top of {@link UiElementNode}.
66 public UiElementPullParser(UiElementNode top, boolean explodeRendering, int densityValue,
69 mRoot = top;
  /system/core/libpixelflinger/tinyutils/
Vector.h 86 //! stack-usage of the vector. returns the top of the stack (last element)
87 const TYPE& top() const;
97 //! grants right acces to the top of the stack (last element)
119 //! pop the top of the stack (removes the last element). No-op if the stack's empty
123 //! pushes an item on the top of the stack
232 const TYPE& Vector<TYPE>::top() const { function in class:android::Vector
  /cts/tests/tests/widget/src/android/widget/cts/
ListViewTest.java 199 assertTrue(r.bottom - r.top > 0);
208 assertEquals(20, r.bottom - r.top);
217 assertEquals(10, r.bottom - r.top);
549 assertTrue(r.bottom - r.top > 0);
560 assertEquals(r.bottom - r.top, mListView.getDividerHeight());
569 assertEquals(10, r.bottom - r.top);
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 214 int top; member in struct:CallStack
    [all...]
  /external/icu4c/common/
uresdata.c 963 int32_t bundleLength, indexLength, keysBottom, keysTop, resBottom, top; local
    [all...]
  /external/libpng/contrib/visupng/
VisualPng.c 467 hChild = rChild.bottom - rChild.top;
472 hParent = rParent.bottom - rParent.top;
481 rWorkArea.left = rWorkArea.top = 0;
495 yNew = rParent.top + ((hParent - hChild) /2);
496 if (yNew < rWorkArea.top) {
497 yNew = rWorkArea.top;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 448 if (faceRect.top < 0) {
449 faceRect.inset(-faceRect.top, -faceRect.top);
565 protected void onLayout(boolean changed, int left, int top,
567 super.onLayout(changed, left, top, right, bottom);
743 int panDeltaY1 = Math.max(0, mTop - r.top);
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 567 if (faceRect.top < 0) {
568 faceRect.inset(-faceRect.top, -faceRect.top);
680 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
681 super.onLayout(changed, left, top, right, bottom);
    [all...]
  /external/icu4c/i18n/
ucol_tok.cpp 114 /* know for the [top] range will explicitly set the upper bound for */
117 /* In that respect, we use [top] for tailoring of locales that use CJK */
152 // Set values for the top - TODO: once we have values for all the indirects, we are going
262 U_STRING_DECL(option_04, "variable top", 12);
263 U_STRING_DECL(option_05, "top", 3);
285 [top] guaranteed to be above all implicit CEs, for now and in the future (in 1.8)
366 /*08*/ {option_04, 12, NULL, 0, UCOL_ATTRIBUTE_COUNT}, /*"variable top" */
369 /*11*/ {option_05, 3, NULL, 0, UCOL_ATTRIBUTE_COUNT}, /*"top" */
429 U_STRING_INIT(option_04, "variable top", 12);
430 U_STRING_INIT(option_05, "top", 3)
768 UBool top = FALSE; local
1420 UBool top = FALSE; local
    [all...]
  /external/webkit/WebCore/css/
CSSComputedStyleDeclaration.cpp 301 RefPtr<CSSPrimitiveValue> top; local
302 if (image.m_slices.top().isPercent())
303 top = CSSPrimitiveValue::create(image.m_slices.top().value(), CSSPrimitiveValue::CSS_PERCENTAGE);
305 top = CSSPrimitiveValue::create(image.m_slices.top().value(), CSSPrimitiveValue::CSS_NUMBER);
326 rect->setTop(top);
362 l = style->top();
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/skia/src/core/
SkDraw.cpp 988 // need the unclipped top/left for the translate
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 52 /* top neighbor */
217 uint8 *pred, *top, *left; local
230 top = curL - pitch;
234 word1 = *((uint32*)(top)); /* read 4 bytes from top */
235 word2 = *((uint32*)(top + 4)); /* read 4 bytes from top */
236 word3 = *((uint32*)(top + 8)); /* read 4 bytes from top */
237 word4 = *((uint32*)(top + 12)); /* read 4 bytes from top *
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 952 loctset->loct.top = from;
1095 loctset->loct.top = from;
1112 p = ptr + (loctset->loct.top * NJ_INDEX_SIZE);
    [all...]

Completed in 2346 milliseconds

<<21222324252627282930>>