Home
last modified time | relevance | path

Searched refs:me (Results 1 – 25 of 89) sorted by relevance

1234

/frameworks/av/media/libstagefright/
DSimpleDecodingSource.cpp109 Mutexed<ProtectedState>::Locked me(mProtectedState); in start() local
110 if (me->mState != INIT) { in start()
119 me->mState = STARTED; in start()
120 me->mQueuedInputEOS = false; in start()
121 me->mGotOutputEOS = false; in start()
123 me->mState = ERROR; in start()
130 Mutexed<ProtectedState>::Locked me(mProtectedState); in stop() local
131 if (me->mState != STARTED) { in stop()
136 me->mState = STOPPING; in stop()
137 while (me->mReading) { in stop()
[all …]
/frameworks/compile/libbcc/lib/Renderscript/
DRSEmbedInfo.cpp68 bcinfo::MetadataExtractor me(module); in getRSInfoString() local
69 if (!me.extract()) { in getRSInfoString()
74 size_t exportVarCount = me.getExportVarCount(); in getRSInfoString()
75 size_t exportFuncCount = me.getExportFuncCount(); in getRSInfoString()
76 size_t exportForEachCount = me.getExportForEachSignatureCount(); in getRSInfoString()
77 size_t exportReduceCount = me.getExportReduceCount(); in getRSInfoString()
78 size_t objectSlotCount = me.getObjectSlotCount(); in getRSInfoString()
79 size_t pragmaCount = me.getPragmaCount(); in getRSInfoString()
80 const char **exportVarNameList = me.getExportVarNameList(); in getRSInfoString()
81 const char **exportFuncNameList = me.getExportFuncNameList(); in getRSInfoString()
[all …]
DRSCompilerDriver.cpp99 bcinfo::MetadataExtractor me(&pScript.getSource().getModule()); in setupConfig() local
100 if (!me.extract()) { in setupConfig()
104 bool script_full_prec = (me.getRSFloatPrecision() == bcinfo::RS_FP_Full); in setupConfig()
401 bcinfo::MetadataExtractor me(&module); in buildScriptGroup() local
402 me.extract(); in buildScriptGroup()
403 if (me.getRSFloatPrecision() == bcinfo::RS_FP_Relaxed) { in buildScriptGroup()
/frameworks/av/media/libstagefright/omx/
DSoftOMXComponent.cpp116 SoftOMXComponent *me = in SendCommandWrapper() local
120 return me->sendCommand(cmd, param, data); in SendCommandWrapper()
128 SoftOMXComponent *me = in GetParameterWrapper() local
132 return me->getParameter(index, params); in GetParameterWrapper()
140 SoftOMXComponent *me = in SetParameterWrapper() local
144 return me->setParameter(index, params); in SetParameterWrapper()
152 SoftOMXComponent *me = in GetConfigWrapper() local
156 return me->getConfig(index, params); in GetConfigWrapper()
164 SoftOMXComponent *me = in SetConfigWrapper() local
168 return me->setConfig(index, params); in SetConfigWrapper()
[all …]
DSoftOMXPlugin.cpp140 SoftOMXComponent *me = in destroyComponentInstance() local
144 me->prepareForDestruction(); in destroyComponentInstance()
146 void *libHandle = me->libHandle(); in destroyComponentInstance()
148 CHECK_EQ(me->getStrongCount(), 1); in destroyComponentInstance()
149 me->decStrong(this); in destroyComponentInstance()
150 me = NULL; in destroyComponentInstance()
/frameworks/compile/slang/tests/P_reduce_general_examples/
Dreduce_general_examples.rs62 IndexedVal me;
63 me.val = in;
64 me.idx = x;
66 if (me.val < accum->min.val)
67 accum->min = me;
68 if (me.val > accum->max.val)
69 accum->max = me;
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
Dreduce_backward.rs37 IndexedVal me;
38 me.val = in;
39 me.idx = x;
41 if (me.val < accum->min.val)
42 accum->min = me;
43 if (me.val > accum->max.val)
44 accum->max = me;
Dreduce.rs41 IndexedVal me;
42 me.val = in;
43 me.idx = x;
45 if (me.val < accum->min.val)
46 accum->min = me;
47 if (me.val > accum->max.val)
48 accum->max = me;
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dreduce_backward.rs35 IndexedVal me;
36 me.val = in;
37 me.idx = x;
39 if (me.val < accum->min.val)
40 accum->min = me;
41 if (me.val > accum->max.val)
42 accum->max = me;
Dreduce.rs40 IndexedVal me;
41 me.val = in;
42 me.idx = x;
44 if (me.val < accum->min.val)
45 accum->min = me;
46 if (me.val > accum->max.val)
47 accum->max = me;
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
Dreduce_general_examples_backward.rs58 IndexedVal me;
59 me.val = in;
60 me.idx = x;
62 if (me.val < accum->min.val)
63 accum->min = me;
64 if (me.val > accum->max.val)
65 accum->max = me;
/frameworks/compile/libbcc/lib/Core/
DCompiler.cpp323 bcinfo::MetadataExtractor me(&module); in addInternalizeSymbolsPass() local
324 if (!me.extract()) { in addInternalizeSymbolsPass()
353 size_t exportVarCount = me.getExportVarCount(); in addInternalizeSymbolsPass()
354 size_t exportFuncCount = me.getExportFuncCount(); in addInternalizeSymbolsPass()
355 size_t exportForEachCount = me.getExportForEachSignatureCount(); in addInternalizeSymbolsPass()
356 size_t exportReduceCount = me.getExportReduceCount(); in addInternalizeSymbolsPass()
357 const char **exportVarNameList = me.getExportVarNameList(); in addInternalizeSymbolsPass()
358 const char **exportFuncNameList = me.getExportFuncNameList(); in addInternalizeSymbolsPass()
359 const char **exportForEachNameList = me.getExportForEachNameList(); in addInternalizeSymbolsPass()
360 const bcinfo::MetadataExtractor::Reduce *exportReduceList = me.getExportReduceList(); in addInternalizeSymbolsPass()
/frameworks/base/core/java/android/os/
DLooper.java124 final Looper me = myLooper(); in loop() local
125 if (me == null) { in loop()
128 final MessageQueue queue = me.mQueue; in loop()
143 final Printer logging = me.mLogging; in loop()
149 final long traceTag = me.mTraceTag; in loop()
/frameworks/base/docs/html/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">Enchant Me</h2>
20 <h4 id="delight-me">Delight me in surprising ways</h4>
55 <h4 id="make-it-mine">Let me make it mine</h4>
73 <h4 id="get-to-know-me">Get to know me</h4>
123 <h4 id="decide-for-me">Decide for me but let me have the final say</h4>
209 <h4 id="interrupt-only-if-important">Only interrupt me if it's important</h4>
221 <h2 id="make-me-amazing">Make Me Amazing</h2>
226 <h4 id="give-me-tricks">Give me tricks that work everywhere</h4>
279 <h4 id="do-heavy-lifting-for-me">Do the heavy lifting for me</h4>
/frameworks/base/docs/html-intl/intl/ru/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">Постарайтесь понравиться пользователю</h2>
20 <h4 id="delight-me">Вызовите у пользователя восхищение неожиданными решениями</h4>
73 <h4 id="get-to-know-me">Изучите пользователя</h4>
123 <h4 id="decide-for-me">Принимайте решения за пользователя, но оставляйте последнее слово за ним</h4>
221 <h2 id="make-me-amazing">Постарайтесь приятно удивить пользователя</h2>
226 <h4 id="give-me-tricks">Предоставьте пользователю привычные приемы</h4>
279 <h4 id="do-heavy-lifting-for-me">Выполняйте за пользователя черную работу</h4>
/frameworks/base/docs/html-intl/intl/zh-cn/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">让我着迷</h2>
20 <h4 id="delight-me">以意想不到的方式让我眼前一亮</h4>
73 <h4 id="get-to-know-me">让应用了解我</h4>
123 <h4 id="decide-for-me">为我决定,但最终由我做主</h4>
221 <h2 id="make-me-amazing">给我惊喜</h2>
226 <h4 id="give-me-tricks">到处为我提供有用的诀窍</h4>
279 <h4 id="do-heavy-lifting-for-me">为我处理繁重事务</h4>
/frameworks/base/docs/html-intl/intl/ja/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">ユーザーを引きつける</h2>
20 <h4 id="delight-me">サプライズで楽しませる</h4>
73 <h4 id="get-to-know-me">ユーザーの好みを学習</h4>
123 <h4 id="decide-for-me">選択は最小限に、最終決定はユーザーに</h4>
221 <h2 id="make-me-amazing">操作を楽しく</h2>
226 <h4 id="give-me-tricks">あらゆる場所に工夫を凝らす</h4>
279 <h4 id="do-heavy-lifting-for-me">手間のかかる作業は不要</h4>
/frameworks/base/docs/html-intl/intl/ko/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">황홀하게 만들기</h2>
20 <h4 id="delight-me">놀라운 방식으로 기쁨을 주기</h4>
73 <h4 id="get-to-know-me">사용자에 대해 파악하기</h4>
123 <h4 id="decide-for-me">사용자를 대신해서 결정해 주되 최종 결정권은 사용자에게 주기</h4>
221 <h2 id="make-me-amazing">사용자를 놀래킬 수 있는 환경 만들기</h2>
226 <h4 id="give-me-tricks">어디서든 적용될 수 있는 팁 제공하기</h4>
279 <h4 id="do-heavy-lifting-for-me">힘든 건 대신해주기</h4>
/frameworks/base/docs/html-intl/intl/zh-tw/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">使人著迷</h2>
20 <h4 id="delight-me">以出乎意外的方式取悅人</h4>
73 <h4 id="get-to-know-me">設法了解使用者</h4>
123 <h4 id="decide-for-me">幫使用者決定,但使用者擁有最終決定權</h4>
221 <h2 id="make-me-amazing">讓使用者驚艷</h2>
226 <h4 id="give-me-tricks">提供使用者各處通用的訣竅</h4>
279 <h4 id="do-heavy-lifting-for-me">為使用者處理繁重的工作</h4>
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
DMultipartTest.java50 MultipartEntity me = new MultipartEntity(parts); in testParts() local
52 me.writeTo(os); in testParts()
53 Header h = me.getContentType(); in testParts()
54 String boundry = EncodingUtils.getAsciiString(me.getMultipartBoundary()); in testParts()
/frameworks/base/core/java/com/android/internal/util/
DCharSequences.java117 public static int compareToIgnoreCase(CharSequence me, CharSequence another) {
119 int myLen = me.length(), anotherLen = another.length();
124 if ((result = Character.toLowerCase(me.charAt(myPos++))
/frameworks/base/docs/html-intl/intl/pt-br/design/get-started/
Dprinciples.jd15 <h2 id="enchant-me">Encante-me</h2>
20 <h4 id="delight-me">Agrade-me de formas surpreendentes</h4>
55 <h4 id="make-it-mine">Deixe-me dar meu toque pessoal</h4>
73 <h4 id="get-to-know-me">Conheça-me</h4>
123 <h4 id="decide-for-me">Decida por mim, mas deixe que eu tenha a palavra final</h4>
209 <h4 id="interrupt-only-if-important">Só me interrompa se for importante</h4>
221 <h2 id="make-me-amazing">Faça com que eu seja incrível</h2>
226 <h4 id="give-me-tricks">Dê-me truques que funcionem em qualquer lugar</h4>
279 <h4 id="do-heavy-lifting-for-me">Faça o trabalho pesado por mim</h4>
/frameworks/av/cmds/stagefright/
Dmuxer.cpp39 static void usage(const char *me) { in usage() argument
42 " <input video file>\n", me); in usage()
230 const char *me = argv[0]; in main() local
292 usage(me); in main()
301 usage(me); in main()
/frameworks/base/core/java/android/inputmethodservice/
DKeyboardView.java1073 private boolean openPopupIfRequired(MotionEvent me) { in openPopupIfRequired() argument
1195 public boolean onTouchEvent(MotionEvent me) {
1198 final int pointerCount = me.getPointerCount();
1199 final int action = me.getAction();
1201 final long now = me.getEventTime();
1207 me.getX(), me.getY(), me.getMetaState());
1212 result = onModifiedTouchEvent(me, true);
1217 mOldPointerX, mOldPointerY, me.getMetaState());
1223 result = onModifiedTouchEvent(me, false);
1224 mOldPointerX = me.getX();
[all …]
/frameworks/base/docs/html-intl/intl/in/guide/topics/resources/
Druntime-changes.jd26 Android akan me-restart
40 <p>Untuk menguji bahwa aplikasi me-restart sendiri dengan status tak berubah, Anda harus
42 tugas dalam aplikasi. Aplikasi Anda harus dapat me-restart setiap saat tanpa kehilangan
47 <p>Akan tetapi, Anda mungkin menemui situasi ketika me-restart aplikasi dan
53 <p>Izinkan aktivitas Anda me-restart saat konfigurasi berubah, namun bawa objek
58 <p>Cegah sistem me-restart aktivitas selama perubahan konfigurasi
67 <p>Jika me-restart aktivitas mengharuskan pemulihan seperangkat data dalam jumlah besar, menghubung…
183 konfigurasinya, sehingga mencegah sistem me-restart aktivitas.</p>
208 <p>Sekarang, bila salah satu konfigurasi ini berubah, {@code MyActivity} tidak akan me-restart.
217 me-reset elemen UI tanpa membuat sistem me-restart aktivitas Anda.</p>
[all …]

1234