HomeSort by relevance Sort by last modified time
    Searched refs:directions (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/support/navigation/integration-tests/safeargs-testapp/src/test/java/android/arch/navigation/integration/
MainDestinationTest.java 35 MainFragmentDirections.Next directions = MainFragmentDirections.next("foo", "some"); local
36 assertThat(directions.getDestinationId(), is(R.id.next_fragment));
  /frameworks/support/navigation/integration-tests/safeargs-testapp/src/testFoo/java/android/arch/navigation/integration/flavor/foo/
FlavorDestinationTest.java 40 MainFragmentDirections.Foo directions = MainFragmentDirections.foo("foo", "some"); local
41 assertThat(directions.getDestinationId(), is(R.id.foo_fragment));
  /system/tools/aidl/tests/
test_util.cpp 76 int directions = 0; local
79 directions |= UP;
83 directions |= LEFT;
87 table[i][j].propagation_directions = directions;
95 int directions = 0; local
99 directions |= UP;
104 directions |= LEFT;
109 table[i][j].propagation_directions = directions;
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 24 * A namespace to hold interfaces and constants for scroll directions.
27 /** Logical directions */
44 /** Physical directions */
97 private final PhysicalDirection[] directions = {LEFT, RIGHT}; external variable declarations
101 return directions;
105 private final PhysicalDirection[] directions = {UP, DOWN}; external variable declarations
109 return directions;
  /frameworks/av/media/libaaudio/tests/
test_open_params.cpp 120 aaudio_direction_t directions[] = {AAUDIO_DIRECTION_OUTPUT, AAUDIO_DIRECTION_INPUT}; local
129 for (uint dirIndex = 0;dirIndex < arraysize(directions); dirIndex++) {
130 aaudio_direction_t direction = directions[dirIndex];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
Xfixes.h 259 int x2, int y2, int directions,
264 int x2, int y2, int directions, int velocity,
284 int directions; member in struct:__anon61860
xfixesproto.h 518 CARD32 directions; member in struct:__anon62016
562 CARD32 directions; member in struct:__anon62019
  /frameworks/support/navigation/runtime/src/main/java/androidx/navigation/
NavController.java 651 * @param directions directions that describe this navigation operation
653 public void navigate(@NonNull NavDirections directions) {
654 navigate(directions.getActionId(), directions.getArguments());
660 * @param directions directions that describe this navigation operation
662 public void navigate(@NonNull NavDirections directions, @Nullable NavOptions navOptions) {
663 navigate(directions.getActionId(), directions.getArguments(), navOptions)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java     [all...]
  /frameworks/base/core/java/android/text/
AndroidBidi.java 24 import android.text.Layout.Directions;
36 * Overrides ICU {@link BidiClassifier} in order to correctly handle character directions for
102 * @return the directions
104 public static Directions directions(int dir, byte[] levels, int lstart, method in class:AndroidBidi
219 return new Directions(ld);
Layout.java 560 Directions directions = getLineDirections(lineNum); local
561 if (directions == DIRS_ALL_LEFT_TO_RIGHT && !mSpannedText && !hasTab && !justify) {
565 tl.set(paint, buf, start, end, dir, directions, hasTab, tabStops);
1170 Directions directions = getLineDirections(line); local
1209 Directions directions = getLineDirections(line); local
1353 final Directions directions = getLineDirections(line); local
1385 final Directions directions = getLineDirections(line); local
1727 Directions directions = getLineDirections(line); local
    [all...]
TextLine.java 24 import android.text.Layout.Directions;
57 private Directions mDirections;
147 * @param directions the directions information of this line
153 Directions directions, boolean hasTabs, TabStops tabStops) {
159 mDirections = directions;
161 throw new IllegalArgumentException("Directions cannot be null");
183 mCharsValid = hasReplacement || hasTabs || directions != Layout.DIRS_ALL_LEFT_TO_RIGHT;
    [all...]
MeasuredParagraph.java 28 import android.text.Layout.Directions;
42 * The first motivation of this class is identify the text directions and retrieving individual
43 * character widths. However retrieving character widths is slower than identifying text directions.
47 * Compute only text directions.
207 * Returns the directions.
211 public Directions getDirections(@IntRange(from = 0) int start, // inclusive
218 return AndroidBidi.directions(mParaDir, mLevels.getRawArray(), start, mCopiedBuffer, start,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 7 // Shortcircuit finds situations where branch directions
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 7 // Shortcircuit finds situations where branch directions
  /frameworks/support/customview/src/main/java/androidx/customview/widget/
ViewDragHelper.java     [all...]
  /external/autotest/client/cros/
touch_playback_test_base.py 116 def _find_test_files_from_directions(self, input_type, fmt_str, directions):
117 """Find gesture files given a list of directions and name format.
121 @param directions: list of directions for fmt_string
124 they are found, indexed by directions as given.
128 gestures = [fmt_str % d for d in directions]
133 filepaths = {d: temp_filepaths[fmt_str % d] for d in directions}
  /external/walt/docs/
DragLatency.md 33 Now imagine that the clocks timestamping the touch and the laser events diverge a little (this divergence is the latency we want to measure). The red 'x' marks would move along the graph. But half of them would move up and half down (corresponding to direction of the finger movement in that point) and therefore they would diverge in opposite directions from the relatively straight horizontal line you see on the screenshot.
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
cudnn_rnn_ops_test.py 365 directions = [
370 for rnn_mode, direction, dtype in itertools.product(rnn_modes, directions,
406 directions = [
410 for (config, direction) in itertools.product(test_configs, directions):
cudnn_rnn_test.py 657 directions = [CUDNN_RNN_UNIDIRECTION, CUDNN_RNN_BIDIRECTION]
659 for direction, dtype in itertools.product(directions, dtype_list):
759 directions = [CUDNN_RNN_UNIDIRECTION, CUDNN_RNN_BIDIRECTION]
760 for cfg, direction in zip(configs, directions):
    [all...]
  /external/curl/lib/vtls/
gskit.c 82 /* Directions. */
609 int directions)
628 if(directions & SOS_READ) {
632 if(directions & SOS_WRITE) {
    [all...]
  /external/ImageMagick/www/api/
feature.php 103 <p>GetImageFeatures() returns features for each channel in the image in each of four directions (horizontal, vertical, left and right diagonals) for the specified distance. The features include the angular second moment, contrast, correlation, sum of squares: variance, inverse difference moment, sum average, sum varience, sum entropy, entropy, difference variance, difference entropy, information measures of correlation 1, information measures of correlation 2, and maximum correlation coefficient. You can access the red channel contrast, for example, like this:</p>
morphology.php 154 <dd> Comet:{width},{sigma},{angle} Blur in one direction only, much like how a bright object leaves a comet like trail. The Kernel is actually half a gaussian curve, Adding two such blurs in opposite directions produces a Blur Kernel. Angle can be rotated in multiples of 90 degrees. </dd>
264 <dd> Manhattan:[{radius}][x{scale}[!]] Manhattan Distance (also known as Rectilinear, City Block, or the Taxi Cab distance metric), it is the distance needed when you can only travel in horizontal or vertical directions only. It is the distance a 'Rook' in chess would have to travel, and results in a diamond like distances, where diagonals are further than expected. </dd>
    [all...]
  /external/valgrind/none/tests/
cmdline1.stdout.exp 23 and follow the on-screen directions
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 200 def _is_direction_in_variation(self, variation, directions):
201 """Is any element of directions list found in variation?"""
202 for direction in directions:
    [all...]

Completed in 1000 milliseconds

1 2