HomeSort by relevance Sort by last modified time
    Searched refs:lp (Results 226 - 250 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardStatusBarView.java 111 RelativeLayout.LayoutParams lp = local
114 if (marginEnd != lp.getMarginEnd()) {
115 lp.setMarginEnd(marginEnd);
116 mSystemIconsSuperContainer.setLayoutParams(lp);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ImageCardView.java 124 ViewGroup.LayoutParams lp = mImageView.getLayoutParams(); local
125 lp.width = width;
126 lp.height = height;
127 mImageView.setLayoutParams(lp);
  /packages/apps/Settings/src/com/android/settings/widget/
SwitchBar.java 83 ViewGroup.MarginLayoutParams lp = (MarginLayoutParams) mTextView.getLayoutParams(); local
84 lp.setMarginStart(switchBarMarginStart);
90 lp = (MarginLayoutParams) mSwitch.getLayoutParams();
91 lp.setMarginEnd(switchBarMarginEnd);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
CameraAnalyzerActivity.java 423 android.view.ViewGroup.LayoutParams lp = mCameraView.getLayoutParams();
424 lp.height = y;
425 lp.width = (int)(4.0 / 3.0 * lp.height);
426 Log.v(TAG, String.format("params are %d, %d", lp.width, lp.height));
427 mCameraView.setLayoutParams(lp);
  /external/e2fsprogs/util/
symlinks.c 165 char *p, *np, *lp, *tail, *msg; local
232 tail = lp = lpath;
234 while (*p && (*p == *lp)) {
235 if (*lp++ == '/') {
236 tail = lp;
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 167 boolean SetLcLpPb(int lc, int lp, int pb)
169 if (lc > Base.kNumLitContextBitsMax || lp > 4 || pb > Base.kNumPosStatesBitsMax)
171 m_LiteralDecoder.Create(lp, lc);
320 int lp = remainder % 5; local
325 if (!SetLcLpPb(lc, lp, pb))
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java 661 CellLayout.LayoutParams lp = local
665 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);
993 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams(); local
1061 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams(); local
1124 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) v.getLayoutParams(); local
1270 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) currentDragView.getLayoutParams(); local
    [all...]
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
SettingsDialog.java 67 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
68 lp.height = WindowManager.LayoutParams.MATCH_PARENT;
69 lp.gravity = Gravity.BOTTOM | Gravity.CENTER;
70 lp.y = getResources().getDimensionPixelSize(R.dimen.panel_y_offset);
71 getWindow().setAttributes(lp);
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 324 const struct lookup * lp);
945 register const struct lookup * lp; local
986 lp = byword(fields[0], line_codes);
987 if (lp == NULL)
989 else switch ((int) (lp->l_value)) {
1012 progname, lp->l_value);
1260 register const struct lookup * lp; local
1295 if ((lp = byword(fields[LP_MONTH], mon_names)) == NULL) {
1299 month = lp->l_value;
1396 register const struct lookup * lp; local
2706 register const struct lookup * lp; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 324 const struct lookup * lp);
945 register const struct lookup * lp; local
986 lp = byword(fields[0], line_codes);
987 if (lp == NULL)
989 else switch ((int) (lp->l_value)) {
1012 progname, lp->l_value);
1260 register const struct lookup * lp; local
1295 if ((lp = byword(fields[LP_MONTH], mon_names)) == NULL) {
1299 month = lp->l_value;
1396 register const struct lookup * lp; local
2706 register const struct lookup * lp; local
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstrlib.c 578 size_t ls, lp; local
580 const char *p = luaL_checklstring(L, 2, &lp);
588 if (find && (lua_toboolean(L, 4) || nospecials(p, lp))) {
590 const char *s2 = lmemfind(s + init - 1, ls - init + 1, p, lp);
593 lua_pushinteger(L, s2 - s + lp);
602 p++; lp--; /* skip anchor character */
608 ms.p_end = p + lp;
641 size_t ls, lp; local
643 const char *p = lua_tolstring(L, lua_upvalueindex(2), &lp);
649 ms.p_end = p + lp;
736 size_t srcl, lp; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 368 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
369 if (!lp.ignoreOffset) {
647 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
648 if (lp.alwaysShow && child.getVisibility() != GONE) {
650 heightUsed += lp.topMargin + child.getMeasuredHeight() + lp.bottomMargin;
659 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
660 if (!lp.alwaysShow && child.getVisibility() != GONE) {
662 heightUsed += lp.topMargin + child.getMeasuredHeight() + lp.bottomMargin
    [all...]
ActionBarView.java 250 ViewGroup.LayoutParams lp = mTabScrollView.getLayoutParams(); local
251 if (lp != null) {
252 lp.width = LayoutParams.WRAP_CONTENT;
253 lp.height = LayoutParams.MATCH_PARENT;
360 ViewGroup.LayoutParams lp = mTabScrollView.getLayoutParams(); local
361 lp.width = LayoutParams.WRAP_CONTENT;
362 lp.height = LayoutParams.MATCH_PARENT;
1022 final ViewGroup.LayoutParams lp = generateLayoutParams(customView.getLayoutParams()); local
1177 ViewGroup.LayoutParams lp = customView.getLayoutParams(); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 414 final LayoutParams lp = (LayoutParams) flp; local
415 if (lp.customPosition) {
416 child.layout(lp.x, lp.y, lp.x + lp.width, lp.y + lp.height);
445 LayoutParams lp = new LayoutParams(-1, -1); local
446 lp.customPosition = true
478 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java 363 final FrameLayout.LayoutParams lp = (LayoutParams) child local
368 lp.height);
379 final FrameLayout.LayoutParams lp = (LayoutParams) child local
384 lp.width);
1386 ViewGroup.LayoutParams lp = child.getLayoutParams(); local
1409 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 160 LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( local
181 activities.addView(view, lp);
196 receivers.addView(view, lp);
209 services.addView(view, lp);
222 providers.addView(view, lp);
235 instrumentation.addView(view, lp);
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 271 LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
272 if (lp.maxNumItemsOnRow < numItemsOnRow) {
661 LayoutParams lp = (LayoutParams) getChildAt(i).getLayoutParams(); local
663 lp.maxNumItemsOnRow = 1;
667 if (lp.desiredWidth < width / curNumItemsPerRow) {
669 lp.maxNumItemsOnRow = curNumItemsPerRow;
  /packages/apps/Browser/src/com/android/browser/
PieControl.java 88 LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, local
90 mPie.setLayoutParams(lp);
261 LayoutParams lp = new LayoutParams(mItemSize, mItemSize); local
262 view.setLayoutParams(lp);
277 LayoutParams lp = new LayoutParams(mItemSize, mItemSize); local
278 v.setLayoutParams(lp);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorGrad.java 154 LinearLayout lp = (LinearLayout) inflater.inflate( local
158 lp, MODE_CONTRAST);
160 lp, MODE_BRIGHTNESS);
162 lp, MODE_SATURATION);
163 lp.findViewById(R.id.gradAddButton).setOnClickListener(new OnClickListener() {
169 lp.findViewById(R.id.gradDelButton).setOnClickListener(new OnClickListener() {
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_CameraTests.cpp 106 long lp = (long)input_testing_image; local
118 return lp;
  /cts/tests/tests/view/src/android/view/cts/
ViewGroup_MarginLayoutParamsTest.java 69 ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(320, 480); local
70 mMarginLayoutParams = new ViewGroup.MarginLayoutParams(lp);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 113 AbsListView.LayoutParams lp = new AbsListView.LayoutParams( local
117 textView.setLayoutParams(lp);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.h 180 bool OnMessage(UINT msg, WPARAM wp, LPARAM lp, LRESULT* result);
182 static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
  /frameworks/base/core/java/android/view/animation/
LayoutAnimationController.java 369 ViewGroup.LayoutParams lp = view.getLayoutParams(); local
370 AnimationParameters params = lp.layoutAnimationParameters;

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>