Searched defs:finished (Results 1 - 25 of 76) sorted by relevance

1234

/external/junit/src/org/junit/runners/model/
H A DRunnerScheduler.java20 void finished(); method in interface:RunnerScheduler
/external/junit/src/org/junit/rules/
H A DTestWatcher.java55 finished(description);
92 protected void finished(Description description) { method in class:TestWatcher
H A DTestWatchman.java61 finished(method);
98 public void finished(FrameworkMethod method) { method in class:TestWatchman
/external/v8/test/cctest/
H A Dtest-circular-queue.cc109 v8::base::Semaphore* finished)
114 finished_(finished) {}
108 ProducerThread(TestSampleQueue* scq, int records_per_chunk, Record value, v8::base::Semaphore* finished) argument
/external/v8/test/mjsunit/
H A Dconst-eval-init.js80 var finished = false; variable
83 var source = "delete x; const x = 8; finished = true;";
88 assertTrue(finished);
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DAppTask.java55 private boolean cancelled, finished; field in class:AppTask
130 return finished || cancelled || (exception != null);
147 finished = true;
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dmce.h23 __u8 finished; /* entry is valid */ member in struct:mce
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DDispatcher.java46 /** Running calls. Includes canceled calls that haven't finished yet. */
49 /** In-flight synchronous calls. Includes canceled calls that haven't finished yet. */
140 synchronized void finished(AsyncCall call) { method in class:Dispatcher
177 synchronized void finished(Call call) { method in class:Dispatcher
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIterationController.h136 bool finished(double nr) function in class:Eigen::IterationController
147 bool finished(const MatrixBase<VectorType> &v) function in class:Eigen::IterationController
148 { return finished(double(v.squaredNorm())); }
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DSimpleTimeLimiterTest.java126 assertTrue(target.finished);
142 assertFalse(target.finished);
144 assertFalse(target.finished);
189 boolean finished; field in class:SimpleTimeLimiterTest.SampleImpl
195 finished = true;
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DSocketHandlerTest.java704 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/lzma/CPP/7zip/Compress/
H A DLzma2Decoder.cpp120 bool finished = (inSizeProcessed == 0 && outSizeProcessed == 0); local
123 if (res != 0 || _state.decoder.dicPos == _state.decoder.dicBufSize || finished || stopDecoding)
131 if (finished)
H A DLzmaDecoder.cpp128 bool finished = (inSizeProcessed == 0 && outSizeProcessed == 0); local
131 if (res != 0 || _state.dicPos == next || finished || stopDecoding)
148 if (finished)
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c561 boolean finished = FALSE; local
574 while (!finished) {
711 finished = TRUE;
/external/ppp/pppd/
H A Dfsm.h108 void (*finished) /* Called when we don't want the lower layer */ member in struct:fsm_callbacks
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_sm.h67 void (*finished)(void *ctx, void *sta_ctx, int success, int preauth, member in struct:eapol_auth_cb
/external/wpa_supplicant_8/src/eapol_auth/
H A Deapol_auth_sm.h67 void (*finished)(void *ctx, void *sta_ctx, int success, int preauth, member in struct:eapol_auth_cb
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A Deapol_auth_sm.h67 void (*finished)(void *ctx, void *sta_ctx, int success, int preauth, member in struct:eapol_auth_cb
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h665 bool finished = false; local
666 while(!finished)
668 finished = true;
684 finished = false;
/external/libvncserver/libvncclient/
H A Dtls_openssl.c239 int n, finished = 0; local
261 finished = 1;
270 } while( n != 1 && finished != 1 );
/external/libvorbis/doc/
H A D01-introduction.tex451 producing the finished audio spectrum of each channel.
485 Note that the PCM produced directly from the MDCT is not yet finished
498 now finished and ready to be returned.
507 \paragraph{return finished audio data}
510 current frame data is finished data to be returned by the decoder.
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer_fenced.c345 int finished; local
352 finished = ops->fence_finish(ops, fenced_buf->fence, 0);
367 if(proceed && finished == 0) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyStream.java87 this.source.finished = inFinished;
88 this.sink.finished = outFinished;
110 if ((source.finished || source.closed)
111 && (sink.finished || sink.closed)
175 this.sink.finished = true;
243 if (source.finished && sink.finished) {
293 this.source.finished = true;
331 private boolean finished; field in class:SpdyStream.SpdyDataSource
372 /** Returns once the source is either readable or finished
485 private boolean finished; field in class:SpdyStream.SpdyDataSink
[all...]
/external/blktrace/
H A Dblkiomon.c274 int finished; local
287 finished = dstat_curr;
291 head = dstat_list[finished];
294 dstat_list[finished] = NULL;
295 dstat_tree[finished] = RB_ROOT;
/external/clang/include/clang/Sema/
H A DSemaInternal.h185 bool finished() { function in class:clang::TypoCorrectionConsumer

Completed in 739 milliseconds

1234