HomeSort by relevance Sort by last modified time
    Searched defs:lp (Results 101 - 125 of 132) sorted by null

1 2 3 45 6

  /external/qemu/distrib/libpng-1.2.19/
pngrutil.c 3201 png_bytep lp = row; local
3231 png_bytep lp = row; local
3256 png_bytep lp = row; local
3763 png_bytep lp = row; local
3791 png_bytep lp = row; local
3815 png_bytep lp = row; local
    [all...]
  /frameworks/base/core/java/android/app/
SearchDialog.java 175 WindowManager.LayoutParams lp = theWindow.getAttributes(); local
176 lp.width = ViewGroup.LayoutParams.MATCH_PARENT;
180 lp.height = ViewGroup.LayoutParams.MATCH_PARENT;
181 lp.gravity = Gravity.TOP | Gravity.FILL_HORIZONTAL;
182 lp.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
183 theWindow.setAttributes(lp);
    [all...]
  /frameworks/base/core/java/android/webkit/
WebTextView.java 797 LayoutParams lp = (LayoutParams) getLayoutParams(); local
798 if (null == lp) {
799 lp = new LayoutParams(width, height, x, y);
801 lp.x = x;
802 lp.y = y;
803 lp.width = width;
804 lp.height = height;
807 mWebView.addView(this, lp);
809 setLayoutParams(lp);
    [all...]
  /frameworks/base/core/java/android/widget/
Gallery.java 772 Gallery.LayoutParams lp = (Gallery.LayoutParams) local
774 if (lp == null) {
775 lp = (Gallery.LayoutParams) generateDefaultLayoutParams();
778 addViewInLayout(child, fromLeft ? -1 : 0, lp);
784 mSpinnerPadding.top + mSpinnerPadding.bottom, lp.height);
786 mSpinnerPadding.left + mSpinnerPadding.right, lp.width);
    [all...]
HorizontalScrollView.java 317 final FrameLayout.LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
320 + mPaddingBottom, lp.height);
1049 ViewGroup.LayoutParams lp = child.getLayoutParams(); local
1065 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]
RelativeLayout.java 538 LayoutParams lp = (LayoutParams) mBaselineView.getLayoutParams(); local
539 if (params.mTop < lp.mTop || (params.mTop == lp.mTop && params.mLeft < lp.mLeft)) {
    [all...]
ScrollView.java 311 final FrameLayout.LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
314 + mPaddingRight, lp.width);
1048 ViewGroup.LayoutParams lp = child.getLayoutParams(); local
1064 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarService.java 330 WindowManager.LayoutParams lp = new WindowManager.LayoutParams( local
337 lp.gravity = Gravity.TOP | Gravity.FILL_HORIZONTAL;
338 lp.setTitle("StatusBar");
339 lp.windowAnimations = com.android.internal.R.style.Animation_StatusBar;
341 WindowManagerImpl.getDefault().addView(view, lp);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 252 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
253 if (lp.cellHSpan == 4 && lp.cellVSpan == 4 && child instanceof Folder) {
269 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
270 if (lp.cellHSpan == 4 && lp.cellVSpan == 4 && child instanceof Folder) {
375 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
376 if (lp == null) {
377 lp = new CellLayout.LayoutParams(x, y, spanX, spanY);
379 lp.cellX = x
1278 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
    [all...]
  /system/core/libcutils/
tztime.c 1406 register const struct lsinfo * lp; local
    [all...]
  /external/bluetooth/bluez/tools/
sdptool.c 2033 uint16_t lp = 0x000f, ver = 0x0100; local
2110 uint16_t lp = 0x000f, ver = 0x0100; local
2173 uint16_t lp = 0x000f, ver = 0x0100; local
2697 uint16_t lp = 0x0019, ver = 0x0100; local
2758 uint16_t lp = 0x0019, ver = 0x0100; local
2819 uint16_t lp = 0x0017, ver = 0x0100, feat = 0x000f; local
2883 uint16_t lp = 0x0017, ver = 0x0100, feat = 0x000f; local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 767 LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) local
772 lp.height = 0;
773 lp.weight = 1;
776 lp.height = LinearLayout.LayoutParams.WRAP_CONTENT;
777 lp.weight = 0;
780 mFullscreenArea, lp);
    [all...]
KeyboardView.java 894 LayoutParams lp = mPreviewText.getLayoutParams(); local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java 439 ViewGroup.LayoutParams lp = st.shownPanelView.getLayoutParams(); local
440 if (lp == null) {
441 lp = new ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT);
445 if (lp.width == ViewGroup.LayoutParams.MATCH_PARENT) {
457 st.decorView.addView(st.shownPanelView, lp);
471 WindowManager.LayoutParams lp = new WindowManager.LayoutParams( local
478 lp.gravity = st.gravity;
479 lp.windowAnimations = st.windowAnimations;
481 wm.addView(st.decorView, lp);
    [all...]
PhoneWindowManager.java 118 * introduces a new method suffix, Lp, for an internal lock of the
633 WindowManager.LayoutParams lp = new WindowManager.LayoutParams( local
636 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
637 lp.flags =
641 lp.format = PixelFormat.TRANSLUCENT;
642 lp.setTitle("PointerLocation");
645 wm.addView(addView, lp);
1546 WindowManager.LayoutParams lp = local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cmsccoll.c 386 ** lp points to the original locale ("fr_FR_....")
391 const char *lp = "fr_FR_you_ll_never_find_this_locale"; local
395 lr = ures_open(NULL,lp,&lec);
399 lp = ures_getLocaleByType(cr, ULOC_ACTUAL_LOCALE, &lec);
400 if (lp) {
402 if(strcmp(lp, "fr") != 0) {
403 log_err("Wrong locale for French Collation Data, expected \"fr\" got %s", lp);
    [all...]
  /external/chromium/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
2685 register const struct lookup * lp; local
    [all...]
  /external/icu4c/i18n/
decNumber.c 4889 uLong *lp; \/* .. *\/ local
    [all...]
  /external/icu4c/test/cintltst/
cmsccoll.c 386 ** lp points to the original locale ("fr_FR_....")
391 const char *lp = "fr_FR_you_ll_never_find_this_locale"; local
395 lr = ures_open(NULL,lp,&lec);
399 lp = ures_getLocaleByType(cr, ULOC_ACTUAL_LOCALE, &lec);
400 if (lp) {
402 if(strcmp(lp, "fr") != 0) {
403 log_err("Wrong locale for French Collation Data, expected \"fr\" got %s", lp);
    [all...]
  /external/icu4c/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
2674 register const struct lookup * lp; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 980 ListeningPointImpl lp = (ListeningPointImpl) this.sipProvider.getListeningPoint(hop local
1916 ListeningPointImpl lp = (ListeningPointImpl) this.sipProvider local
2435 ListeningPointImpl lp = (ListeningPointImpl) sipProvider.getListeningPoint(transport); local
    [all...]
  /external/qemu/
exec.c 315 PageDesc **lp, *p; local
316 lp = page_l1_map(index);
317 if (!lp)
320 p = *lp;
328 *lp = p;
337 *lp = p;
345 PageDesc **lp, *p; local
346 lp = page_l1_map(index);
347 if (!lp)
350 p = *lp;
359 void **lp, **p; local
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 3102 final LayoutParams lp = child.getLayoutParams(); local
3129 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboardBaseView.java 966 LayoutParams lp = mPreviewText.getLayoutParams(); local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 1229 WindowManager.LayoutParams lp = window.getAttributes(); local
    [all...]

Completed in 732 milliseconds

1 2 3 45 6