HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 276 - 300 of 1237) sorted by null

<<11121314151617181920>>

  /frameworks/base/telephony/java/com/android/internal/telephony/
IPhoneStateListener.aidl 38 void onDataActivity(int direction);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseGridView.java 540 * applied in primary scroll direction. The scrollExtra will be kept until
549 * applied in primary scroll direction. The scrollExtra will be kept until
677 public boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
678 return mLayoutManager.gridOnRequestFocusInDescendants(this, direction,
703 public View focusSearch(int direction) {
709 return focusSearch(view, direction);
713 return super.focusSearch(direction);
717 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) {
718 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
719 mLayoutManager.onFocusChanged(gainFocus, direction, previouslyFocusedRect)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/grovecircularled/
grovecircularled.cxx 46 // set direction (out)
69 GroveCircularLED::setLevel (uint8_t level, bool direction) {
73 if (direction) {
  /hardware/bsp/intel/peripheral/libupm/src/hmc5883l/
hmc5883l.cxx 140 Hmc5883l::direction(void) function in class:Hmc5883l
148 float dir = Hmc5883l::direction() * 180/M_PI;
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
jhd1313m1.cxx 114 Jhd1313m1::scroll(bool direction)
116 if (direction) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
ProportionalLayout.java 29 * {@link #setDirection(Direction)}. The factor is specified in {@link #setRatio(float)}.
30 * <p>For {@link Direction#heightToWidth}: width := height * factor</p>
31 * <p>For {@link Direction#widthToHeight}: height := width * factor</p>
37 public enum Direction {
43 private Direction(String xmlName) {
48 * Parses the given direction string and returns the Direction instance. This
51 public static Direction parse(String value) {
53 return Direction.widthToHeight;
55 return Direction.heightToWidth
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
ListView.java     [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
NestedScrollView.java     [all...]
ExploreByTouchHelper.java 81 * public boolean onFocusChanged(boolean gainFocus, int direction,
83 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
84 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
228 final int direction = keyToDirection(keyCode); local
231 if (moveFocus(direction, null)) {
267 * public boolean onFocusChanged(boolean gainFocus, int direction,
269 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
270 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
274 public final void onFocusChanged(boolean gainFocus, int direction,
281 moveFocus(direction, previouslyFocusedRect)
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 39 int rijndael_makeKey(keyInstance *key, BYTE direction, int keyLen, char *keyMaterial) {
48 if ((direction == DIR_ENCRYPT) || (direction == DIR_DECRYPT)) {
49 key->direction = direction;
72 if (direction == DIR_DECRYPT) {
100 key->direction == DIR_DECRYPT) {
214 key->direction == DIR_DECRYPT) {
277 (cipher->mode != MODE_CFB1 && key->direction == DIR_ENCRYPT)) {
376 key->direction == DIR_ENCRYPT)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderPagedView.java 475 public void showScrollHint(int direction) {
476 float fraction = (direction == DragController.SCROLL_LEFT) ^ mIsRtl
560 int direction; local
567 direction = 1;
585 direction = -1;
605 int rankToMove = moveStart + direction;
633 .translationXBy((direction > 0 ^ mIsRtl) ? -v.getWidth() : v.getWidth())
643 if ((endPos - startPos) * direction <= 0) {
649 for (int i = startPos; i != endPos; i += direction) {
650 int nextPos = i + direction;
    [all...]
CellLayout.java     [all...]
  /platform_testing/libraries/gmail-app-helper/src/android/platform/test/helpers/
GmailHelperImpl.java 26 import android.support.test.uiautomator.Direction;
168 scrollNavigationDrawer(Direction.UP);
286 while(convScroll.scroll(Direction.DOWN, 1.0f));
310 while (convScroll.scroll(Direction.UP, 1.0f));
314 convScroll.scroll(Direction.DOWN, 1.0f);
332 while (convScroll.scroll(Direction.UP, 1.0f));
336 convScroll.scroll(Direction.DOWN, 1.0f);
353 while (convScroll.scroll(Direction.UP, 1.0f));
357 convScroll.scroll(Direction.DOWN, 1.0f);
376 while (convScroll.scroll(Direction.UP, 1.0f))
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 72 switch (props->direction) {
98 if (HB_DIRECTION_IS_HORIZONTAL (props->direction))
289 hb_direction_t direction = buffer->props.direction; local
295 if ((HB_DIRECTION_IS_HORIZONTAL (direction) && direction != hb_script_get_horizontal_direction (buffer->props.script)) ||
296 (HB_DIRECTION_IS_VERTICAL (direction) && direction != HB_DIRECTION_TTB))
320 buffer->props.direction = HB_DIRECTION_REVERSE (buffer->props.direction);
605 hb_direction_t direction = c->buffer->props.direction; local
    [all...]
hb-font.cc 898 * @direction:
907 hb_direction_t direction,
910 return font->get_extents_for_direction (direction, extents);
916 * @direction:
927 hb_direction_t direction,
930 return font->get_glyph_advance_for_direction (glyph, direction, x, y);
937 * @direction:
948 hb_direction_t direction,
951 return font->get_glyph_origin_for_direction (glyph, direction, x, y);
958 * @direction:
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]
  /cts/tests/tests/view/src/android/view/cts/
FocusFinderTest.java 82 private void assertNextFocus(View currentFocus, int direction, View expectedNextFocus) {
83 View actualNextFocus = mFocusFinder.findNextFocus(mLayout, currentFocus, direction);
122 private void assertNextFocusFromRect(Rect rect, int direction, View expectedNextFocus) {
123 View actualNextFocus = mFocusFinder.findNextFocusFromRect(mLayout, rect, direction);
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 141 double direction; member in struct:__anon2766
  /external/aac/libAACdec/src/
rvlc_info.h 94 #define FWD 0 /* bitstream decoding direction forward (RVL coded part) */
95 #define BWD 1 /* bitstream decoding direction backward (RVL coded part) */
137 UCHAR direction; member in struct:__anon6203
  /external/chromium-trace/catapult/dashboard/dashboard/static/
base.css 20 flex-direction: column;
21 -webkit-flex-direction: column;
  /external/droiddriver/src/io/appium/droiddriver/
UiElement.java 28 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
181 * Scrolls in the given direction.
183 * @param direction specifies where the view port will move instead of the finger
185 void scroll(PhysicalDirection direction);
  /external/icu/icu4c/source/layoutex/layout/
ParagraphLayout.h 38 * same font, script and direction, and will create a <code>LayoutEngine</code> object for each run.
186 void append(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
193 * script, and direction. The text is represented by an array of
223 * Get the direction of the visual run.
225 * @return the direction of the run. This will be UBIDI_LTR if the
347 inline VisualRun(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
465 * or <code>UBIDI_MIXED</code> if the text has mixed direction.
737 inline ParagraphLayout::VisualRun::VisualRun(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
739 : fFont(font), fDirection(direction), fGlyphCount(glyphCount),
  /external/wpa_supplicant_8/wpa_supplicant/
wmm_ac.h 56 * wmm_ac_dir - WMM Admission Control Direction
69 * the respective tspec slot (according to the direction).
126 * direction - Traffic Stream's direction
128 enum wmm_ac_dir direction; member in struct:wmm_ac_ts_setup_params

Completed in 1403 milliseconds

<<11121314151617181920>>