HomeSort by relevance Sort by last modified time
    Searched defs:lp (Results 1 - 25 of 279) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/apps/Development/src/com/android/development/
PointerLocation.java 36 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
37 lp.screenBrightness = 1.0f;
38 getWindow().setAttributes(lp);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainder.c 38 u_int32_t sx,lx,lp; local
42 EXTRACT_WORDS(hp,lp,p);
48 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
51 (((hp-0x7ff00000)|lp)!=0)))
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /cts/tests/src/android/hardware/cts/
CameraStubActivity.java 37 ViewGroup.LayoutParams lp = mSurfaceView.getLayoutParams(); local
38 lp.width = LAYOUT_WIDTH;
39 lp.height = LAYOUT_HEIGHT;
40 mSurfaceView.setLayoutParams(lp);
  /external/fdlibm/
e_remainder.c 40 unsigned sx,lx,lp; local
46 lp = __LO(p); /* low word of p */
52 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
55 (((hp-0x7ff00000)|lp)!=0)))
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /external/mksh/src/
lalloc.c 46 void *lp; local
57 *lpp = (lp = ptr - ALLOC_SIZE);
59 while (ap->next != lp)
87 ALLOC_ITEM *lp = NULL; local
93 pp = findptr(&lp, ptr, ap);
94 pp->next = lp->next;
98 (lp = remalloc(lp, numb + ALLOC_SIZE)) == NULL
100 || ALLOC_ISUNALIGNED(lp)
105 lp->next = ap->next
115 ALLOC_ITEM *lp, *pp; local
128 ALLOC_ITEM *lp; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/preference/
ListPreferenceTest.java 26 ListPreference lp = new ListPreference(getContext()); local
27 lp.setEntries(entries);
28 lp.setEntryValues(entryValues);
30 lp.setValue(entryValues[1]);
31 assertTrue(lp.getSummary() == null);
33 lp.setSummary("%1$s");
34 assertEquals(entries[1], lp.getSummary());
36 lp.setValue(entryValues[2]);
37 assertEquals(entries[2], lp.getSummary());
39 lp.setSummary(null)
    [all...]
  /external/clang/test/Sema/
overloadable-complex.c 18 int *lp = foo(dc); local
27 long *lp = foo(dc); local
  /external/clang/test/SemaCXX/
complex-overload.cpp 18 int *lp = foo(dc); local
27 long *lp = foo(dc); local
  /external/libvpx/libvpx/vp8/common/
reconintra4x4.c 105 unsigned int lp[4]; local
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[0] + 2 * Left[1] + Left[2] + 2) >> 2;
108 lp[2] = (Left[1] + 2 * Left[2] + Left[3] + 2) >> 2;
109 lp[3] = (Left[2] + 2 * Left[3] + Left[3] + 2) >> 2;
115 dst[c] = lp[r];
  /frameworks/base/core/tests/coretests/src/android/view/
IncludeTest.java 75 final ViewGroup.LayoutParams lp = button1.getLayoutParams(); local
76 assertEquals("Included button should be 23dip x 23dip", 23, lp.width);
77 assertEquals("Included button should be 23dip x 23dip", 23, lp.height);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemsExpandOnSelection.java 46 final AbsListView.LayoutParams lp = new AbsListView.LayoutParams( local
49 result.setLayoutParams(lp);
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 38 GridLayout.LayoutParams lp = new GridLayout.LayoutParams(rowSpec, colSpec); local
39 //GridLayout.LayoutParams lp = new GridLayout.LayoutParams();
40 lp.setGravity(va | ha);
42 container.addView(v, lp);
LayoutInsetsTest.java 43 LayoutParams lp = new LayoutParams(); local
44 lp.setGravity(GRAVITIES[(i % N)]);
45 p.addView(c, lp);
LinearLayoutTest.java 36 LayoutParams lp = new LayoutParams(WRAP_CONTENT, WRAP_CONTENT); local
37 lp.gravity = va | ha;
39 container.addView(v, lp);
  /frameworks/support/v4/java/android/support/v4/app/
NoSaveStateFrameLayout.java 37 NoSaveStateFrameLayout.LayoutParams lp = new NoSaveStateFrameLayout.LayoutParams( local
39 child.setLayoutParams(lp);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ViewLayoutUtils.java 44 final ViewGroup.LayoutParams lp = view.getLayoutParams(); local
45 if (lp instanceof MarginLayoutParams) {
46 final MarginLayoutParams marginLayoutParams = (MarginLayoutParams)lp;
  /packages/apps/Browser/src/com/android/browser/preferences/
AdvancedPreferencesFragment.java 130 ListPreference lp = (ListPreference) pref; local
131 lp.setValue((String) objValue);
132 updateListPreferenceSummary(lp);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotificationDisplay.java 56 RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( local
59 lp.addRule(RelativeLayout.CENTER_IN_PARENT);
61 container.addView(button, lp);
  /external/openssl/crypto/des/
qud_cksm.c 84 struct lp_st { int a:32; int b:32; } *lp; local
86 DES_LONG *lp; local
91 lp = (struct lp_st *) &(output[0])[0];
93 lp = (DES_LONG *) &(output[0])[0];
123 if (lp != NULL)
128 (*lp).a = z0;
129 (*lp).b = z1;
130 lp++;
132 *lp++ = z0;
133 *lp++ = z1
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 39 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
40 lp.token = token;
41 getWindow().setAttributes(lp);
95 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
97 if (lp.gravity == Gravity.TOP || lp.gravity == Gravity.BOTTOM) {
98 return lp.height;
100 return lp.width;
114 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
116 if (lp.gravity == Gravity.TOP || lp.gravity == Gravity.BOTTOM)
135 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
152 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextGammaActivity.java 92 final LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( local
95 lp.setMargins(0, 74, 0, 0);
96 layout.addView(gamma, lp);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
EllipsizeLayout.java 50 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child local
52 outOfSpec |= (lp.weight > 0f);
54 totalLength += child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BasicSlider.java 43 LinearLayout lp = (LinearLayout) inflater.inflate( local
45 mSeekBar = (SeekBar) lp.findViewById(R.id.primarySeekBar);
  /packages/apps/Launcher2/src/com/android/launcher2/
ShortcutAndWidgetContainer.java 64 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
66 if ((lp.cellX <= x) && (x < lp.cellX + lp.cellHSpan) &&
67 (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) {
84 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
86 canvas.drawRect(lp.x, lp.y, lp.x + lp.width, lp.y + lp.height, p)
117 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
140 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
    [all...]
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
Bummer.java 54 final FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams( local
59 mFrame.addView(mApology, lp);

Completed in 2365 milliseconds

1 2 3 4 5 6 7 8 91011>>