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

123456

/frameworks/base/tools/aidl/
H A Daidl_language_y.y307 direction type IDENTIFIER {
310 arg->direction = $1.buffer;
336 direction: label
H A Dgenerate_java_binder.cpp312 if (convert_direction(arg->direction.data) & IN_PARAMETER) {
370 if (convert_direction(arg->direction.data) & OUT_PARAMETER) {
436 int dir = convert_direction(arg->direction.data);
479 if (convert_direction(arg->direction.data) & OUT_PARAMETER) {
H A Dgenerate_java_rpc.cpp184 if (convert_direction(arg->direction.data) & IN_PARAMETER) {
244 if (convert_direction(arg->direction.data) & OUT_PARAMETER) {
658 if (convert_direction(arg->direction.data) & OUT_PARAMETER) {
697 if (convert_direction(arg->direction.data) & IN_PARAMETER) {
773 if (convert_direction(arg->direction.data) & OUT_PARAMETER) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1865 // direction to be counted as a drag... abort
2428 public boolean canScrollHorizontally(int direction) { argument
2435 if (direction < 0) {
2437 } else if (direction > 0) {
2518 public boolean arrowScroll(int direction) { argument
2548 direction);
2550 if (direction == View.FOCUS_LEFT) {
2560 } else if (direction == View.FOCUS_RIGHT) {
2571 } else if (direction == FOCUS_LEFT || direction
2630 addFocusables(ArrayList<View> views, int direction, int focusableMode) argument
2693 onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmp4lib_int.h144 int direction; member in struct:tagMacroBlock
225 MOT *motX; /* Motion vector in X direction */
226 MOT *motY; /* Motion vector in Y direction */
H A Dmp4dec_lib.h86 int *direction);
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java103 boolean focused, int direction,
102 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
H A DPasswordTransformationMethod.java120 boolean focused, int direction,
119 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DDataConnectionStats.java150 public void onDataActivity(int direction) {
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java525 private static Direction getDirection(int direction) { argument
527 if (direction == d.nativeInt) {
758 * @param dir The direction to wind the rectangle's contour
764 Direction direction = getDirection(dir);
766 switch (direction) {
787 * @param dx The amount in the X direction to offset the entire path
788 * @param dy The amount in the Y direction to offset the entire path
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s20 ; * to the function call, prediction direction (predDir) should be selected
39 ; * [in] predDir indicates the prediction direction which takes one
129 M_LDR predDir,predDironStack ;// Load Prediction direction
143 CMP predDir,#2 ;// Check if the Prediction direction is vertical
195 CMP predDir,#2 ;// Check the Prediction direction
201 BNE Horizontal ;// If the Prediction direction is horizontal branch to Horizontal
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java419 * @param direction 1 to increase volume, or -1 to decrease volume
422 public void adjustAvrcpAbsoluteVolume(int direction) { argument
426 mService.adjustAvrcpAbsoluteVolume(direction);
/frameworks/base/core/java/android/widget/
H A DDialerFilter.java91 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
92 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DSearchView.java457 public boolean requestFocus(int direction, Rect previouslyFocusedRect) { argument
464 boolean result = mQueryTextView.requestFocus(direction, previouslyFocusedRect);
470 return super.requestFocus(direction, previouslyFocusedRect);
1762 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
1763 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchOrbView.java239 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
240 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java820 * @param direction either {@link #ORDER_ASCENDING} or {@link #ORDER_DESCENDING}
824 public Query orderBy(String column, int direction) { argument
825 if (direction != ORDER_ASCENDING && direction != ORDER_DESCENDING) {
826 throw new IllegalArgumentException("Invalid direction: " + direction);
836 mOrderDirection = direction;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java972 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
981 return v.requestFocus(direction, previouslyFocusedRect);
987 public boolean dispatchUnhandledMove(View focused, int direction) { argument
988 if (direction == View.FOCUS_LEFT) {
993 } else if (direction == View.FOCUS_RIGHT) {
999 return super.dispatchUnhandledMove(focused, direction);
1003 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
1005 getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
1007 if (direction == View.FOCUS_LEFT) {
1009 getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMod
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java240 public void requestUpdateVolume(IMediaRouterClient client, String routeId, int direction) { argument
251 requestUpdateVolumeLocked(client, routeId, direction);
423 String routeId, int direction) {
428 UserHandler.MSG_REQUEST_UPDATE_VOLUME, direction, 0, routeId).sendToTarget();
818 private void requestUpdateVolume(String routeId, int direction) { argument
821 mGloballySelectedRouteRecord.getProvider().adjustDisplayVolume(direction);
422 requestUpdateVolumeLocked(IMediaRouterClient client, String routeId, int direction) argument
H A DMediaSessionService.java800 private void dispatchAdjustVolumeLocked(int suggestedStream, int direction, int flags, argument
804 Log.d(TAG, "Adjusting session " + description + " by " + direction + ". flags="
817 mAudioService.adjustSuggestedStreamVolume(direction, suggestedStream, flags,
823 session.adjustVolume(direction, flags, getContext().getPackageName(),
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java186 public Object focusSearch(Object info, int direction); argument
547 public Object focusSearch(Object info, int direction) { argument
932 public Object focusSearch(Object info, int direction) { argument
933 return AccessibilityNodeInfoCompatJellyBean.focusSearch(info, direction);
1582 * Searches for the nearest view in the specified direction that can take
1585 * @param direction The direction. Can be one of:
1595 public AccessibilityNodeInfoCompat focusSearch(int direction) { argument
1596 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.focusSearch(mInfo, direction));
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s20 ; * to the function call, prediction direction (predDir) should be selected
39 ; * [in] predDir indicates the prediction direction which takes one
161 M_LDR predDir,predDironStack ;// Load Prediction direction
169 CMP predDir,#2 ;// Check if the Prediction direction is vertical
213 CMP predDir,#2 ;// Check the Prediction direction
220 BNE Horizontal ;// If the Prediction direction is horizontal branch to Horizontal
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java414 public void switchKeyboardLayout(int deviceId, int direction); argument
H A DViewGroup.java627 void handleFocusGainInternal(int direction, Rect previouslyFocusedRect) { argument
632 super.handleFocusGainInternal(direction, previouslyFocusedRect);
698 * Find the nearest view in the specified direction that wants to take
702 * @param direction One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, and
705 public View focusSearch(View focused, int direction) { argument
710 return FocusFinder.getInstance().findNextFocus(this, focused, direction);
712 return mParent.focusSearch(focused, direction);
915 public boolean dispatchUnhandledMove(View focused, int direction) { argument
917 mFocused.dispatchUnhandledMove(focused, direction);
1053 public void addFocusables(ArrayList<View> views, int direction, in argument
2607 requestFocus(int direction, Rect previouslyFocusedRect) argument
2644 onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java479 public boolean requestFocus(int direction, Rect previouslyFocusedRect) { argument
486 boolean result = mQueryTextView.requestFocus(direction, previouslyFocusedRect);
492 return super.requestFocus(direction, previouslyFocusedRect);
1703 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
1704 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java95 * It is calculated by checking {@link #getReverseLayout()} and View's layout direction.
329 * Returns if views are laid out from the opposite direction of the layout.
343 * For horizontal layouts, it depends on the layout direction.
418 final int direction = targetPosition < firstChildPos != mShouldReverseLayout ? -1 : 1;
420 return new PointF(direction, 0);
422 return new PointF(0, direction);
447 // resolve layout direction
476 // extra items in the opposite direction to make sure new items animate nicely
603 final int direction = position < firstChildPos != mShouldReverseLayout
605 if (direction
[all...]

Completed in 582 milliseconds

123456