HomeSort by relevance Sort by last modified time
    Searched refs:finished (Results 101 - 125 of 415) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
Timer.java 175 private boolean finished; field in class:Timer.TimerImpl
209 if (finished) {
333 impl.finished = true;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageMeasurement.java 227 Message finished, int remaining) {
231 mFinished = finished;
400 final Message finished = obtainMessage(MSG_COMPLETED, details); local
448 mIsInternal, details, currentUser, finished, count);
457 finished.sendToTarget();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
StorageMeasurement.java 234 Message finished, int remaining) {
238 mFinished = finished;
406 final Message finished = obtainMessage(MSG_COMPLETED, details); local
454 mIsInternal, details, currentUser, finished, count);
463 finished.sendToTarget();
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLEngineTest.java 443 boolean[] finished;
446 finished = new boolean[2];
447 assertConnected(test_SSLEngine_setUseClientMode(true, false, finished));
448 assertTrue(finished[0]);
449 assertTrue(finished[1]);
452 finished = new boolean[2];
453 assertConnected(test_SSLEngine_setUseClientMode(false, true, finished));
454 assertTrue(finished[0]);
455 assertTrue(finished[1]);
491 final boolean[] finished)
    [all...]
  /external/svox/pico/lib/
picotrns.c 444 initialized by 'StartTransduction'. Repeat calls to this procedure until '*finished' returns true.
461 picoos_bool * finished)
472 (*finished) = 0;
497 /* not finished; do regular step */
552 (*finished) = 1;
569 picoos_bool finished; local
586 finished = 0;
588 while (!finished) {
590 inSeq,inSeqLen,outSeq,outSeqLen,maxOutSeqLen,&finished);
  /external/chromium_org/remoting/webapp/
event_handlers.js 75 { event: 'click', id: 'client-finished-it2me-button', fn: goHome },
78 { event: 'click', id: 'host-finished-button', fn: goHome },
85 { event: 'click', id: 'client-finished-me2me-button', fn: goHome },
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
lock_tests.py 31 self.finished = []
39 self.finished.append(tid)
50 while len(self.finished) < self.n:
112 self.assertEqual(len(b.finished), 0)
115 self.assertEqual(len(b.finished), N)
500 self.assertFalse(b.finished)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
lock_tests.py 31 self.finished = []
39 self.finished.append(tid)
50 while len(self.finished) < self.n:
112 self.assertEqual(len(b.finished), 0)
115 self.assertEqual(len(b.finished), N)
500 self.assertFalse(b.finished)
  /external/chromium_org/chrome/browser/ui/webui/chromeos/imageburner/
imageburner_ui.cc 285 base::string16 finished; local
286 GetDataSizeText(amount_finished, &finished);
289 *progress_text = l10n_util::GetStringFUTF16(message_id, finished, total);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayer.cpp 281 ASSERT(finished());
384 if (finished() && !m_finished) {
397 return !m_finished || !finished();
AnimationPlayer.h 54 // Returns whether the player is finished.
76 bool finished() { return limited(currentTimeInternal()); } function in class:WebCore::FINAL
77 // FIXME: Resolve whether finished() should just return the flag, and
187 // Holds a 'finished' event queued for asynchronous dispatch via the
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.cc 99 if (utterance->finished())
108 if (utterance->finished())
122 details->SetBoolean(constants::kIsFinalEventKey, utterance->finished());
134 if (utterance->finished())
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketExtensionDispatcher.cpp 111 while (!parser.finished()) {
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
bio_ok.c 151 int cont; /* <= 0 when finished */
152 int finished; member in struct:ok_struct
189 ctx->finished=0;
381 ctx->finished=0;
414 ctx->finished=1;
  /external/eigen/Eigen/src/Core/
CommaInitializer.h 25 * \sa \ref MatrixBaseCommaInitRef "MatrixBase::operator<<", CommaInitializer::finished()
51 // Mark original object as finished. In absence of R-value references we need to const_cast:
110 * Calling finished is 100% optional. Its purpose is to write expressions
113 * quaternion.fromRotationMatrix((Matrix3f() << axis0, axis1, axis2).finished());
116 inline XprType& finished() { return m_xpr; }
135 * \sa CommaInitializer::finished(), class CommaInitializer
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Rotation2D.h 142 return (Matrix2() << cosA, -sinA, sinA, cosA).finished();
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 152 return (Matrix2() << cosA, -sinA, sinA, cosA).finished();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Dispatcher.java 44 /** Running jobs. Includes canceled jobs that haven't finished yet. */
131 synchronized void finished(Job job) { method in class:Dispatcher
  /external/openssl/crypto/evp/
bio_ok.c 151 int cont; /* <= 0 when finished */
152 int finished; member in struct:ok_struct
189 ctx->finished=0;
381 ctx->finished=0;
414 ctx->finished=1;
  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 159 eof = inf.finished();
  /external/chromium_org/chrome/browser/extensions/
startup_helper.cc 90 bool finished() { return finished_; } function in class:extensions::__anon8561::ValidateCrxHelper
157 // Whether we're finished unpacking;
189 if (!helper->finished())
  /external/chromium_org/chrome/renderer/resources/extensions/
tag_watcher.js 38 // functions on document, so we need to make sure document is finished
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_controller_unittest.cc 44 MockSyntheticGesture(bool* finished, int num_steps)
45 : finished_(finished),
283 bool GestureFinished() const { return state_ == FINISHED; }
291 FINISHED
324 state_ = FINISHED;
326 case FINISHED:
360 state_ = FINISHED;
362 case FINISHED:
433 bool finished; local
435 new MockSyntheticGesture(&finished, 3))
447 bool finished; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHeapProfilerAgent.cpp 235 const bool finished = true; local
237 m_frontend->reportHeapSnapshotProgress(m_totalWork, m_totalWork, &finished);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
app_installer.js 49 * finished.

Completed in 1251 milliseconds

1 2 3 45 6 7 8 91011>>