Searched refs:adjust (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
H A DInputMethodClient.java112 final int adjust = softInputMode & LayoutParams.SOFT_INPUT_MASK_ADJUST;
142 switch (adjust) {
157 sb.append(adjust);
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java273 adjust(content, CAP);
274 adjust(content, ALT);
275 adjust(content, SYM);
295 private static void adjust(Spannable content, Object what) { method in class:MetaKeyKeyListener
/frameworks/base/tools/aapt/
H A DZipFile.cpp951 long delCount, adjust; local
969 delCount = adjust = 0;
1002 adjust += span;
1008 /* adjust loop control */
1011 } else if (span != 0 && adjust > 0) {
1014 // pEntry->getFileName(), adjust);
1015 result = filemove(mZipFp, pEntry->getLFHOffset() - adjust,
1023 pEntry->setLFHOffset(pEntry->getLFHOffset() - adjust);
1032 mEOCD.mCentralDirOffset -= adjust;
/frameworks/base/core/java/android/net/
H A DNetworkStats.java793 Entry adjust = new NetworkStats.Entry(IFACE_ALL, 0, 0, 0, 0, 0, 0, 0L, 0L, 0L, 0L, 0L);
805 adjust.iface = baseIface;
806 adjust.rxBytes = -(entry.rxBytes + entry.rxPackets * IPV4V6_HEADER_DELTA);
807 adjust.txBytes = -(entry.txBytes + entry.txPackets * IPV4V6_HEADER_DELTA);
808 adjust.rxPackets = -entry.rxPackets;
809 adjust.txPackets = -entry.txPackets;
810 adjustments.combineValues(adjust);
1164 "Cannot adjust VPN accounting on an iface aggregated NetworkStats.");
1167 "Cannot adjust VPN accounting on a NetworkStats containing SET_DBG_VPN_*");
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DPathParser.java649 float adjust = (float) (Math.sqrt(dsq) / 1.99999);
650 drawArc(p, x0, y0, x1, y1, a * adjust,
651 b * adjust, theta, isMoreThanHalf, isPositiveArc);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java684 // Don't adjust the vertical position.
744 // In inset mode, we need to adjust for padded scrollbar width.
1545 final float adjust = targetSizeDiff > 0 ? targetSizeDiff : 0;
1548 return x >= mThumbImage.getLeft() - adjust;
1550 return x <= mThumbImage.getRight() + adjust;
1561 final float adjust = targetSizeDiff > 0 ? targetSizeDiff / 2 : 0;
1563 return y >= (top - adjust) && y <= (bottom + adjust);
H A DGridLayout.java1048 static int adjust(int measureSpec, int delta) { method in class:GridLayout
1064 int widthSpecSansPadding = adjust( widthSpec, -hPadding);
1065 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWallpaperController.java669 boolean adjust = false;
671 adjust = true;
676 adjust = true;
682 if (adjust) {
H A DTaskStack.java349 // bounds; otherwise, no need to adjust the output bounds if fullscreen or the docked
513 * @param inOutBounds the bounds of the primary stack to adjust
1326 boolean adjust = false;
1328 adjust = adjustForMinimizedDockedStack(mMinimizeAmount);
1330 adjust = adjustForIME(mImeWin);
1332 if (!adjust) {
1338 if (mAdjustedForIme && adjust && !isImeTarget) {
/frameworks/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java731 float adjust = (float) (Math.sqrt(dsq) / 1.99999);
732 drawArc(p, x0, y0, x1, y1, a * adjust, b * adjust, theta,
/frameworks/base/core/java/android/view/
H A DWindowManager.java984 * The system will adjust the importance of processes with this window type to reduce the
1940 * not adjust for a shown input method. The window will not be resized,
3208 final int adjust = softInputMode & SOFT_INPUT_MASK_ADJUST;
3209 if (adjust != 0) {
3210 result.append("adjust=");
3211 switch (adjust) {
3222 result.append(adjust);
H A DView.java953 * This view will adjust its padding to fit sytem windows (e.g. status bar)
6163 final int adjust = Math.max(mScrollCache.scrollBarMinTouchTarget - thumbLength, 0) / 2;
6165 && y >= thumbTop - adjust && y <= thumbTop + thumbLength + adjust) {
6190 final int adjust = Math.max(mScrollCache.scrollBarMinTouchTarget - thumbLength, 0) / 2;
6191 if (x >= thumbLeft - adjust && x <= thumbLeft + thumbLength + adjust
9612 * changed, to allow it to adjust its content to fit within those windows.
11982 * important for transitions, where visibility changes should not adjust focus or
14692 * When rotating large views, it is recommended to adjust th
25797 static int adjust(int measureSpec, int delta) { method in class:View.MeasureSpec
[all...]
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java5004 private void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached, argument
5025 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
5115 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
5152 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
5157 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
5171 if (adjust == SOFT_INPUT_ADJUST_RESIZE) {
5212 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf,
5269 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
5282 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
5361 if (adjust !
[all...]
/frameworks/support/gridlayout/src/main/java/androidx/gridlayout/widget/
H A DGridLayout.java941 static int adjust(int measureSpec, int delta) { method in class:GridLayout
957 int widthSpecSansPadding = adjust( widthSpec, -hPadding);
958 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java1585 // If adjust is mute and the stream is STREAM_VOICE_CALL, make sure
1664 // need to adjust the volume further.
4355 private boolean isMuteAdjust(int adjust) { argument
4356 return adjust == AudioManager.ADJUST_MUTE || adjust == AudioManager.ADJUST_UNMUTE
4357 || adjust == AudioManager.ADJUST_TOGGLE_MUTE;
/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. ...
/frameworks/base/config/
H A Dboot-image-profile.txt[all...]

Completed in 1455 milliseconds