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

12 3 4 5 6 7 8 910

  /external/webkit/Source/WebCore/wml/
WMLVariables.cpp 87 bool finished = false; local
91 while (!finished) {
95 finished = true;
108 finished = true;
123 finished = true;
140 finished = true;
147 finished = true;
154 finished = true;
  /libcore/luni/src/test/java/libcore/java/util/
AbstractCollectionTest.java 31 final AtomicBoolean finished = new AtomicBoolean(false); local
35 while (!finished.get()) {
51 finished.set(true);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 110 in.finished = (flags & SpdyConnection.FLAG_UNIDIRECTIONAL) != 0;
111 out.finished = (flags & SpdyConnection.FLAG_FIN) != 0;
114 in.finished = (flags & SpdyConnection.FLAG_FIN) != 0;
115 out.finished = (flags & SpdyConnection.FLAG_UNIDIRECTIONAL) != 0;
135 if ((in.finished || in.closed) && (out.finished || out.closed) && responseHeaders != null) {
208 this.out.finished = true;
276 if (in.finished && out.finished) {
333 this.in.finished = true
413 private boolean finished; field in class:SpdyStream.SpdyDataInputStream
626 private boolean finished; field in class:SpdyStream.SpdyDataOutputStream
    [all...]
  /external/clang/docs/analyzer/
make.bat 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
75 echo.Build finished; now you can process the pickle files.
83 echo.Build finished; now you can process the JSON files.
91 echo.Build finished; now you can run HTML Help Workshop with the ^
100 echo.Build finished; now you can run "qcollectiongenerator" with the ^
112 echo.Build finished.
120 echo.Build finished. The epub file is in %BUILDDIR%/epub.
128 echo.Build finished; the LaTeX files are in %BUILDDIR%/latex
    [all...]
  /external/clang/docs/
make.bat 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
75 echo.Build finished; now you can process the pickle files.
83 echo.Build finished; now you can process the JSON files.
91 echo.Build finished; now you can run HTML Help Workshop with the ^
100 echo.Build finished; now you can run "qcollectiongenerator" with the ^
112 echo.Build finished.
120 echo.Build finished. The epub file is in %BUILDDIR%/epub.
128 echo.Build finished; the LaTeX files are in %BUILDDIR%/latex
    [all...]
  /external/llvm/docs/
make.bat 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
75 echo.Build finished; now you can process the pickle files.
83 echo.Build finished; now you can process the JSON files.
91 echo.Build finished; now you can run HTML Help Workshop with the ^
100 echo.Build finished; now you can run "qcollectiongenerator" with the ^
112 echo.Build finished.
120 echo.Build finished. The epub file is in %BUILDDIR%/epub.
128 echo.Build finished; the LaTeX files are in %BUILDDIR%/latex
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java 78 while (!defl.finished()) {
92 while (!infl.finished()) {
122 while (!defl.finished()) {
136 while (!infl.finished()) {
183 while (!defl.finished()) {
219 while (!defl.finished()) {
230 while (!infl.finished()) {
244 * @tests java.util.zip.Deflater#finished()
250 assertTrue("Test 1: Deflater should not be finished.", !defl.finished());
    [all...]
  /frameworks/base/libs/androidfw/tests/
InputChannel_test.cpp 94 clientReply.body.finished.seq = 0x11223344;
95 clientReply.body.finished.handled = true;
104 EXPECT_EQ(clientReply.body.finished.seq, serverReply.body.finished.seq)
106 EXPECT_EQ(clientReply.body.finished.handled, serverReply.body.finished.handled)
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 139 bool finished(double nr) function in class:Eigen::IterationController
150 bool finished(const MatrixBase<VectorType> &v) function in class:Eigen::IterationController
151 { return finished(double(v.squaredNorm())); }
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
AppTask.java 55 private boolean cancelled, finished; field in class:AppTask
130 return finished || cancelled || (exception != null);
147 finished = true;
  /external/llvm/include/llvm/CodeGen/PBQP/
HeuristicBase.h 173 bool finished = false; local
175 while (!finished) {
180 finished = true;
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 45 private boolean finished; field in class:CipherInputStream
87 if (finished) {
109 finished = true;
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 56 private boolean finished; // Set by inflateImpl. field in class:Inflater
129 public synchronized boolean finished() { method in class:Inflater
130 return finished;
261 finished = false;
Deflater.java 40 * while (!deflater.finished()) {
147 private boolean finished; field in class:Deflater
295 * @see #finished
306 public synchronized boolean finished() { method in class:Deflater
307 return finished;
357 * operation <i>must</i> be called after {@link #finished} returns
363 finished = false;
  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 172 boolean finished = false;
177 finished = IoBridge.connect(fd, normalAddr, port);
178 isBound = finished;
185 finished = true;
191 end(finished);
204 status = (finished ? SOCKET_STATUS_CONNECTED : SOCKET_STATUS_UNCONNECTED);
209 return finished;
241 boolean finished = false;
246 finished = IoBridge.isConnected(fd, inetAddress, port, 0, 0); // Return immediately.
247 isBound = finished;
    [all...]
  /external/valgrind/main/drd/tests/
atomic_var.stderr.exp 10 Test finished.
pth_cancel_locked.stderr.exp 9 Test finished.
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SimpleTimeLimiterTest.java 126 assertTrue(target.finished);
142 assertFalse(target.finished);
144 assertFalse(target.finished);
189 boolean finished; field in class:SimpleTimeLimiterTest.SampleImpl
195 finished = true;
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.mm 67 - (id)initWithManager:(WebKit::WebFullScreenManager*)manager began:(AnimationBeganFunction)began finished:(AnimationFinishedFunction)finished;
69 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag;
74 - (id)initWithManager:(WebKit::WebFullScreenManager*)manager began:(AnimationBeganFunction)began finished:(AnimationFinishedFunction)finished
82 _finished = finished;
92 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
121 m_enterFullScreenListener.adoptNS([[WebFullScreenManagerAnimationListener alloc] initWithManager:this began:&WebFullScreenManagerMac::beganEnterFullScreenAnimation finished:&WebFullScreenManagerMac::finishedEnterFullScreenAnimation]);
122 m_exitFullScreenListener.adoptNS([[WebFullScreenManagerAnimationListener alloc] initWithManager:this began:&WebFullScreenManagerMac::beganExitFullScreenAnimation finished:&WebFullScreenManagerMac::finishedExitFullScreenAnimation]);
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
htmlutil.py 140 finished = False
141 while not finished:
148 finished = True
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 98 assertFalse(inflater.finished());
100 assertTrue(inflater.finished());
112 while (!deflater.finished()) {
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model_unittest.cc 70 int finished() const { return finished_;} function in class:UTObserver
105 EXPECT_EQ(kDiagnosticsTestCount, observer.finished());
  /external/ppp/pppd/
fsm.c 232 if( f->callbacks->finished )
233 (*f->callbacks->finished)(f);
294 if( f->callbacks->finished )
295 (*f->callbacks->finished)(f);
311 if( (f->flags & OPT_PASSIVE) == 0 && f->callbacks->finished )
312 (*f->callbacks->finished)(f);
651 if( f->callbacks->finished )
652 (*f->callbacks->finished)(f);
657 if( f->callbacks->finished )
658 (*f->callbacks->finished)(f)
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
wiring.c 229 #warning this needs to be finished
238 #warning Timer 2 not finished (may not be present on this CPU)
247 #warning Timer 2 not finished (may not be present on this CPU)
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 88 Notification(Type type, bool finished)
91 , m_finished(finished)
98 bool finished() { return m_finished; } function in class:WebCore::MediaPlayerPrivateAVFoundation::Notification

Completed in 1562 milliseconds

12 3 4 5 6 7 8 910