Searched refs:lt (Results 1 - 8 of 8) sorted by relevance

/frameworks/native/include/ui/
H A DRect.h43 inline Rect(const Point& lt, const Point& rb) { argument
44 left = lt.x; top = lt.y; right = rb.x; bottom = rb.y;
84 void setLeftTop(const Point& lt) { argument
85 left = lt.x;
86 top = lt.y;
/frameworks/compile/mclinker/scripts/
H A Dnormal_files.sh32 if [ "${PADDING_LEN}" -lt "0" ]; then
42 elif [ "${PADDING_LEN}" -lt "0" ]; then # replace and strip padding
66 if [ "${PADDING_LEN}" -lt "0" ]; then
77 elif [ "${PADDING_LEN}" -lt "0" ]; then # replace and strip padding
115 elif [ "${NEW_SPACE}" -lt "0" ]; then # strip space
H A Dtest_files.sh63 elif [ "${NEW_SPACE}" -lt "0" ]; then # strip space
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c864 int32_t lt, rt, centerPlusRearContrib; // samples in Q19.12 format local
876 lt = (pSrc[0] << 12) + centerPlusRearContrib;
880 pDst[0] = clamp16(pDst[0] + (lt >> 13));
891 lt = (pSrc[0] << 12) + centerPlusRearContrib;
895 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
923 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
938 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
942 pDst[0] = clamp16(pDst[0] + (lt >> 13));
954 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
958 pDst[0] = clamp16(lt >> 1
986 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
1107 int32_t lt, rt, centersLfeContrib; // samples in Q19.12 format local
[all...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp210 vec2 lt( bounds.left, bounds.top );
215 lt = transform(lt);
220 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
221 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
222 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
223 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java528 LayoutTransition lt = new LayoutTransition();
529 lt.setDuration(250);
531 lt.setDuration(LayoutTransition.CHANGE_APPEARING, 0);
532 lt.setDuration(LayoutTransition.CHANGE_DISAPPEARING, 0);
533 lt.addTransitionListener(new LayoutTransition.TransitionListener() {
543 mNavigationArea.setLayoutTransition(lt);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java122 private static LatencyTimer lt; field in class:ViewRootImpl
362 if (lt == null) {
363 lt = new LatencyTimer(100, 1000);
3162 lt.sample("A Dispatching PointerEvents", System.nanoTime() - event.getEventTimeNano());
3174 lt.sample("B Dispatched PointerEvents ", System.nanoTime() - event.getEventTimeNano());
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs267 <span class="en">Re-using Layouts with &lt;include/&gt;</span>

Completed in 570 milliseconds