/frameworks/base/core/tests/coretests/src/android/os/ |
D | LocaleListTest.java | 28 LocaleList ll; in testConstructor() local 29 ll = new LocaleList(Locale.forLanguageTag("fr"), null); in testConstructor() 30 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 32 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.getEmptyLocaleList()); in testConstructor() 33 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 35 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("fr")); in testConstructor() 36 assertEquals("fr", ll.toLanguageTags()); in testConstructor() 38 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("de")); in testConstructor() 39 assertEquals("fr,de", ll.toLanguageTags()); in testConstructor() 41 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 | 1380 void rsDebug(const char *s, long long ll) { argument 1381 ALOGD("%s %lld 0x%llx", s, LL(ll), LL(ll)); 1385 long2 ll = *c; local 1386 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.x), LL(ll.y)); 1390 long3 ll = *c; local 1391 … {%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… 1395 long4 ll = *c; local 1396 …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… 1400 unsigned long long ll = l; local 1401 ALOGD("%s %llu 0x%llx", s, ll, ll); [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
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()
|
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()
|
/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 | 38 ll32/allocation.ll 41 ll64/allocation.ll 53 ll32/math.ll 57 ll64/math.ll 62 arch/neon.ll \ 67 arch/asimd.ll \ 73 arch/x86_sse2.ll \ 74 arch/x86_sse3.ll 176 LOCAL_SRC_FILES_64 += arch/asimd.ll arch/clamp.c
|
D | build_bc_lib_internal.mk | 63 ll_sources := $(filter %.ll,$(bc_src_files)) 68 ll_bc_files := $(patsubst %.ll,%.bc, \ 81 $(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/base/core/tests/coretests/src/android/widget/scroll/ |
D | ButtonsWithTallTextViewInBetween.java | 39 LinearLayout ll = getContentChildAt(2); in getBottomButton() local 40 return (Button) ll.getChildAt(0); in getBottomButton()
|
D | ShortButtons.java | 40 LinearLayout ll = getContentChildAt(3); in getButtonAt() local 41 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/compile/slang/tests/F_fs_types/ |
D | fs_types.fs | 29 int i = 1ll;
|
/frameworks/compile/slang/tests/P_export_types_v20/ |
D | export_types.rscript | 17 long long ll = 34;
|
/frameworks/compile/mclinker/lib/Script/ |
D | Android.bp | 30 "ScriptScanner.ll",
|
D | CMakeLists.txt | 5 FLEX_TARGET(LEXER ScriptScanner.ll ${CMAKE_CURRENT_BINARY_DIR}/ScriptScanner.cpp)
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | XmpDepthDecode.java | 233 int ll = is.read(); in parse() local 234 if (lh == -1 || ll == -1) { in parse() 237 int length = lh << 8 | ll; in parse()
|
/frameworks/compile/slang/tests/P_export_types/ |
D | export_types.rscript | 18 long long ll = 34;
|
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch/ |
D | reflection3264_foreach_mismatch.rscript | 52 void ll(const int *in) { } 55 void ll(const int *in, void *out) { }
|
/frameworks/base/tests/TelephonyCommonTests/ |
D | Android.bp | 35 // We need to rename SmsApplication to the test package or else it'll get clobbered by the
|
/frameworks/hardware/interfaces/bufferhub/1.0/ |
D | types.hal | 46 * in the handle may be exposed by ll-ndk clients but in a format that is
|
/frameworks/compile/libbcc/tests/libbcc/ |
D | lit.cfg | 12 config.suffixes = ['.ll']
|
/frameworks/base/startop/scripts/app_startup/ |
D | analyze_metrics.py | 266 ll, dat = tp 267 return ll[baseline_index] == baseline_value
|