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

/frameworks/native/include/ui/
H A DRect.h66 inline Rect(const Point& lt, const Point& rb) { argument
67 left = lt.x;
68 top = lt.y;
103 void setLeftTop(const Point& lt) { argument
104 left = lt.x;
105 top = lt.y;
/frameworks/rs/api/
H A DUtilities.cpp102 size_t lt = in.find('<', start); local
103 if (lt == string::npos) {
107 out += in.substr(start, lt - start);
108 if (isalpha(in[lt + 1]) || in[lt + 1] == '/') {
110 start = in.find('>', lt + 1);
119 out = stringReplace(out, "&lt;", "<");
H A Drs_math.spec491 if value &lt; min_value, max_value if value &gt; max_value, otherwise value.
933 Returns the maximum of a and b, i.e. <code>(a &lt; b ? b : a)</code>.
3040 if (v &lt; 0) return -1.f;
3181 Returns 0.f if v &lt; edge, 1.f otherwise.
3184 instructions. For example, instead of computing <code>(a[i] &lt; b[i]) ? 0.f : @atan2(a[i], b[i])</code>
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs164 <li><a href="<?cs var:toroot ?>guide/topics/manifest/action-element.html">&lt;action&gt;</a></li> external variable declarations
165 <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-element.html">&lt;activity&gt;</a></li>
166 <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-alias-element.html">&lt;activity-alias&gt;</a></li>
167 <li><a href="<?cs var:toroot ?>guide/topics/manifest/application-element.html">&lt;application&gt;</a></li>
168 <li><a href="<?cs var:toroot ?>guide/topics/manifest/category-element.html">&lt;category&gt;</a></li>
169 <li><a href="<?cs var:toroot ?>guide/topics/manifest/compatible-screens-element.html">&lt;compatible-screens&gt;</a></li>
170 <li><a href="<?cs var:toroot ?>guide/topics/manifest/data-element.html">&lt;data&gt;</a></li>
171 <li><a href="<?cs var:toroot ?>guide/topics/manifest/grant-uri-permission-element.html">&lt;grant-uri-permission&gt;</a></li>
172 <li><a href="<?cs var:toroot ?>guide/topics/manifest/instrumentation-element.html">&lt;instrumentation&gt;</a></li>
173 <li><a href="<?cs var:toroot ?>guide/topics/manifest/intent-filter-element.html">&lt;inten
[all...]
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c866 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
881 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
885 pDst[0] = clamp16(pDst[0] + (lt >> 13));
897 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
901 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
929 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
946 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[6] << 12) + (pSrc[4] << 12);
950 pDst[0] = clamp16(pDst[0] + (lt >> 13));
962 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[6] << 12) + (pSrc[4] << 12);
966 pDst[0] = clamp16(lt >> 1
1029 int32_t lt, rt, centersLfeContrib; // samples in Q19.12 format local
[all...]
/frameworks/base/tools/split-select/
H A DRuleGenerator.cpp60 sp<Rule> lt = new Rule(); local
61 lt->op = Rule::LESS_THAN;
62 lt->key = Rule::SCREEN_DENSITY;
63 lt->longArgs.add(findMid(allDensities[index], allDensities[index + 1]));
64 densityRule->subrules.add(lt);
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp202 vec2 lt( bounds.left, bounds.top );
207 lt = transform(lt);
212 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
213 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
214 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
215 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
H A DLayer.cpp1179 vec2 lt = vec2(win.left, win.top); local
1185 lt = s.active.transform.transform(lt);
1192 boundPoint(&lt, s.finalCrop);
1199 position[0] = tr.transform(lt);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java389 LayoutTransition lt = navButtons.getLayoutTransition();
390 if (lt != null) {
391 if (!lt.getTransitionListeners().contains(mTransitionListener)) {
392 lt.addTransitionListener(mTransitionListener);
429 LayoutTransition lt = navButtons.getLayoutTransition();
430 if (lt != null) {
432 lt.enableTransitionType(LayoutTransition.APPEARING);
433 lt.enableTransitionType(LayoutTransition.DISAPPEARING);
434 lt.enableTransitionType(LayoutTransition.CHANGE_APPEARING);
435 lt
[all...]
/frameworks/av/media/ndk/
H A DNdkImageReader.cpp284 Point lt = buffer->crop.leftTop(); local
285 if (lt.x != 0 || lt.y != 0) {
286 ALOGE("crop left top corner [%d, %d] need to be at origin", lt.x, lt.y);
/frameworks/base/media/jni/
H A Dandroid_media_ImageReader.cpp523 Point lt = buffer->mCrop.leftTop(); local
524 if (lt.x != 0 || lt.y != 0) {
526 "crop left top corner [%d, %d] need to be at origin", lt.x, lt.y);
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java241 final LayoutTransition lt = new LayoutTransition();
242 lt.setDuration(250);
243 mScoreFields.setLayoutTransition(lt);

Completed in 1017 milliseconds