Searched defs:adjust (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/libs/utils/
H A DFileMap.cpp95 int adjust; local
116 adjust = offset % mPageSize;
117 adjOffset = offset - adjust;
118 adjLength = length + adjust;
134 int prot, flags, adjust; local
159 adjust = offset % mPageSize;
161 adjOffset = offset - adjust;
162 adjLength = length + adjust;
174 adjust = offset;
188 mDataPtr = (char*) mBasePtr + adjust;
[all...]
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java214 adjust(content, CAP);
215 adjust(content, ALT);
216 adjust(content, SYM);
236 private static void adjust(Spannable content, Object what) { method in class:MetaKeyKeyListener
/frameworks/base/tools/aapt/
H A DZipFile.cpp954 long delCount, adjust; local
972 delCount = adjust = 0;
1005 adjust += span;
1011 /* adjust loop control */
1014 } else if (span != 0 && adjust > 0) {
1017 // pEntry->getFileName(), adjust);
1018 result = filemove(mZipFp, pEntry->getLFHOffset() - adjust,
1026 pEntry->setLFHOffset(pEntry->getLFHOffset() - adjust);
1035 mEOCD.mCentralDirOffset -= adjust;
/frameworks/base/core/java/android/widget/
H A DGridLayout.java984 static int adjust(int measureSpec, int delta) { method in class:GridLayout
1000 int widthSpecSansPadding = adjust( widthSpec, -hPadding);
1001 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java2764 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached, argument
2785 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
2862 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
2868 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
2899 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
2971 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
2994 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3106 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3119 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
3141 if (adjust !
[all...]
/frameworks/base/core/java/android/view/
H A DView.java712 * This view will adjust its padding to fit sytem windows (e.g. status bar)
5647 * changed, to allow it to adjust its content to fit within those windows.
9178 * When rotating large views, it is recommended to adjust the camera distance
9229 * When rotating large views, it is recommended to adjust the camera distance
15835 widthMeasureSpec = MeasureSpec.adjust(widthMeasureSpec, optical ? -oWidth : oWidth);
15836 heightMeasureSpec = MeasureSpec.adjust(heightMeasureSpec, optical ? -oHeight : oHeight);
17662 static int adjust(int measureSpec, int delta) { method in class:View.MeasureSpec
18120 * to adjust for a soft input area.

Completed in 202 milliseconds