Home
last modified time | relevance | path

Searched refs:Run (Results 1 – 25 of 70) sorted by relevance

123

/frameworks/base/media/java/android/media/
DSubtitleTrack.java45 final protected LongSparseArray<Run> mRunsByEndTime = new LongSparseArray<Run>();
47 final protected LongSparseArray<Run> mRunsByID = new LongSparseArray<Run>();
169 Run run = mRunsByEndTime.valueAt(ix); in removeRunsByEndTimeIndex()
179 Run nextRun = run.mNextRunAtEndTimeMs; in removeRunsByEndTimeIndex()
307 Run run = mRunsByID.get(cue.mRunID); in addCue()
309 run = new Run(); in addCue()
593 Run run = mRunsByID.get(runID);
603 Run run = mRunsByID.get(runID);
618 private static class Run {
620 public Run mNextRunAtEndTimeMs;
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DarmVCM4P10_DecodeCoeffsToPair.c88 int SuffixLength, Run, ZerosLeft,CoeffNum; in armVCM4P10_DecodeCoeffsToPair() local
214 Run = 0; in armVCM4P10_DecodeCoeffsToPair()
222 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]); in armVCM4P10_DecodeCoeffsToPair()
223 armRetDataErrIf(Run == ARM_NO_CODEBOOK_INDEX, OMX_Sts_Err); in armVCM4P10_DecodeCoeffsToPair()
225 pRun[i] = (OMX_U8)Run; in armVCM4P10_DecodeCoeffsToPair()
229 ZerosLeft -= Run; in armVCM4P10_DecodeCoeffsToPair()
/frameworks/base/docs/html/training/basics/firstapp/
Drunning-app.jd20 <li><a href="#RealDevice">Run on a Real Device</a></li>
21 <li><a href="#Emulator">Run on the Emulator</a></li>
46 <h2 id="RealDevice">Run on a Real Device</h2>
71 <h3>Run the app from Android Studio</h3>
74 <strong>Run</strong> <img
84 <h3>Run the app from a command line</h3>
101 <h2 id="Emulator">Run on the Emulator</h2>
143 <h3>Run the app from Android Studio</h3>
145 <li>In <strong>Android Studio</strong>, select your project and click <strong>Run</strong>
157 <h3>Run your app from the command line</h3>
/frameworks/base/docs/html/tools/building/
Dbuilding-eclipse.jd15 <li><a href="#RunConfig">Creating a Run Configuration</a></li>
44 <p>To run (or debug) your application, select <strong>Run</strong> &gt; <strong>Run</strong> (or
45 <strong>Run</strong> &gt; <strong>Debug</strong>) from the Eclipse menu bar. The ADT plugin will
65 …application with the normal Run option, Eclipse installs the application on the device and launche…
68 …manager. See the section below about <a href="#RunConfig">Creating a Run Configuration</a> for mor…
107 selecting <strong>Run</strong> &gt; <strong>Run</strong> (or <strong>Run</strong> &gt;
110 <h2 id="RunConfig">Creating a Run Configuration</h2>
119 …modify a run configuration, refer to the Eclipse documentation on how to create Run configurations.
123 <li>Open the run configuration manager from the Run Menu.</li>
129 <li>With the Run Configuration selected, adjust your desired run configuration settings:
Dbuilding-studio.jd17 <li><a href="#RunConfig">Creating a Run Configuration</a></li>
109 <h3 id="RunConfig">Creating a Run Configuration</h3>
112 target device, emulator settings, and Logcat options. Run configuration can be set at the project,
121 Run/Debug configurations</a>.</p>
126 <li>Open <strong>Edit</strong> Configurations from the <strong>Run</strong> Menu.</li>
131 <li>With the Run Configuration selected, adjust your desired run configuration settings:
187 <p>To run (or debug) your application, select <strong>Run</strong> &gt; <strong>Run</strong> (or
188 <strong>Run</strong> &gt; <strong>debug</strong>) from the Android Studio menu bar. Android Studio
209 …you run the application with the normal Run command, Android Studio installs the application on the
213 <strong>Run</strong> &gt; <strong>Edit Configurations</strong>. See the section below about
[all …]
/frameworks/minikin/include/minikin/
DFontCollection.h34 struct Run { struct
41 std::vector<Run>* result) const; argument
/frameworks/base/docs/html/training/sync-adapters/
Drunning-sync-adapter.jd12 <li><a href="#RunByMessage">Run the Sync Adapter When Server Data Changes</a>
13 <li><a href="#RunDataChange">Run the Sync Adapter When Content Provider Data Changes</a></li>
14 <li><a href="#RunByNetwork">Run the Sync Adapter After a Network Message</a></li>
15 <li><a href="#RunPeriodic">Run the Sync Adapter Periodically</a></li>
16 <li><a href="#RunOnDemand">Run the Sync Adapter On Demand</a></li>
59 Run the sync adapter in response to a message from a server, indicating that server-based
65 Run a sync adapter when data changes on the device. This option allows you to send
75 Run a sync adapter when the Android system sends out a network message that keeps the
84 Run a sync adapter after the expiration of an interval you choose, or run it at a certain
89 Run the sync adapter in response to a user action. However, to provide the best user
[all …]
/frameworks/minikin/libs/minikin/
DFontCollection.cpp164 vector<Run>* result) const { in itemize()
168 Run* run = NULL; in itemize()
198 Run dummy; in itemize()
/frameworks/base/docs/html/tools/testing/
Dtesting_eclipse.jd264 Run a test just as you run an application, by selecting
265 <strong>Run As... &gt; Android JUnit Test</strong> from the project's context menu or
266 from the main menu's <strong>Run</strong> item.
283 <strong>Run &gt; Run Configurations...</strong>. The Run Configurations dialog appears.
291 To run one test class, click Run a single test, then enter your project name in the
294 To run all the test classes, click Run all tests in the selected project or package,
318 Optional: Add the configuration to the Run toolbar and the <strong>Favorites</strong>
319 menu: in the Display in Favorites pane click the checkbox next to Run.
328 Although you can run the test immediately by clicking Run, you should save the test
333 On the Eclipse standard toolbar, click the down arrow next to the green Run arrow. This
[all …]
/frameworks/native/opengl/tests/testViewport/
DREADME5 Run on Sapphire with Froyo.
/frameworks/base/docs/html/tools/debugging/
Ddebugging-studio.jd9 <li><a href="#runDebug">Run your App in Debug Mode</a>
47 <li>Run the debugging tools from the Android SDK.</li>
57 <h2 id="runDebug">Run your App in Debug Mode</h2>
178 <li>Start your app as described in <a href="#runDebug">Run your App in Debug Mode</a>.</li>
227 <li>Start your app as described in <a href="#runDebug">Run your App in Debug Mode</a>.</li>
313 <li>Start your app as described in <a href="#runDebug">Run Your App in Debug Mode</a>.</li>
380 <li>Start your app as described in <a href="#runDebug">Run your App in Debug Mode</a>.</li>
395 <li>Start your app as described in <a href="#runDebug">Run your App in Debug Mode</a>.</li>
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
Dcvei.h424 virtual void Run(void) = 0;
/frameworks/base/docs/html/training/location/
Dlocation-testing.jd14 <li><a href="#RunProvider">Run the Mock Location Provider App</a></li>
165 Run the Mock Location Provider
167 <h2 id="RunProvider">Run the Mock Location Provider App</h2>
204 Run once
211 Run continuously
273 Run the app you want to test. While the mock location provider app is running, the app
/frameworks/base/docs/html/training/multiple-threads/
Drun-code.jd12 <li><a href="#RunRunnable">Run a Runnable on a Thread in the Thread Pool</a></li>
46 <h2 id="RunRunnable">Run a Task on a Thread in the Thread Pool</h2>
Dindex.jd57 <b><a href="define-runnable.html">Specifying the Code to Run on a Thread</a></b>
Ddefine-runnable.jd1 page.title=Specifying the Code to Run on a Thread
/frameworks/base/core/res/
DMakeJavaSymbols.sed1 # Run this on the errors output by javac of missing resource symbols,
/frameworks/base/docs/html/training/activity-testing/
Dactivity-basic-testing.jd19 <li><a href="#build_run">Build and Run Your Test</a></li>
205 <h2 id="build_run">Build and Run Your Test</h2>
214 earlier and select <strong>Run As &gt; Android Junit Test</strong>.</li>
/frameworks/base/docs/html/training/tv/discovery/
Drecommendations.jd15 <li><a href="#run-service">Run Recommendations Service</a></li>
246 <h2 id="run-service">Run Recommendations Service</h3>
/frameworks/base/tools/orientationplot/
DREADME.txt27 3. Run "orientationplot.py".
/frameworks/base/docs/html/training/tv/start/
Dstart.jd16 <li><a href="#run">Run TV Apps</a></li>
293 <h2 id="run">Run TV Apps</h2>
322 <li>Run the application from your development environment and choose the TV virtual device as
/frameworks/base/docs/html/google/play-services/
Ddrive.jd104 2. Run the sample
Dplus.jd68 <h4>2. Run the sample</h4>
Dgames.jd76 <h4>2. Run the sample</h4>
/frameworks/base/docs/html/tools/devices/
Demulator.jd193 You can specify emulator startup options in the Run/Debug
294 <strong>Run > Edit Configurations...</strong></li>
295 … <li>In the left panel of the <strong>Run/Debug Configurations</strong> dialog, select your Android
302 <li>Run your Android project using this run configuration.</li>
421 <li>In Android Studio, click your Android project folder and then select <strong>Run > Edit
423 … <li>In the left panel of the <strong>Run/Debug Configurations</strong> dialog, select your Android
427 <li>Run your Android project using this run configuration.</li>
474 <li>In Android Studio, click your Android module folder and then select <strong>Run > Edit
476 … <li>In the left panel of the <strong>Run/Debug Configurations</strong> dialog, select your Android
480 <li>Run your Android project using this run configuration.</li>
[all …]

123