Searched refs:below (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dsobeloperator.cpp49 const int below = (i < height - 1) ? curr + 4 * width : curr; local
55 *(dataPtr + below + c + right) - *(dataPtr + below + c + left);
57 (*(dataPtr + c + below) - *(dataPtr + c + above)) * 2 +
58 *(dataPtr + left + c + below) - *(dataPtr + left + c + above) +
59 *(dataPtr + right + c + below) - *(dataPtr + right + c + above);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskGrouping.java82 public boolean isTaskAboveTask(Task t, Task below) { argument
83 return mTaskKeyIndices.containsKey(t.key) && mTaskKeyIndices.containsKey(below.key) &&
84 mTaskKeyIndices.get(t.key) > mTaskKeyIndices.get(below.key);
/frameworks/support/transition/tests/src/android/support/transition/
H A DChangeBoundsTest.java55 assertThat(startHolder.green, is(below(startHolder.red)));
60 assertThat(endHolder.red, is(below(endHolder.green)));
77 private static TypeSafeMatcher<View> below(final View other) { method in class:ChangeBoundsTest
86 description.appendText("is placed below the specified view");
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayout.java194 int below = -1;
196 below = getId(ID_APP_COMPAT_ACTION_BAR);
198 below = getId(ID_FRAMEWORK_BAR);
200 below = getId(ID_STATUS_BAR);
202 if (below != -1) {
203 params.addRule(BELOW, below);
262 // AppCompat ActionBar below it
/frameworks/base/media/mca/filterfw/native/
H A Dlibfilterfw.mk19 # Uncomment the requirements below, once we need them:
/frameworks/rs/script_api/
H A Drs_allocation_data.spec20 The functions below can be used to get and set the cells that comprise
H A Drs_debug.spec20 The functions below are intended to be used during application developement.
H A Drs_object_info.spec20 The functions below can be used to query the characteristics of an Allocation, Element,
44 The functions below let you query the characteristics of the type specificiation.
133 of an Allocation. See the rsElement* functions below.
H A Drs_time.spec20 The functions below can be used to tell the current clock time and the current
H A Drs_convert.spec20 The functions below convert from a numerical vector type to another, or from one color
142 # NOTE: The = below indicates that the generator should not add "overloadable" by default.
H A Drs_atomic.spec20 To update values shared between multiple threads, use the functions below.
H A Drs_object_types.spec20 The types below are used to manipulate RenderScript objects like allocations, samplers,
H A Drs_allocation_create.spec20 The functions below can be used to create Allocations from a Script.
H A Drs_math.spec20 The mathematical functions below can be applied to scalars and vectors. When applied
/frameworks/rs/tests/java_api/
H A DAndroid.mk29 # Tests that run on older devices (API 19 and below)
/frameworks/base/core/java/android/text/
H A DStaticLayout.java761 // the order of storage here (top, bottom, ascent, descent) has to match the code below
902 int above, int below, int top, int bottom, int v,
932 fm.descent = below;
947 below = fm.descent;
988 mBottomPadding = bottom - below;
992 below = bottom;
997 double ex = (below - above) * (spacingmult - 1) + spacingadd;
1009 lines[off + DESCENT] = below + extra;
1014 // below calculation as if it was the last line
1015 int maxLineBelow = includePad ? bottom : below;
901 out(CharSequence text, int start, int end, int above, int below, int top, int bottom, int v, float spacingmult, float spacingadd, LineHeightSpan[] chooseHt, int[] chooseHtv, Paint.FontMetricsInt fm, int flags, boolean needMultiply, byte[] chdirs, int dir, boolean easy, int bufEnd, boolean includePad, boolean trackPad, char[] chs, float[] widths, int widthStart, TextUtils.TruncateAt ellipsize, float ellipsisWidth, float textWidth, TextPaint paint, boolean moreChars) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java130 * The provided prompt view should appear below list content.
320 * The drop-down will occupy the entire screen below {@link #getAnchorView} regardless
626 // The call to PopupWindow's update method below can accept -1 for any
637 // The call to PopupWindow's update method below can accept -1 for any
928 final boolean below = !mPopup.isAboveAnchor();
944 if ((below && keyCode == KeyEvent.KEYCODE_DPAD_UP && curIndex <= firstItem) ||
945 (!below && keyCode == KeyEvent.KEYCODE_DPAD_DOWN && curIndex >= lastItem)) {
982 if (below && keyCode == KeyEvent.KEYCODE_DPAD_DOWN) {
988 } else if (!below && keyCode == KeyEvent.KEYCODE_DPAD_UP &&
H A DGridView.java582 View below;
587 below = fillDown(motionRowStart + numColumns, referenceView.getBottom() + verticalSpacing);
594 below = fillDown(motionRowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
609 return below;
675 // Make sure we are 1) Too low, and 2) Either there are more rows below the
686 // Fill the gap that was opened below the last position with more rows, if
801 // Some of the newly selected item extends below the bottom of the
836 // Find space available below the selection into which we can
868 * selection. The new selection will be placed at, above, or below the
1184 // Remember stuff we will need down below
[all...]
H A DListView.java308 // It's OK to have some space below the last item if it is
888 * below it.
931 // Some of the newly selected item extends below the bottom of the list
949 // Find space available below the selection into which we can scroll
958 // Fill in views above and below
1026 * selection. The new selection will be placed at, above, or below the
1080 // Now put the new selection (B) below that
1084 // Some of the newly selected item extends below the bottom of the list
1104 // Fill in views above and below
1151 // Find space available below th
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java165 * The provided prompt view should appear below list content.
356 * The drop-down will occupy the entire screen below {@link #getAnchorView} regardless
658 // The call to PopupWindow's update method below can accept -1 for any
669 // The call to PopupWindow's update method below can accept -1 for any
967 final boolean below = !mPopup.isAboveAnchor();
983 if ((below && keyCode == KeyEvent.KEYCODE_DPAD_UP && curIndex <= firstItem) ||
984 (!below && keyCode == KeyEvent.KEYCODE_DPAD_DOWN && curIndex >= lastItem)) {
1021 if (below && keyCode == KeyEvent.KEYCODE_DPAD_DOWN) {
1027 } else if (!below && keyCode == KeyEvent.KEYCODE_DPAD_UP &&
/frameworks/av/media/libaaudio/src/
H A DAndroid.mk30 # If you add a file here then also add it below in the SHARED target
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DActivatableNotificationView.java461 public void setBelowSpeedBump(boolean below) { argument
462 super.setBelowSpeedBump(below);
463 if (below != mIsBelowSpeedBump) {
464 mIsBelowSpeedBump = below;
474 * @return whether we are below the speed bump
H A DExpandableView.java298 * Set the notification appearance to be below the speed bump.
299 * @param below true if it is below.
301 public void setBelowSpeedBump(boolean below) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java682 if (p.below(mHeight)) {
1118 public boolean below(int h) { method in class:MLand.Player
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 560 milliseconds