/frameworks/rs/cpu_ref/ |
D | rsCpuRuntimeStubs.cpp | 190 static void SC_debugLL64(const char *s, long long ll) { in SC_debugLL64() argument 191 ALOGD("long %s %lld 0x%llx", s, ll, ll); in SC_debugLL64() 193 static void SC_debugL2(const char *s, const long2 *ll) { in SC_debugL2() argument 194 ALOGD("long2 %s {%lld, %lld} 0x%llx 0x%llx", s, ll->x, ll->y, ll->x, ll->y); in SC_debugL2() 196 static void SC_debugL3(const char *s, const long3 *ll) { in SC_debugL3() argument 197 …D("long3 %s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->x, ll->y, ll->z… in SC_debugL3() 199 static void SC_debugL4(const char *s, const long4 *ll) { in SC_debugL4() argument 200 …lld, %lld, %lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->w, ll->x, ll->y, ll->z… in SC_debugL4() 202 static void SC_debugULL64(const char *s, unsigned long long ll) { in SC_debugULL64() argument 203 ALOGD("ulong %s %llu 0x%llx", s, ll, ll); in SC_debugULL64() [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/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/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/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/rs/driver/runtime/ |
D | Android.mk | 33 ll32/allocation.ll 36 ll64/allocation.ll 44 ll32/math.ll 48 ll64/math.ll 53 arch/neon.ll \ 58 arch/asimd.ll \ 64 arch/x86_sse2.ll \ 65 arch/x86_sse3.ll
|
D | build_bc_lib_internal.mk | 60 ll_sources := $(filter %.ll,$(bc_src_files)) 65 ll_bc_files := $(patsubst %.ll,%.bc, \ 78 $(ll_bc_files): $(intermediates)/%.bc: $(LOCAL_PATH)/%.ll $(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/rs/driver/ |
D | rsdRuntimeStubs.cpp | 1711 static void SC_debugLL64(const char *s, long long ll) { in SC_debugLL64() argument 1712 ALOGD("%s %lld 0x%llx", s, ll, ll); in SC_debugLL64() 1714 static void SC_debugL2(const char *s, long2 ll) { in SC_debugL2() argument 1715 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, ll.x, ll.y, ll.x, ll.y); in SC_debugL2() 1717 static void SC_debugL3(const char *s, long3 ll) { in SC_debugL3() argument 1718 ALOGD("%s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, ll.x, ll.y, ll.z, ll.x, ll.y, ll.z); in SC_debugL3() 1720 static void SC_debugL4(const char *s, long4 ll) { in SC_debugL4() argument 1721 …, %lld, %lld, %lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll.x, ll.y, ll.z, ll.w, ll.x, ll.y, ll.z, ll… in SC_debugL4() 1723 static void SC_debugULL64(const char *s, unsigned long long ll) { in SC_debugULL64() argument 1724 ALOGD("%s %llu 0x%llx", s, ll, ll); in SC_debugULL64() [all …]
|
/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/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/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/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/training/basics/firstapp/ |
D | index.jd | 27 <p>This class teaches you how to build your first Android app. You’ll learn how to create an Android 28 project and run a debuggable version of the app. You'll also learn some fundamentals of Android app 35 <li>Install the ADT plugin for Eclipse (if you’ll use the Eclipse IDE).</li>
|
/frameworks/compile/slang/tests/P_export_types/ |
D | export_types.rs | 14 long long ll = 34;
|
/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
|
/frameworks/compile/slang/tests/P_export_types_v20/ |
D | export_types.rs | 15 long long ll = 34;
|
/frameworks/compile/slang/tests/F_fs_types/ |
D | fs_types.fs | 29 int i = 1ll;
|
/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/compile/mclinker/lib/Script/ |
D | CMakeLists.txt | 5 FLEX_TARGET(LEXER ScriptScanner.ll ${CMAKE_CURRENT_BINARY_DIR}/ScriptScanner.cpp)
|