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

1 2 3

  /external/chromium_org/extensions/renderer/resources/
image_util.js 57 function on_complete_index(index, err, loading, finished, callbacks) {
60 finished[index] = { width: width, height: height, data: imageData };
64 callbacks.oncomplete(finished);
69 var loading = {}, finished = [],
75 oncomplete: on_complete_index(index, false, loading, finished, callbacks),
76 onerror: on_complete_index(index, true, loading, finished, callbacks)
  /external/junit/src/org/junit/runners/model/
RunnerScheduler.java 20 void finished(); method in interface:RunnerScheduler
  /external/chromium_org/ui/gfx/animation/
test_animation_delegate.h 31 bool finished() const { function in class:gfx::TestAnimationDelegate
  /external/chromium_org/chrome/browser/ui/website_settings/
mock_permission_bubble_request.cc 109 bool MockPermissionBubbleRequest::finished() { function in class:MockPermissionBubbleRequest
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketExtensionParser.cpp 47 bool WebSocketExtensionParser::finished() function in class:blink::WebSocketExtensionParser
156 if (!finished() && !consumeCharacter(','))
  /external/chromium_org/v8/test/mjsunit/
const-eval-init.js 80 var finished = false; variable
83 var source = "delete x; const x = 8; finished = true;";
88 assertTrue(finished);
  /external/chromium_org/base/threading/
worker_pool_unittest.cc 53 bool finished() const { function in class:base::__anon7195::PostTaskAndReplyTester
101 while (!tester->finished() && TimeTicks::Now() - start < kMaxDuration) {
109 EXPECT_TRUE(tester->finished());
  /bionic/libc/kernel/uapi/asm-x86/asm/
mce.h 42 __u8 finished; member in struct:mce
  /development/ndk/platforms/android-L/arch-x86/include/asm/
mce.h 42 __u8 finished; member in struct:mce
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
mce.h 42 __u8 finished; member in struct:mce
  /external/chromium_org/device/serial/
data_sender.cc 123 bool finished = pending_sends_.front()->ReportBytesSent(&bytes_sent); local
124 DCHECK(!finished);
125 if (finished) {
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 23 __u8 finished; /* entry is valid */ member in struct:mce
  /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_enc.c 80 int cont; /* <= 0 when finished */
81 int finished; member in struct:enc_struct
119 ctx->finished=0;
300 ctx->finished=0;
331 if (!ctx->finished)
333 ctx->finished=1;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/imageburner/
imageburner_ui.cc 286 base::string16 finished; local
287 GetDataSizeText(amount_finished, &finished);
290 *progress_text = l10n_util::GetStringFUTF16(message_id, finished, total);
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.cc 294 bool finished = false; local
297 finished = HandleSelectionTargetsEvent(event, format, item_count, data);
300 finished = HandleSelectionStringEvent(event, format, item_count, data);
303 if (finished)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamerTest.cpp 137 bool finished() const { return m_finished; } function in class:blink::__anon15528::TestScriptResourceClient
155 EXPECT_FALSE(client.finished());
161 EXPECT_TRUE(client.finished());
175 // the V8 side typically finished before loading finishes: make sure we
186 EXPECT_FALSE(client.finished());
190 EXPECT_FALSE(client.finished());
193 EXPECT_TRUE(client.finished());
220 EXPECT_FALSE(client.finished());
228 EXPECT_FALSE(client.finished());
248 EXPECT_TRUE(client.finished());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 561 boolean finished = FALSE; local
574 while (!finished) {
711 finished = TRUE;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 136 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/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 120 bool finished = (inSizeProcessed == 0 && outSizeProcessed == 0); local
123 if (res != 0 || _state.decoder.dicPos == _state.decoder.dicBufSize || finished || stopDecoding)
131 if (finished)
LzmaDecoder.cpp 128 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/
svga_shader_dump.c 561 boolean finished = FALSE; local
574 while (!finished) {
711 finished = TRUE;
  /external/chromium_org/cc/animation/
layer_animation_controller_unittest.cc 218 EXPECT_EQ(Animation::Finished,
351 // Ensure that a finished animation is eventually deleted by both the
392 // There should be a Finished event for the animation.
394 EXPECT_EQ(AnimationEvent::Finished, (*events)[0].type);
882 bool finished() { return finished_; } function in class:cc::__anon7253::FakeAnimationDelegate
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/management/
management_browsertest.cc 223 bool finished() { return finished_; } function in class:NotificationListener
333 ASSERT_TRUE(notification_listener.finished());
349 ASSERT_TRUE(notification_listener.finished());
433 ASSERT_TRUE(notification_listener.finished());
  /external/chromium_org/chrome/browser/extensions/
startup_helper.cc 129 bool finished() { return finished_; } function in class:extensions::__anon8642::ValidateCrxHelper
196 // Whether we're finished unpacking;
228 if (!helper->finished())

Completed in 938 milliseconds

1 2 3