/frameworks/base/core/tests/coretests/src/android/os/ |
D | LocaleListTest.java | 27 LocaleList ll; in testConstructor() local 28 ll = new LocaleList(Locale.forLanguageTag("fr"), null); in testConstructor() 29 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 31 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.getEmptyLocaleList()); in testConstructor() 32 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 34 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("fr")); in testConstructor() 35 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 37 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("de")); in testConstructor() 38 assertEquals("fr,de", ll.toLanguageTags()); in testConstructor() 40 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("de,ja")); in testConstructor() [all …]
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | ListItemFactory.java | 48 final LinearLayout ll = new LinearLayout(context); in twoButtonsSeparatedByFiller() local 49 ll.setOrientation(LinearLayout.VERTICAL); in twoButtonsSeparatedByFiller() 60 ll.addView(topButton); in twoButtonsSeparatedByFiller() 67 ll.addView(middleFiller); in twoButtonsSeparatedByFiller() 72 ll.addView(bottomButton); in twoButtonsSeparatedByFiller() 73 ll.setTag("twoButtons"); in twoButtonsSeparatedByFiller() 74 return ll; in twoButtonsSeparatedByFiller() 93 final LinearLayout ll = new LinearLayout(context); in horizontalButtonSlots() local 94 ll.setOrientation(LinearLayout.HORIZONTAL); in horizontalButtonSlots() 121 ll.addView(button, lp); in horizontalButtonSlots() [all …]
|
D | ScrollViewScenario.java | 175 final LinearLayout ll = new LinearLayout(context); in addVerticalLLOfButtons() 176 ll.setOrientation(LinearLayout.VERTICAL); in addVerticalLLOfButtons() 185 ll.addView(button, lp); in addVerticalLLOfButtons() 188 return ll; in addVerticalLLOfButtons()
|
/frameworks/rs/driver/ |
D | rsdRuntimeStubs.cpp | 1319 void rsDebug(const char *s, long long ll) { argument 1320 ALOGD("%s %lld 0x%llx", s, LL(ll), LL(ll)); 1324 long2 ll = *c; local 1325 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.x), LL(ll.y)); 1329 long3 ll = *c; local 1330 … {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.x), LL(ll.y), L… 1334 long4 ll = *c; local 1335 …d} 0x%llx 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.w), LL(ll.x), LL(ll.y), L… 1339 unsigned long long ll = l; local 1340 ALOGD("%s %llu 0x%llx", s, ll, ll); [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
D | HorizontalFocusSearch.java | 117 LinearLayout ll = new LinearLayout(this); in addShort() local 118 ll.setOrientation(LinearLayout.VERTICAL); in addShort() 119 ll.setLayoutParams(new LinearLayout.LayoutParams( in addShort() 124 ll.addView(filler); in addShort() 125 ll.addView(button); in addShort() 126 root.addView(ll); in addShort() 128 ll.addView(button); in addShort() 129 ll.addView(filler); in addShort() 130 root.addView(ll); in addShort()
|
D | VerticalFocusSearch.java | 133 LinearLayout ll = new LinearLayout(this); in addSkinny() local 134 ll.setOrientation(LinearLayout.HORIZONTAL); in addSkinny() 135 ll.setLayoutParams(new LinearLayout.LayoutParams( in addSkinny() 140 ll.addView(filler); in addSkinny() 141 ll.addView(button); in addSkinny() 142 root.addView(ll); in addSkinny() 144 ll.addView(button); in addSkinny() 145 ll.addView(filler); in addSkinny() 146 root.addView(ll); in addSkinny()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | pp_semaphore_luma.cpp | 117 int *ll, /* i */ in pp_semaphore_luma() argument 228 pp_dec_y += ll[kk]; in pp_semaphore_luma() 229 pp_prev1 += ll[kk]; in pp_semaphore_luma() 230 pp_prev2 += ll[kk]; in pp_semaphore_luma() 231 pp_prev3 += ll[kk]; in pp_semaphore_luma() 232 pp_prev4 += ll[kk]; in pp_semaphore_luma() 366 pp_dec_y += ll[kk]; in pp_semaphore_luma()
|
D | mb_motion_comp.cpp | 157 int ll[4]; in MBMotionComp() local 404 ll[0] = 1; in MBMotionComp() 405 ll[1] = mvwidth - 1; in MBMotionComp() 406 ll[2] = 1; in MBMotionComp() 407 ll[3] = -mvwidth - 1; in MBMotionComp() 409 video->pstprcTypPrv, ll, &tmp, px[0], py[0], mvwidth, in MBMotionComp()
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
D | ListItemISVAndButton.java | 45 final LinearLayout ll = new LinearLayout(context); in createView() local 46 ll.setOrientation(LinearLayout.VERTICAL); in createView() 52 ll.addView(isv); in createView() 62 ll.addView(topButton); in createView() 69 ll.addView(filler); in createView() 72 return ll; in createView()
|
D | AdjacentListsWithAdjacentISVsInside.java | 90 final LinearLayout ll = new LinearLayout(views[0].getContext()); in combineAdjacent() local 91 ll.setOrientation(LinearLayout.HORIZONTAL); in combineAdjacent() 96 ll.addView(view, lp); in combineAdjacent() 98 return ll; in combineAdjacent()
|
/frameworks/rs/driver/runtime/ |
D | Android.mk | 37 ll32/allocation.ll 40 ll64/allocation.ll 51 ll32/math.ll 55 ll64/math.ll 60 arch/neon.ll \ 65 arch/asimd.ll \ 71 arch/x86_sse2.ll \ 72 arch/x86_sse3.ll
|
D | build_bc_lib_internal.mk | 72 ll_sources := $(filter %.ll,$(bc_src_files)) 77 ll_bc_files := $(patsubst %.ll,%.bc, \ 91 $(ll_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.ll $(RS_LLVM_AS)
|
/frameworks/base/core/java/android/content/ |
D | SyncActivityTooManyDeletes.java | 84 final LinearLayout ll = new LinearLayout(this); in onCreate() local 85 ll.setOrientation(LinearLayout.VERTICAL); in onCreate() 88 ll.addView(textView, lp); in onCreate() 89 ll.addView(listView, lp); in onCreate() 106 setContentView(ll); in onCreate()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | FragmentTabHost.java | 152 LinearLayout ll = new LinearLayout(context); in ensureHierarchy() local 153 ll.setOrientation(LinearLayout.VERTICAL); in ensureHierarchy() 154 addView(ll, new FrameLayout.LayoutParams( in ensureHierarchy() 161 ll.addView(tw, new LinearLayout.LayoutParams( in ensureHierarchy() 167 ll.addView(fl, new LinearLayout.LayoutParams(0, 0, 0)); in ensureHierarchy() 171 ll.addView(fl, new LinearLayout.LayoutParams( in ensureHierarchy()
|
/frameworks/support/v13/java/android/support/v13/app/ |
D | FragmentTabHost.java | 144 LinearLayout ll = new LinearLayout(context); in ensureHierarchy() local 145 ll.setOrientation(LinearLayout.VERTICAL); in ensureHierarchy() 146 addView(ll, new FrameLayout.LayoutParams( in ensureHierarchy() 153 ll.addView(tw, new LinearLayout.LayoutParams( in ensureHierarchy() 159 ll.addView(fl, new LinearLayout.LayoutParams(0, 0, 0)); in ensureHierarchy() 163 ll.addView(fl, new LinearLayout.LayoutParams( in ensureHierarchy()
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
D | ButtonsWithTallTextViewInBetween.java | 40 LinearLayout ll = getContentChildAt(2); in getBottomButton() local 41 return (Button) ll.getChildAt(0); in getBottomButton()
|
D | ShortButtons.java | 41 LinearLayout ll = getContentChildAt(3); in getButtonAt() local 42 return (Button) ll.getChildAt(index - 3); in getButtonAt()
|
/frameworks/base/core/jni/ |
D | BindTest.cpp | 157 long long ll = JARG_get_long_long(5+2); in setAll() local 166 JOBJ_set_long_long(jthis, offset_mLong, ll); in setAll() 182 long long ll = JARG_get_long_long(5+2); in compareAll() local 204 && (ll == JOBJ_get_long_long(jthis, offset_mLong)); in compareAll()
|
/frameworks/base/docs/html/preview/ |
D | overview.jd | 73 …We’ll provide monthly updates during the Preview, so you’ll be testing against the latest platform… 83 During the first several weeks we’ll give priority to developer-reported 150 At key development milestones, we’ll deliver updates for your development and 180 At <strong>previews 4 and 5</strong> you’ll have access to the <strong>final 188 Also starting in preview 4, you’ll be able to <strong>publish apps to 206 We’ll notify you when preview updates are available via the <a href= 233 We’ll provide updates to these development tools at each milestone as needed. 246 We’ll deliver updated system images for these devices at each milestone. You 270 Beta Program</a> site. You’ll 289 installing them as soon as possible. You’ll want to stay current with the [all …]
|
/frameworks/base/docs/html/wear/preview/ |
D | program.jd | 38 We'll provide frequent updates during the preview, so you'll be 49 During the first several weeks, we'll give priority to 97 At key development milestones, we'll deliver updates for your development 139 At milestones 4 and 5 you'll have access to the final Android Wear 2.0 153 We'll notify you when updates are available via the Android Developers 190 We'll provide updates to these development tools at each milestone as
|
/frameworks/base/docs/html/training/basics/firstapp/ |
D | index.jd | 26 <p>This class teaches you how to build your first Android app. You’ll learn how to create an Android 27 project and run a debuggable version of the app. You'll also learn some fundamentals of Android app
|
/frameworks/base/docs/html/guide/topics/media/ |
D | audio-capture.jd | 222 LinearLayout ll = new LinearLayout(this); 224 ll.addView(mRecordButton, 230 ll.addView(mPlayButton, 235 setContentView(ll);
|
/frameworks/base/docs/html/distribute/googleplay/ |
D | start.jd | 89 <li>When your registration is verified, you’ll be notified at the email 103 If you want to sell priced apps, in-app products, or subscriptions, you’ll 129 This takes you to the Google payments site; you'll need information about your
|
/frameworks/compile/slang/tests/F_fs_types/ |
D | fs_types.fs | 29 int i = 1ll;
|
/frameworks/base/docs/html/training/ |
D | building-connectivity.jd | 9 You'll learn how to connect to other devices in the area, connect to the Internet, backup and
|