/frameworks/base/media/libstagefright/codecs/avc/dec/include/ |
pvavcdecoder.h | 39 virtual void GetVideoDimensions(int32 *width, int32 *height, int32 *top, int32 *left, int32 *bottom, int32 *right);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
GLOptionItem.java | 113 int height = getHeight() - p.top - p.bottom; 124 p.top + (height - icon.getHeight()) / 2); 132 int yoffset = p.top + (height - title.getHeight()) / 2; 137 yoffset = p.top + (height - checkbox.getHeight()) / 2;
|
MeasureHelper.java | 42 getLength(heightSpec, mPreferredHeight + p.top + p.bottom));
|
PopupWindow.java | 87 0, height - mPaddings.top - mPaddings.bottom), heightMode); 95 child.getMeasuredHeight() + p.top + p.bottom); 100 boolean change, int left, int top, int right, int bottom) { 103 view.layout(p.left, p.top, 120 int aYoffset = Math.max(p.top, mAnchorPosition - aHeight / 2); 145 int aYoffset = Math.max(p.top, mAnchorPosition - aHeight / 2);
|
/system/core/adb/ |
commandline.c | 541 static int top_works(const char *top) 543 if (top != NULL && adb_is_absolute_host_path(top)) { 546 "%s" OS_PATH_SEPARATOR_STR SENTINEL_FILE, top); 571 char *top = getenv("ANDROID_BUILD_TOP"); local 572 if (top != NULL && top[0] != '\0') { 573 if (!top_works(top)) { 574 fprintf(stderr, "adb: bad ANDROID_BUILD_TOP value \"%s\"\n", top); 578 top = getenv("TOP") 661 const char *top = find_top(top_buf); local [all...] |
/system/core/sh/ |
main.c | 223 * Read and execute commands. "Top" is nonzero for the top level command 228 cmdloop(int top) 235 TRACE(("cmdloop(%d) called\n", top)); 241 if (iflag && top) { 249 if (!top || numeof >= 50)
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_NATIVE.S | 37 @ newFp->localRefCookie=top 50 ldr r0, [r10, #offStackSaveArea_localRefCookie] @ r0<- saved->top 54 str r0, [r9, #offThread_jniLocal_topCookie] @ new top <- old top
|
/external/chromium/base/gfx/ |
rect.cc | 55 : origin_(r.left, r.top) { 57 set_height(r.bottom - r.top); 61 origin_.SetPoint(r.left, r.top); 63 set_height(r.bottom - r.top); 107 void Rect::Inset(int left, int top, int right, int bottom) { 108 Offset(left, top); 110 set_height(std::max(height() - top - bottom, 0)); 127 r.top = y();
|
/external/skia/include/core/ |
SkTDStack.h | 70 const T& top() const function in class:SkTDStack 75 T& top() function in class:SkTDStack
|
SkRegion.h | 96 /** If left < right and top < bottom, set this region to that rectangle and 99 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom); 155 bool quickContains(int32_t left, int32_t top, int32_t right, 159 return left < right && top < bottom && 161 /* fBounds.contains(left, top, right, bottom); */ 162 fBounds.fLeft <= left && fBounds.fTop <= top && 218 bool op(int left, int top, int right, int bottom, Op op) { 220 rect.set(left, top, right, bottom);
|
/frameworks/base/core/java/android/text/style/ |
BulletSpan.java | 78 int top, int baseline, int bottom, 92 c.drawCircle(x + dir * BULLET_RADIUS, (top + bottom) / 2.0f,
|
DrawableMarginSpan.java | 43 int top, int baseline, int bottom, 71 need = ht - (v + fm.bottom - fm.top - istartv);
|
DynamicDrawableSpan.java | 87 fm.top = fm.ascent; 97 int top, int y, int bottom, Paint paint) {
|
/frameworks/base/core/jni/android/graphics/ |
Region.cpp | 29 static jboolean Region_setRect(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom) { 30 return dst->setRect(left, top, right, bottom); 48 static jboolean Region_op0(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom, int op) { 51 ir.set(left, top, right, bottom); 83 static jboolean Region_quickContains(JNIEnv* env, jobject region, int left, int top, int right, int bottom) { 84 return GetSkRegion(env, region)->quickContains(left, top, right, bottom); 87 static jboolean Region_quickRejectIIII(JNIEnv* env, jobject region, int left, int top, int right, int bottom) { 89 ir.set(left, top, right, bottom);
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
RoundRectShape.java | 45 * top-left corner (remaining pairs correspond clockwise). 53 * top-left corner (remaining pairs correspond clockwise). 96 mInnerRect.set(r.left + mInset.left, r.top + mInset.top,
|
/frameworks/base/services/surfaceflinger/ |
TextureManager.cpp | 278 0, bounds.top, t.width, bounds.height(), 280 t.data + bounds.top*t.stride*2); 283 0, bounds.top, t.width, bounds.height(), 285 t.data + bounds.top*t.stride*2); 289 0, bounds.top, t.width, bounds.height(), 291 t.data + bounds.top*t.stride*4); 295 0, bounds.top, t.width, bounds.height(), 297 t.data + bounds.top*t.stride);
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
TreeWalker.java | 141 Node top = pos; local 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 207 if ((null != top) && top.equals(pos)) 216 if ((null == pos) || ((null != top) && top.equals(pos)))
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 173 Node top = pos; local 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 238 if ((null != top) && top.equals(pos)) 247 if ((null == pos) || ((null != top) && top.equals(pos)))
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
FloatUtils.java | 151 * @param top 152 * : the y coordinate of the top most point 161 public static final boolean boundsContainsPoint(float left, float right, float top, float bottom, float posX, float posY) { 163 if (posX < left || posX > right || posY < top || posY > bottom)
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 36 int y = node.top; 40 y += p.top - p.scrollY;
|
/development/samples/BrowserPlugin/jni/animation/ |
AnimationPlugin.cpp | 51 inval.top = rnd16(r.top, inset); 108 clipR.top = clip.top; 145 m_oval.top = m_y; 168 visibleRects[0].top = 0;
|
/external/e2fsprogs/ext2ed/ |
win.c | 125 int left,top,right,bottom,i; local 136 top=TITLE_WIN_LINES+SHOW_WIN_LINES+1;bottom=top+show_pad_info.display_lines-1; 145 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,show_pad_info.display_lines-1,show_pad_info.display_cols-1); 147 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,top+show_pad_info.display_lines-1,left+show_pad_info.display_cols-1);
|
/external/openssl/crypto/bn/ |
bn_gf2m.c | 154 /* compensate for the top two bits of a */ 193 /* compensate for the top three bits of a */ 232 if (a->top < b->top) { at = b; bt = a; } 235 if(bn_wexpand(r, at->top) == NULL) 238 for (i = 0; i < bt->top; i++) 242 for (; i < at->top; i++) 247 r->top = at->top; 282 if (!bn_wexpand(r, a->top)) return 0 [all...] |
bn_sqr.c | 72 fprintf(stderr,"BN_sqr %d * %d\n",a->top,a->top); 76 al=a->top; 79 r->top=0; 142 /* If the most-significant half of the top word of 'a' is zero, then 145 rr->top = max - 1; 147 rr->top = max;
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
NinePatch_Delegate.java | 162 (int) loc.left, (int) loc.top, (int) loc.width(), (int) loc.height(), 171 loc.left, loc.top, loc.width(), loc.height(), 184 final int left, final int top, final int right, final int bottom, 198 new Rect(left, top, right, bottom), 220 left, top, right - left, bottom - top, destDensity, srcDensity);
|