Searched defs:left (Results 126 - 135 of 135) sorted by relevance

123456

/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1666 public void glFrustumf(float left, float right, float bottom, float top, argument
1669 arg("left", left);
1677 mgl.glFrustumf(left, right, bottom, top, near, far);
1681 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
1684 arg("left", left);
1692 mgl.glFrustumx(left, right, bottom, top, near, far);
2158 public void glOrthof(float left, float right, float bottom, float top, argument
2161 arg("left", lef
2173 glOrthox(int left, int right, int bottom, int top, int near, int far) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java497 float left,
506 int left,
746 float left,
755 int left,
496 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
505 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
745 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
754 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java1248 nativeSetGlobalBounds(r.left, r.top, r.width(),
2235 private void sendViewInvalidate(int left, int top, int right, int bottom) { argument
2239 new Rect(left, top, right, bottom)).sendToTarget();
2791 private void showRect(int left, int top, int width, int height, argument
2796 data.mLeft = left;
H A DWebView.java2680 // pin the short document to the top/left of the screen
2821 return new Rect(contentToViewX(x.left), contentToViewY(x.top),
2834 This liberal calculation calls floor() for the top/left, and ceil() for
2863 viewInvalidate(r.left, r.top, r.right, r.bottom);
2916 mScrollOffset.set(mVisibleRect.left, mVisibleRect.top);
2927 Log.v(LOGTAG, "sendOurVisibleRect=(" + mGlobalVisibleRect.left + ","
2952 r.left = viewToContentX(r.left);
2969 r.left = viewToContentXf(mContentVisibleRect.left);
5852 setFrame(int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java298 * The selection's left padding
1827 listPadding.left = mSelectionLeftPadding + mPaddingLeft;
1873 protected boolean setFrame(int left, int top, int right, int bottom) { argument
1874 final boolean changed = super.setFrame(left, top, right, bottom);
1969 * @return The left list padding.
1972 return mListPadding.left;
1990 * not available for reuse in the recycle bin. The only choices left are
2056 positionSelector(selectorRect.left, selectorRect.top, selectorRect.right,
2207 mSelectionLeftPadding = padding.left;
2362 // Detach any view left i
[all...]
H A DTextView.java459 // If we get the paint from the skin, we should set it to left, since
460 // the layout always wants it to be left.
1480 * Returns the left padding of the view, plus space for the left
1606 * Returns the total left padding of the view, including the left
1660 * Sets the Drawables (if any) to appear to the left of, above,
1670 public void setCompoundDrawables(Drawable left, Drawable top, argument
1674 final boolean drawables = left != null || top != null
1704 if (dr.mDrawableLeft != left
1790 setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom) argument
1809 setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top, Drawable right, Drawable bottom) argument
2068 setPadding(int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp966 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
969 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
971 (GLfloat)left,
980 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
983 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
985 (GLfixed)left,
2905 /* void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
2908 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
2910 (GLfloat)left,
2919 /* void glOrthox ( GLfixed left, GLfixe
968 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
982 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2907 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2921 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
[all...]
/frameworks/base/services/audioflinger/
H A DAudioFlinger.cpp2187 int16_t left, right, aux; local
2190 left = int16_t(v_clamped);
2202 mAudioMixer->setParameter(param, AudioMixer::VOLUME0, (void *)left);
2663 float left, right; local
2666 left = right = 0;
2675 left = v_clamped/MAX_GAIN;
2681 if (left != mLeftVolFloat || right != mRightVolFloat) {
2682 mLeftVolFloat = left;
2687 if (mOutput->stream->set_volume(mOutput->stream, left, right) == NO_ERROR) {
2688 left
3622 setVolume(float left, float right) argument
4077 setVolume(float left, float right) argument
6595 setVolume(uint32_t *left, uint32_t *right, bool controller) argument
7339 setVolume_l(uint32_t *left, uint32_t *right) argument
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2423 protected boolean left(TextView widget, Spannable buffer) { method in class:EditStyledText.StyledTextArrowKeyMethod
2425 Log.d(LOG_TAG, "--- left:");
2459 handled |= left(widget, buffer);
/frameworks/base/core/java/android/view/
H A DView.java284 * expressed as a pair of <em>left</em> and <em>top</em> coordinates, and
291 * {@link #getLeft()} and {@link #getTop()}. The former returns the left, or X,
296 * right of the left edge of its direct parent.
334 * is expressed in pixels for the left, top, right and bottom parts of the view.
336 * pixels. For instance, a left padding of 2 will push the view's content by
337 * 2 pixels to the right of the left edge. Padding can be set using the
1026 * Use with {@link #focusSearch(int)}. Move focus to the left.
1744 * right-to-left direction.
2127 * The amount of translation of the object away from its left property (post-layout).
2185 * The distance in pixels from the left edg
6861 onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) argument
7711 setLeft(int left) argument
8818 postInvalidate(int left, int top, int right, int bottom) argument
8858 postInvalidateDelayed(long delayMilliseconds, int left, int top, int right, int bottom) argument
11307 onLayout(boolean changed, int left, int top, int right, int bottom) argument
11323 setFrame(int left, int top, int right, int bottom) argument
11827 setPadding(int left, int top, int right, int bottom) argument
14403 int left; field in class:View.AttachInfo.InvalidateInfo
[all...]

Completed in 1707 milliseconds

123456