Searched defs:lt (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/docs/html/guide/
H A Dguide_toc.cs161 <li><a href="<?cs var:toroot ?>guide/topics/manifest/action-element.html">&lt;action&gt;</a></li> external variable declarations
162 <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-element.html">&lt;activity&gt;</a></li>
163 <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-alias-element.html">&lt;activity-alias&gt;</a></li>
164 <li><a href="<?cs var:toroot ?>guide/topics/manifest/application-element.html">&lt;application&gt;</a></li>
165 <li><a href="<?cs var:toroot ?>guide/topics/manifest/category-element.html">&lt;category&gt;</a></li>
166 <li><a href="<?cs var:toroot ?>guide/topics/manifest/compatible-screens-element.html">&lt;compatible-screens&gt;</a></li>
167 <li><a href="<?cs var:toroot ?>guide/topics/manifest/data-element.html">&lt;data&gt;</a></li>
168 <li><a href="<?cs var:toroot ?>guide/topics/manifest/grant-uri-permission-element.html">&lt;grant-uri-permission&gt;</a></li>
169 <li><a href="<?cs var:toroot ?>guide/topics/manifest/instrumentation-element.html">&lt;instrumentation&gt;</a></li>
170 <li><a href="<?cs var:toroot ?>guide/topics/manifest/intent-filter-element.html">&lt;inten
[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/include/ui/
H A DRect.h53 inline Rect(const Point& lt, const Point& rb) { argument
54 left = lt.x;
55 top = lt.y;
90 void setLeftTop(const Point& lt) { argument
91 left = lt.x;
92 top = lt.y;
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c834 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
849 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
853 pDst[0] = clamp16(pDst[0] + (lt >> 13));
865 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
869 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
897 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
914 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[6] << 12) + (pSrc[4] << 12);
918 pDst[0] = clamp16(pDst[0] + (lt >> 13));
930 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[6] << 12) + (pSrc[4] << 12);
934 pDst[0] = clamp16(lt >> 1
1018 int32_t lt, rt, centersLfeContrib; // samples in Q19.12 format local
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_ImageReader.cpp811 Point lt = buffer->crop.leftTop(); local
812 if (lt.x != 0 || lt.y != 0) {
814 "crop left top corner [%d, %d] need to be at origin", lt.x, lt.y);

Completed in 1494 milliseconds