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

/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/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.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;", "<");
/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/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/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/native/services/surfaceflinger/
H A DLayer.cpp1245 vec2 lt = vec2(win.left, win.top); local
1251 lt = s.active.transform.transform(lt);
1258 boundPoint(&lt, s.finalCrop);
1265 position[0] = tr.transform(lt);

Completed in 285 milliseconds