HomeSort by relevance Sort by last modified time
    Searched refs:finished (Results 76 - 100 of 228) sorted by null

1 2 34 5 6 7 8 910

  /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/chrome/browser/resources/net_internals/
testview.js 100 * Callback for when an individual test in the suite has finished.
127 * Callback for when the last test in the suite has finished.
  /external/eigen/Eigen/src/Core/
CommaInitializer.h 25 * \sa \ref MatrixBaseCommaInitRef "MatrixBase::operator<<", CommaInitializer::finished()
97 * Calling finished is 100% optional. Its purpose is to write expressions
100 * quaternion.fromRotationMatrix((Matrix3f() << axis0, axis1, axis2).finished());
103 inline XprType& finished() { return m_xpr; }
120 * \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 149 return (Matrix2() << cosA, -sinA, sinA, cosA).finished();
  /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;
  /external/webkit/Source/WebKit/mac/WebView/
WebFullScreenController.mm 238 - (void)windowDidExitFullscreen:(BOOL)finished
252 if (finished) {
267 - (void)windowDidEnterFullscreen:(BOOL)finished
279 if (finished) {
317 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)finished
322 [self windowDidExitFullscreen:finished];
324 [self windowDidEnterFullscreen:finished];
    [all...]
  /external/webkit/Source/WebKit2/Platform/qt/
WorkQueueQt.cpp 123 WorkQueue::WorkItemQt* itemQt = new WorkQueue::WorkItemQt(this, process, SIGNAL(finished(int, QProcess::ExitStatus)), workItem.leakPtr());
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ProcessLauncherQt.cpp 155 QObject::connect(m_processIdentifier, SIGNAL(finished(int)), m_processIdentifier, SLOT(deleteLater()), Qt::QueuedConnection);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
TestShellActivity.java 86 finished(); method
120 finished(); method
241 finished(); method
257 builder.setMessage("All tests finished. Exit?")
307 finished(); method
346 finished(); method
353 public boolean finished() { method in class:TestShellActivity
361 mCallback.finished();
413 if (!mRequestedWebKitData && !mTimedOut && !finished()) {
594 // Calling finished() will check if we've met all the conditions for completin
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 160 eof = inf.finished();
ZipInputStream.java 299 if (inf.finished() || currentEntry == null) {
338 if (read == 0 && inf.finished()) {
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 148 assertFalse(def.finished());
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_STATIC.S 43 cmp r1, #0 @ finished resolving?
  /dalvik/vm/mterp/mips/
OP_INVOKE_STATIC.S 42 # finished resloving?
  /dalvik/vm/mterp/x86/
OP_INVOKE_STATIC.S 48 cmpl $$0, (%edx) # finished resolving
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js 60 // If the load is not finished yet, schedule a timer to check again in a
  /external/v8/test/cctest/
test-circular-queue.cc 88 i::Semaphore* finished)
93 finished_(finished) { }
  /external/valgrind/main/gdbserver_tests/
mcleak.stderr.exp 18 finished
  /libcore/luni/src/main/native/
java_util_zip_Inflater.cpp 110 static jfieldID finished = env->GetFieldID(JniConstants::inflaterClass, "finished", "Z"); local
111 env->SetBooleanField(recv, finished, JNI_TRUE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 37 RemoteAdtTestRunner_RunCompleteMsg=Test run finished
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
SocketHandlerTest.java 704 private volatile boolean finished = false; field in class:SocketHandlerTest.ServerThread
706 public boolean finished() { method in class:SocketHandlerTest.ServerThread
707 return this.finished;
712 while (!this.finished) {
758 this.finished = true;
  /external/blktrace/
blkiomon.c 274 int finished; local
287 finished = dstat_curr;
291 head = dstat_list[finished];
294 dstat_list[finished] = NULL;
295 dstat_tree[finished] = RB_ROOT;
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.mm 103 -(void)seekCompleted:(BOOL)finished;
413 [m_avPlayerItem.get() seekToTime:CMTimeMakeWithSeconds(time, 600) toleranceBefore:kCMTimeZero toleranceAfter:kCMTimeZero completionHandler:^(BOOL finished) {
414 [observer seekCompleted:finished];
769 - (void)seekCompleted:(BOOL)finished
774 m_callback->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::SeekCompleted, static_cast<bool>(finished));
  /external/chromium/chrome/browser/extensions/
extension_management_browsertest.cc 211 bool finished() { return finished_; } function in class:NotificationListener
299 ASSERT_TRUE(notification_listener.finished());
314 ASSERT_TRUE(notification_listener.finished());

Completed in 4949 milliseconds

1 2 34 5 6 7 8 910