HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 151 - 175 of 1594) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/libhardware/modules/camera/3_4/metadata/
types.h 52 // StreamConfigurations indicate a possible direction configuration for
57 int32_t direction; member in struct:default_camera_hal::StreamConfiguration
60 : spec({raw[0], raw[1], raw[2]}), direction(raw[3]) {}
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 72 int direction, String destination, int visibility, int confirm, int status,
79 mDirection = direction;
  /packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
FanDirectionButtonsController.java 25 * A controller to handle changes in the fan direction. Also maps fan directions specified
44 // and defroster fan direction.
59 public void onFanDirectionClicked(@FanDirectionButtons.FanDirection int direction) {
60 mHvacController.setFanDirection(mFanDirectionMap.get(direction));
  /packages/apps/Dialer/java/com/android/dialer/dialpadview/
DigitsEditText.java 37 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
38 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /packages/apps/Messaging/src/com/android/messaging/ui/
PagingAwareViewPager.java 88 public boolean canScrollHorizontally(int direction) {
90 return super.canScrollHorizontally(direction);
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DigitsEditText.java 45 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
46 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /packages/apps/TV/src/com/android/tv/menu/
MenuView.java 192 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
198 return super.onRequestFocusInDescendants(direction, previouslyFocusedRect);
249 public View focusSearch(View focused, int direction) {
253 if (direction == View.FOCUS_UP) {
254 View newView = super.focusSearch(focused, direction);
268 } else if (direction == View.FOCUS_DOWN) {
269 View newView = super.focusSearch(focused, direction);
285 return super.focusSearch(focused, direction);
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothHeadsetProxy.java 39 public void clccResponse(int index, int direction, int status, int mode, boolean mpty,
42 mBluetoothHeadset.clccResponse(index, direction, status, mode, mpty, number, type);
  /platform_testing/tests/jank/androidtvjanktests/src/com/android/androidtv/janktests/
SystemUiJankTests.java 26 import android.support.test.uiautomator.Direction;
72 Assert.assertNotNull(select(SELECTOR_TOP_ROW.hasDescendant(By.focused(true)), Direction.UP,
96 selectBidirect(By.res(TVLAUNCHER_PACKAGE, "settings").focused(true), Direction.RIGHT));
152 * in a given {@link Direction} until it finds a matched element.
154 * @param direction the direction to find
158 public UiObject2 select(BySelector selector, Direction direction, long timeoutMs) {
161 Log.d(TAG, String.format("select: moving a focus from %s to %s", focus, direction));
163 mDPadUtil.pressDPad(direction);
    [all...]
  /system/bt/binder/android/bluetooth/
IBluetoothHearingAid.aidl 37 void adjustVolume(int direction);
  /system/media/alsa_utils/include/
alsa_device_profile.h 41 int direction; /* PCM_OUT or PCM_IN */ member in struct:__anon3099
62 void profile_init(alsa_device_profile* profile, int direction);
  /system/netd/bpfloader/
bpf_kern.h 82 int direction, void *key) {
91 if (direction == BPF_EGRESS) {
94 } else if (direction == BPF_INGRESS) {
166 static __always_inline inline int bpf_traffic_account(struct __sk_buff* skb, int direction) {
169 if ((direction == BPF_EGRESS) && (match == BPF_DROP)) {
192 bpf_update_stats(skb, TAG_STATS_MAP, direction, &key);
196 bpf_update_stats(skb, UID_STATS_MAP, direction, &key);
197 bpf_update_stats(skb, APP_UID_STATS_MAP, direction, &uid);
  /tools/tradefederation/core/proto/
metric_measurement.proto 79 Directionality direction = 3;
  /external/harfbuzz_ng/src/
hb-ot-math-table.hh 429 * variant, in the direction of requested
479 * direction of the extension. */
482 * the end of the glyph, in the direction of
485 * in the direction of the extension.
503 inline unsigned int get_parts (hb_direction_t direction,
512 int scale = font->dir_scale (direction);
551 inline unsigned int get_variants (hb_direction_t direction,
559 int scale = font->dir_scale (direction);
607 inline hb_position_t get_min_connector_overlap (hb_direction_t direction,
609 { return font->em_scale_dir (minConnectorOverlap, direction); }
    [all...]
hb-font-private.hh 125 inline int dir_scale (hb_direction_t direction)
126 { return HB_DIRECTION_IS_VERTICAL(direction) ? y_scale : x_scale; }
131 inline hb_position_t em_scale_dir (int16_t v, hb_direction_t direction)
132 { return em_scale (v, dir_scale (direction)); }
326 inline void get_extents_for_direction (hb_direction_t direction,
329 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction)))
336 hb_direction_t direction,
339 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
383 hb_direction_t direction,
386 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction)))
    [all...]
  /external/autotest/client/common_lib/cros/cfm/metrics/
media_info_metrics_extractor_unittest.py 7 DIRECTION = media_info_metrics_extractor.Direction
24 direction=DIRECTION.RECEIVER)
31 direction=DIRECTION.RECEIVER,
39 direction=DIRECTION.RECEIVER,
50 'bytessent', direction=DIRECTION.SENDER
    [all...]
  /external/autotest/client/cros/cellular/
ether_io_rf_switch.py 99 """Returns (binary port status, selected port, port direction)."""
102 direction = ord(raw_direction[2])
111 return status, port, direction
121 (raw_status, port, direction) = switch.Query()
122 if direction != 0x00:
123 print 'Warning: Direction register is %x, should be 0x00' % \
124 direction
  /external/autotest/server/site_tests/firmware_PDPowerSwap/
firmware_PDPowerSwap.py 66 def _attempt_power_swap(self, pd_port, direction):
70 Plankton depending on the direction parameter. The power
74 @param direction: rx or tx from the DUT perspective
80 if direction == 'rx':
174 direction = 'rx'
176 direction = 'tx'
177 if self._attempt_power_swap(pd_port, direction):
  /external/eigen/test/
geo_parametrizedline.cpp 79 p1->direction().setRandom();
85 VERIFY_IS_APPROX(p1->direction(), p2->direction());
86 VERIFY_IS_APPROX(p1->direction(), p3->direction());
  /external/adhd/cras/src/tests/
cras_client_unittest.cc 90 void StreamConnected(CRAS_STREAM_DIRECTION direction);
92 void StreamConnectedFail(CRAS_STREAM_DIRECTION direction);
125 stream_.direction = CRAS_STREAM_INPUT;
169 void CrasClientTestSuite::StreamConnected(CRAS_STREAM_DIRECTION direction) {
176 stream_.direction = direction;
201 if (direction == CRAS_STREAM_OUTPUT) {
219 CRAS_STREAM_DIRECTION direction) {
228 stream_.direction = direction;
    [all...]
alsa_jack_unittest.cc 204 CRAS_STREAM_DIRECTION direction,
225 direction,
242 if (direction == CRAS_STREAM_OUTPUT)
244 if (direction == CRAS_STREAM_INPUT && ucm_get_dev_for_jack_return)
251 CRAS_STREAM_DIRECTION direction,
274 direction,
417 enum CRAS_STREAM_DIRECTION direction,
427 if (direction == CRAS_STREAM_OUTPUT) {
439 direction,
455 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT local
472 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_INPUT; local
489 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT; local
506 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT; local
523 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT; local
540 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT; local
557 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_OUTPUT; local
574 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_INPUT; local
592 enum CRAS_STREAM_DIRECTION direction = CRAS_STREAM_INPUT; local
    [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 200 int direction; local
338 direction = 1;
341 direction = -1;
346 curvalue += direction;
351 curvalue = direction;
355 nextvalue = direction;
362 direction = -1;
367 curvalue += direction;
372 curvalue = direction;
376 nextvalue = direction;
    [all...]
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 191 int direction; local
328 direction = 1;
331 direction = -1;
336 curvalue += direction;
341 curvalue = direction;
345 nextvalue = direction;
352 direction = -1;
357 curvalue += direction;
362 curvalue = direction;
366 nextvalue = direction;
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
cudnn_rnn_test.py 87 direction=CUDNN_RNN_UNIDIRECTION,
121 direction=direction,
276 direction = CUDNN_RNN_UNIDIRECTION
286 direction=direction,
301 direction=direction,
347 direction = CUDNN_RNN_UNIDIRECTION
357 direction=direction
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
SortModel.java 84 * the sort direction has changed.
150 * Sort by the default direction of the given dimension if user has never specified any sort
151 * direction before.
169 * Sort by given dimension and direction. Should only be used when user explicitly asks to sort
172 * @param direction the direction to sort docs in
174 public void sortByUser(int dimensionId, @SortDirection int direction) {
180 sortByDimension(dimension, direction);
190 SortDimension newSortedDimension, @SortDirection int direction) {
192 && mSortedDimension.mSortDirection == direction) {
321 final String direction; local
    [all...]

Completed in 1225 milliseconds

1 2 3 4 5 67 8 91011>>