Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 51) sorted by relevance

123

/frameworks/base/core/tests/coretests/src/android/os/
DLocaleListTest.java28 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/
DAnalyticsState.h93 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 …]
DTransactionLog.h138 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 …]
DHeatMap.h206 int32_t ll = lines; variable
208 if (ll > 0) {
210 --ll;
214 if (ll <= 0) break;
216 --ll;
218 return { ss.str(), lines - ll };
DTimeMachine.h166 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/
DListItemFactory.java48 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 …]
DScrollViewScenario.java175 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/
DrsdRuntimeStubs.cpp1380 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/
DVerticalFocusSearch.java133 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()
DHorizontalFocusSearch.java117 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/
DListItemISVAndButton.java45 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()
DAdjacentListsWithAdjacentISVsInside.java93 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/
DAndroid.mk38 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
Dbuild_bc_lib_internal.mk63 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/
DSyncActivityTooManyDeletes.java84 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/
DButtonsWithTallTextViewInBetween.java39 LinearLayout ll = getContentChildAt(2); in getBottomButton() local
40 return (Button) ll.getChildAt(0); in getBottomButton()
DShortButtons.java40 LinearLayout ll = getContentChildAt(3); in getButtonAt() local
41 return (Button) ll.getChildAt(index - 3); in getButtonAt()
/frameworks/base/core/jni/
DBindTest.cpp157 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/
DTileRequestDialog.kt48 val ll = (LayoutInflater in setTileData() constant
65 setView(ll, spacing, spacing, spacing, spacing / 2) in setTileData()
/frameworks/compile/slang/tests/F_fs_types/
Dfs_types.fs29 int i = 1ll;
/frameworks/base/services/incremental/
Dpath.cpp37 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/
Dexport_types.rscript17 long long ll = 34;
/frameworks/av/services/mediametrics/
DAudioAnalytics.cpp529 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/
DCMakeLists.txt5 FLEX_TARGET(LEXER ScriptScanner.ll ${CMAKE_CURRENT_BINARY_DIR}/ScriptScanner.cpp)
/frameworks/compile/slang/tests/P_export_types/
Dexport_types.rscript18 long long ll = 34;

123