Searched refs:direction (Results 76 - 88 of 88) sorted by relevance

1234

/frameworks/base/core/java/android/webkit/
H A DWebTextView.java562 protected void onFocusChanged(boolean focused, int direction, argument
565 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DWebView.java5797 protected void onFocusChanged(boolean focused, int direction, argument
5800 Log.v(LOGTAG, "MT focusChanged " + focused + ", " + direction);
5823 super.onFocusChanged(focused, direction, previouslyFocusedRect);
5941 * 2. If there is a dramitic direction change, let it go;
7640 public boolean requestFocus(int direction, Rect previouslyFocusedRect) { argument
7646 result = mWebTextView.requestFocus(direction,
7649 result = super.requestFocus(direction, previouslyFocusedRect);
7651 // For cases such as GMail, where we gain focus from a direction,
7655 switch(direction) {
H A DWebViewCore.java657 * @param direction The direction in which to alter the selection.
662 private native String nativeModifySelection(int direction, int granularity); argument
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselRS.java323 public void setFillDirection(int direction) { argument
324 mScript.set_fillDirection(direction);
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorClasses.cpp619 VIDEOEDIT_JAVA_FIELD_INIT("direction", "I")
2630 // Set the direction of the slide.
2631 pSettings->direction =
2633 &converted, pEnv->GetIntField(object, fieldIds.direction));
2635 // Check if the direction is valid.
2637 !converted, "slideSettings.direction is invalid");
2681 "%*c direction: %s", indentation, ' ',
2682 videoEditJava_getSlideDirectionString(pSettings->direction));
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java93 private static final String ATTR_DIRECTION = "direction";
1205 final int direction = Integer.parseInt(parser.getAttributeValue("", ATTR_DIRECTION));
1207 durationMs, behavior, direction);
H A DMediaArtistNativeHelper.java934 /** Invert the default rotation direction of the AlphaMagic effect. */
941 /** Defines the direction of the Slide transition. */
963 public int direction; field in class:MediaArtistNativeHelper.SlideTransitionSettings
3449 * Maps the transition slide direction used in JAVA layer
3450 * to transition slide direction used in native layer
3452 * @param slideDirection The transition slide direction
3455 * @return The transition slide direction in native layer
/frameworks/base/core/java/android/widget/
H A DAbsListView.java477 * How many positions in either direction we will search to try to
1673 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1674 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
3780 // Flip sign to convert finger direction to list items direction
5028 * What is the distance between the source and destination rectangles given the direction of
5029 * focus navigation between them? The direction basically helps figure out more quickly what is
5034 * @param direction the direction
5037 static int getDistance(Rect source, Rect dest, int direction) { argument
[all...]
H A DTextView.java4484 // Resolve drawables as the layout direction has been resolved
8120 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
8123 super.onFocusChanged(focused, direction, previouslyFocusedRect);
8150 mMovement.onTakeFocus(this, (Spannable) mText, direction);
8220 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
8223 super.onFocusChanged(focused, direction, previouslyFocusedRect);
11355 // Always need to resolve layout direction first
11358 // Then resolve text direction on the parent
11383 * drawables depending on the layout direction.
/frameworks/media/libvideoeditor/vss/src/
H A DM4xVSS_internal.c4616 if ((M4xVSS_SlideTransition_RightOutLeftIn == settings->direction)
4617 || (M4xVSS_SlideTransition_LeftOutRightIn == settings->direction) )
4623 if (M4xVSS_SlideTransition_RightOutLeftIn == settings->direction)
4643 if (M4xVSS_SlideTransition_TopOutBottomIn == settings->direction)
H A DM4xVSS_API.c1612 slideSettings->direction =
1614 pSlideTransitionSettings->direction;
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java328 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
329 super.onFocusChanged(hasFocus, direction, previous);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java376 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
377 super.onFocusChanged(focused, direction, previouslyFocusedRect);

Completed in 393 milliseconds

1234