/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/av/services/mediametrics/include/mediametricsservice/ |
D | AnalyticsState.h | 93 int32_t ll = lines; variable 95 if (ll > 0) { 97 --ll; 99 if (ll > 0) { 100 auto [s, l] = mTransactionLog.dump(ll, sinceNs, prefix); 102 ll -= l; 104 if (ll > 0) { 106 --ll; 108 if (ll > 0) { 109 auto [s, l] = mTimeMachine.dump(ll, sinceNs, prefix); [all …]
|
D | TransactionLog.h | 138 int32_t ll = lines; variable 142 if (ll > 0) { 144 --ll; 146 auto [s, l] = dumpMapTimeItem(mLog, ll, sinceNs, prefix); 148 ll -= l; 151 if (ll > 0) { 153 --ll; 159 if (ll <= 0) break; 161 std::tie(s, l) = dumpMapTimeItem(it->second, ll - 1, sinceNs, prefix); 164 ll -= l + 1; [all …]
|
D | HeatMap.h | 206 int32_t ll = lines; variable 208 if (ll > 0) { 210 --ll; 214 if (ll <= 0) break; 216 --ll; 218 return { ss.str(), lines - ll };
|
D | TimeMachine.h | 166 int32_t ll = lines; in dump() local 168 if (ll <= 0) break; in dump() 171 --ll; in dump() 175 return { ss.str(), lines - ll }; in dump() 443 int32_t ll = lines; variable 448 if (ll <= 0) break; 451 auto [s, l] = it->second->dump(ll, sinceNs); 453 ll -= l; 455 return { ss.str(), lines - ll };
|
/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 | 93 final LinearLayout ll = new LinearLayout(views[0].getContext()); in combineAdjacent() local 94 ll.setOrientation(LinearLayout.HORIZONTAL); in combineAdjacent() 99 ll.addView(view, lp); in combineAdjacent() 101 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 194 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/base/packages/SystemUI/src/com/android/systemui/qs/external/ |
D | TileRequestDialog.kt | 48 val ll = (LayoutInflater in setTileData() constant 65 setView(ll, spacing, spacing, spacing, spacing / 2) in setTileData()
|
/frameworks/compile/slang/tests/F_fs_types/ |
D | fs_types.fs | 29 int i = 1ll;
|
/frameworks/base/services/incremental/ |
D | path.cpp | 37 int ll = l == '/' ? std::numeric_limits<char>::min() - 1 : l; in operator ()() local 39 return ll < rr; in operator ()()
|
/frameworks/compile/slang/tests/P_export_types_v20/ |
D | export_types.rscript | 17 long long ll = 34;
|
/frameworks/av/services/mediametrics/ |
D | AudioAnalytics.cpp | 529 int32_t ll = lines; in dump() local 531 if (ll > 0) { in dump() 532 auto [s, l] = mAnalyticsState->dump(ll, sinceNs, prefix); in dump() 534 ll -= l; in dump() 536 if (ll > 0) { in dump() 538 --ll; in dump() 540 if (ll > 0) { in dump() 541 auto [s, l] = mPreviousAnalyticsState->dump(ll, sinceNs, prefix); in dump() 543 ll -= l; in dump() 546 if (ll > 0 && prefix == nullptr) { in dump() [all …]
|
/frameworks/compile/mclinker/lib/Script/ |
D | CMakeLists.txt | 5 FLEX_TARGET(LEXER ScriptScanner.ll ${CMAKE_CURRENT_BINARY_DIR}/ScriptScanner.cpp)
|
/frameworks/compile/slang/tests/P_export_types/ |
D | export_types.rscript | 18 long long ll = 34;
|