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

/frameworks/base/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;
77 void setLeftTop(const Point& lt) { argument
78 left = lt.x;
79 top = lt.y;
/frameworks/base/services/surfaceflinger/
H A DTransform.cpp245 vec2 lt( bounds.left, bounds.top );
250 lt = transform(lt);
255 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
256 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
257 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
258 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
/frameworks/base/core/java/android/view/
H A DViewRoot.java90 private static LatencyTimer lt; field in class:ViewRoot
244 if (MEASURE_LATENCY && lt == null) {
245 lt = new LatencyTimer(100, 1000);
2192 lt.sample("A Dispatching TouchEvents", System.nanoTime() - event.getEventTimeNano());
2196 lt.sample("B Dispatched TouchEvents ", System.nanoTime() - event.getEventTimeNano());

Completed in 63 milliseconds