/frameworks/base/policy/src/com/android/internal/policy/impl/ |
KeyguardViewBase.java | 49 setForegroundGravity(Gravity.FILL_HORIZONTAL | Gravity.TOP);
|
/cts/tests/tests/view/src/android/view/cts/ |
GravityTest.java | 72 Gravity.apply(Gravity.TOP, 2, 3, mInRect, mOutRect); 75 assertEquals(20, mOutRect.top); 77 Gravity.apply(Gravity.TOP, 2, 3, mInRect, 5, 5, mOutRect); 80 assertEquals(25, mOutRect.top); 86 assertEquals(37, mOutRect.top); 91 assertEquals(32, mOutRect.top); 97 assertEquals(25, mOutRect.top); 102 assertEquals(30, mOutRect.top); 108 assertEquals(25, mOutRect.top); 113 assertEquals(30, mOutRect.top); [all...] |
WindowManager_LayoutParamsTest.java | 185 params.gravity = Gravity.TOP; 285 mLayoutParams.gravity = Gravity.TOP;
|
/frameworks/base/core/java/android/view/ |
Gravity.java | 32 /** Raw bit controlling how the left/top edge is placed. */ 45 /** Push object to the top of its container, not changing its size. */ 46 public static final int TOP = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_Y_SHIFT; 59 public static final int FILL_VERTICAL = TOP|BOTTOM; 141 * @param yAdj Offset to apply to the Y axis. If gravity is TOP this pushes 193 outRect.top = container.top 194 + ((container.bottom - container.top - h)/2) + yAdj; 195 outRect.bottom = outRect.top + h; 198 if (outRect.top < container.top) [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetCreator.py | 172 vBoxLeftTop.Add(self.btnAddSeg, 0, wx.TOP, BORDER)
173 vBoxLeftTop.Add(self.btnRevSeg, 0, wx.TOP, BUT_SPACE)
174 vBoxLeftTop.Add(self.btnDelSeg, 0, wx.TOP, BUT_SPACE)
175 vBoxLeftTop.Add(self.btnMoveSeg, 0, wx.TOP, BUT_SPACE)
177 vBoxLeftTop.Add(self.btnQueueAll, 0, wx.TOP, BUT_SPACE)
178 vBoxLeftTop.Add(self.btnDequeueAll, 0, wx.TOP, BUT_SPACE)
179 vBoxLeftTop.Add(self.btnPlay, 0, wx.TOP, BUT_SPACE)
180 vBoxLeftTop.Add(self.btnPause, 0, wx.TOP, BUT_SPACE)
181 vBoxLeftTop.Add(self.btnAudition, 0, wx.TOP, BUT_SPACE)
184 vBoxLeftBot.Add(self.btnRevEvt, 0, wx.TOP, BUT_SPACE) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragView.java | 66 int left, int top, int width, int height) { 78 mBitmap = Bitmap.createBitmap(bitmap, left, top, width, height, scale, true); 154 lp.gravity = Gravity.LEFT | Gravity.TOP;
|
/external/bluetooth/glib/tests/ |
makefile.msc.in | 4 TOP = ..\..
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
BalloonHint.java | 172 return mPaddingRect.top; 189 showAtLocation(mParent, Gravity.LEFT | Gravity.TOP, 320 showAtLocation(mParent, Gravity.LEFT | Gravity.TOP, 407 measuredHeight += mFmi.bottom - mFmi.top; 451 int fontHeight = mFmi.bottom - mFmi.top; 453 float y = marginY - mFmi.top;
|
/frameworks/base/core/java/android/widget/ |
LinearLayout.java | 83 @ViewDebug.IntToString(from = Gravity.TOP, to = "TOP"), 94 private int mGravity = Gravity.LEFT | Gravity.TOP; 210 if (majorGravity != Gravity.TOP) { 769 // Check mMaxAscent[INDEX_TOP] first because it maps to Gravity.TOP, [all...] |
FrameLayout.java | 36 * children are pegged to the top left of the screen. 37 * Children are drawn in a stack, with the most recently added child on top. 126 foregroundGravity |= Gravity.TOP; 136 mForegroundPaddingTop = padding.top; 181 * Supply a Drawable that is to be rendered on top of all of the child 186 * @param drawable The Drawable to be drawn on top of the children. 213 mForegroundPaddingTop = padding.top; 228 * foreground drawable, if non-null, is always drawn on top of the children. 279 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 286 final int parentBottom = bottom - top - mPaddingBottom - mForegroundPaddingBottom [all...] |
PopupWindow.java | 43 * windows is a floating container that appears on top of the current 739 * <code>Gravity.LEFT | Gravity.TOP</code>. 762 gravity = Gravity.TOP | Gravity.LEFT; 775 * corner of the popup is pinned at the top left corner of the anchor view.</p> 791 * corner of the popup is pinned at the top left corner of the anchor view.</p> 921 // these gravity settings put the view at the top left corner of the 925 p.gravity = Gravity.LEFT | Gravity.TOP; [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
VoiceDialerActivity.java | 386 private static final int TOP = 2; // beep constant energy detected 446 if (Config.LOGD) Log.d(TAG, "start TOP: " + count +" time: "+ (((1000*count)/2)/SAMPLE_RATE)); 450 state = TOP; 453 case TOP: 456 if (Config.LOGD) Log.d(TAG, "end TOP: " + count +" time: "+ (((1000*count)/2)/SAMPLE_RATE));
|
/frameworks/base/core/java/android/text/ |
StaticLayout.java | 332 fm.top += mWorkPaint.baselineShift; 339 int fmtop = fm.top; 529 fm.top, fm.bottom, 565 fittop = fm.top; 598 fm.top, fm.bottom, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiElementDetail.java | 208 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP)); 404 TableWrapData.TOP));
|
/build/core/ |
main.mk | 19 #TOP := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) 20 #TOP := $(patsubst %/,%,$(TOP)) 24 # it can be "", whereas TOP must be "." which causes 27 #ifeq ($(TOP),.) 30 #TOPDIR := $(TOP)/ 43 TOP := . 464 subdirs := $(TOP) 622 # top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES
|
/external/webkit/WebCore/rendering/style/ |
RenderStyleConstants.h | 112 TEXT_BOTTOM, TOP, BOTTOM, BASELINE_MIDDLE, LENGTH
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Tutorial.java | 79 this.gravity = Gravity.TOP | Gravity.LEFT;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
ApplicationToggle.java | 107 mCheckbox.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP));
|
/frameworks/base/services/java/com/android/server/ |
LoadAverageService.java | 182 int top = mPaddingTop + 2; local 186 canvas.drawRect(x-irqW, top, x, bottom, mIrqPaint); 190 canvas.drawRect(x-systemW, top, x, bottom, mSystemPaint); 194 canvas.drawRect(x-userW, top, x, bottom, mUserPaint); 214 top += mFH; 221 canvas.drawRect(x-systemW, top, x, bottom, mSystemPaint); 225 canvas.drawRect(x-userW, top, x, bottom, mUserPaint); 279 params.gravity = Gravity.RIGHT | Gravity.TOP;
|
/ndk/build/core/ |
init.mk | 271 # $TOP/ndk/build/platforms to $TOP/development/ndk/platforms. However,
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
TutorialEN.java | 112 this.gravity = Gravity.TOP | Gravity.LEFT;
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
LocalPackagesPage.java | 115 mDescriptionLabel.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, true, 1, 1));
|
/build/ |
envsetup.sh | 4 - croot: Changes directory to the top of the tree. 5 - m: Makes from the top of the tree. 29 echo "Couldn't locate the top of the tree. Try setting TOP." >&2 41 echo "Couldn't locate the top of the tree. Try setting TOP." >&2 53 echo "Couldn't locate the top of the tree. Try setting TOP." >&2 83 echo "Couldn't locate the top of the tree. Try setting TOP. [all...] |
/external/chromium/third_party/icu/source/tools/genpname/ |
preparse.pl | 73 # Top level property keys for binary, enumerated, string, and double props 74 my @TOP = qw( _bp _ep _sp _dp _mp ); 76 # This hash governs how top level properties are grouped into output arrays. 379 # Emit top-level properties (binary, enumerated, etc.) 588 for my $k (@TOP) { 593 for my $subh (map { $h->{$_} } @TOP) { [all...] |
/external/icu4c/tools/genpname/ |
preparse.pl | 73 # Top level property keys for binary, enumerated, string, and double props 74 my @TOP = qw( _bp _ep _sp _dp _mp ); 76 # This hash governs how top level properties are grouped into output arrays. 379 # Emit top-level properties (binary, enumerated, etc.) 588 for my $k (@TOP) { 593 for my $subh (map { $h->{$_} } @TOP) { [all...] |