HomeSort by relevance Sort by last modified time
    Searched defs:onProgressUpdate (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
DownloadCallback.java 52 void onProgressUpdate(int progressCode, int percentComplete);
MainActivity.java 114 public void onProgressUpdate(int progressCode, int percentComplete) {
NetworkFragment.java 185 protected void onProgressUpdate(Integer... values) {
186 super.onProgressUpdate(values);
188 mCallback.onProgressUpdate(values[0], values[1]);
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
DownloadCallback.java 52 void onProgressUpdate(int progressCode, int percentComplete);
MainActivity.java 114 public void onProgressUpdate(int progressCode, int percentComplete) {
NetworkFragment.java 185 protected void onProgressUpdate(Integer... values) {
186 super.onProgressUpdate(values);
188 mCallback.onProgressUpdate(values[0], values[1]);
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
DownloadCallback.java 52 void onProgressUpdate(int progressCode, int percentComplete);
MainActivity.java 114 public void onProgressUpdate(int progressCode, int percentComplete) {
NetworkFragment.java 185 protected void onProgressUpdate(Integer... values) {
186 super.onProgressUpdate(values);
188 mCallback.onProgressUpdate(values[0], values[1]);
  /external/robolectric/v1/src/main/java/android/os/
ShadowAsyncTaskBridge.java 25 public void onProgressUpdate(Progress... values) {
26 asyncTask.onProgressUpdate(values);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAsyncTaskBridge.java 31 public void onProgressUpdate(Progress... values) {
32 ReflectionHelpers.callInstanceMethod(asyncTask, "onProgressUpdate", ClassParameter.from(Object[].class, values));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
WakeLockHoldingProgressListener.java 56 public void onProgressUpdate(int index) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AsyncTaskTest.java 100 "onProgressUpdate 33%",
101 "onProgressUpdate 66%",
102 "onProgressUpdate 99%",
133 @Override protected void onProgressUpdate(String... values) {
134 transcript.add("onProgressUpdate " + Join.join(", ", (Object[]) values));
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAsyncTaskTest.java 109 "onProgressUpdate 33%",
110 "onProgressUpdate 66%",
111 "onProgressUpdate 99%",
188 protected void onProgressUpdate(String... values) {
189 transcript.add("onProgressUpdate " + Join.join(", ", (Object[]) values));
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
UrlDownloaderTask.java 109 protected void onProgressUpdate(Integer... progress) {
ZipExtractorTask.java 121 protected void onProgressUpdate(Integer... progress) {
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 267 protected void onProgressUpdate(Integer... values) {
268 super.onProgressUpdate(values);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
RichSetupFragment.java 144 protected void onProgressUpdate(String... progress) {
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 70 * <code>onProgressUpdate</code> and <code>onPostExecute</code>.</p>
99 * protected void onProgressUpdate(Integer... progress) {
143 * {@link #onProgressUpdate} step.</li>
144 * <li>{@link #onProgressUpdate}, invoked on the UI thread after a
172 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
184 * {@link #onProgressUpdate} and {@link #onPostExecute}.
411 protected void onProgressUpdate(Progress... values) {
636 * {@link #onProgressUpdate} on the UI thread.
638 * {@link #onProgressUpdate} will note be called if the task has been
643 * @see #onProgressUpdate
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 70 * <code>onProgressUpdate</code> and <code>onPostExecute</code>.</p>
99 * protected void onProgressUpdate(Integer... progress) {
143 * {@link #onProgressUpdate} step.</li>
144 * <li>{@link #onProgressUpdate}, invoked on the UI thread after a
172 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
184 * {@link #onProgressUpdate} and {@link #onPostExecute}.
411 protected void onProgressUpdate(Progress... values) {
636 * {@link #onProgressUpdate} on the UI thread.
638 * {@link #onProgressUpdate} will note be called if the task has been
643 * @see #onProgressUpdate
    [all...]
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 312 protected void onProgressUpdate(String... args) {
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 70 * <code>onProgressUpdate</code> and <code>onPostExecute</code>.</p>
99 * protected void onProgressUpdate(Integer... progress) {
143 * {@link #onProgressUpdate} step.</li>
144 * <li>{@link #onProgressUpdate}, invoked on the UI thread after a
172 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
184 * {@link #onProgressUpdate} and {@link #onPostExecute}.
411 protected void onProgressUpdate(Progress... values) {
636 * {@link #onProgressUpdate} on the UI thread.
638 * {@link #onProgressUpdate} will note be called if the task has been
643 * @see #onProgressUpdate
    [all...]
  /frameworks/base/core/java/android/os/
AsyncTask.java 53 * <code>onProgressUpdate</code> and <code>onPostExecute</code>.</p>
82 * protected void onProgressUpdate(Integer... progress) {
126 * {@link #onProgressUpdate} step.</li>
127 * <li>{@link #onProgressUpdate}, invoked on the UI thread after a
155 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
167 * {@link #onProgressUpdate} and {@link #onPostExecute}.
443 protected void onProgressUpdate(Progress... values) {
673 * {@link #onProgressUpdate} on the UI thread.
675 * {@link #onProgressUpdate} will not be called if the task has been
680 * @see #onProgressUpdate
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
VrActivity.java 104 protected void onProgressUpdate(Integer... progress) {
  /frameworks/support/loader/src/main/java/androidx/loader/content/
ModernAsyncTask.java 249 protected void onProgressUpdate(Progress... values) {
467 * {@link #onProgressUpdate} on the UI thread.
469 * {@link #onProgressUpdate} will note be called if the task has been
474 * @see #onProgressUpdate
508 result.mTask.onProgressUpdate(result.mData);

Completed in 598 milliseconds

1 2 3 4 5