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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleResult.cpp 12 void WebContentDecryptionModuleResult::complete() function in class:blink::WebContentDecryptionModuleResult
14 m_impl->complete();
  /external/chromium_org/chrome/browser/resources/cryptotoken/
requestqueue.js 12 * Represents a queued request. Once given a token, call complete() once the
19 QueuedRequestToken.prototype.complete = function() {};
44 RequestToken.prototype.complete = function() {
51 this.queue_.complete(this);
118 RequestQueue.prototype.complete = function(token) {
141 // Clone the timer to set a callback on it, which will ensure complete() is
143 timer.clone(token.complete.bind(token));
  /cts/suite/audio_quality/lib/src/task/
TaskInput.cpp 83 TaskGeneric::ExecutionResult TaskInput::complete() function in class:TaskInput
TaskOutput.cpp 84 TaskGeneric::ExecutionResult TaskOutput::complete() function in class:TaskOutput
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFA.java 47 public boolean complete; field in class:NFA
  /external/chromium_org/media/cast/net/rtp/
framer_unittest.cc 46 bool complete = false; local
51 complete = framer_.InsertPacket(
53 EXPECT_TRUE(complete);
58 complete = framer_.InsertPacket(
60 EXPECT_TRUE(complete);
73 bool complete = false; local
77 // Start with a complete key frame.
79 complete = framer_.InsertPacket(
81 EXPECT_TRUE(complete);
95 complete = framer_.InsertPacket
113 bool complete = false; local
209 bool complete = false; local
274 bool complete = false; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
SimpleContentDecryptionModuleResult.cpp 53 void SimpleContentDecryptionModuleResult::complete() function in class:blink::SimpleContentDecryptionModuleResult
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.h 30 void complete() { function in class:SkOpEdgeBuilder
32 fCurrentContour->complete();
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 69 /** Whether the basic authentication process is complete */
70 private boolean complete; field in class:BasicScheme
77 this.complete = false;
101 this.complete = true;
111 return this.complete;
  /external/lldb/test/
progress.py 52 def complete(self): member in class:ProgressBar
  /external/chromium_org/chrome/browser/ui/pdf/
pdf_browsertest.cc 136 bool complete = false; local
140 &complete));
141 if (complete)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
background.js 12 complete: 'green',
109 ctx.fillStyle = colors.complete;
192 } else if ((item.state == 'complete') && item.endTime && !item.error) {
  /external/chromium_org/third_party/webrtc/tools/rtcbot/
test.js 61 functions[i](complete.bind(this, i));
63 function complete(index, value) {
  /external/clang/utils/
clang-completion-mode.el 43 ;; Clang's code completion is based on parsing the complete source
138 (defun clang-complete ()
175 (defun clang-complete-self-insert (arg)
179 (clang-complete))
227 (define-key clang-completion-mode-map char 'clang-complete-self-insert))
  /external/apache-harmony/jdwp/
Android.mk 78 define wait-for-boot-complete
79 $(hide) echo "Wait for boot complete ..."
84 $(hide) echo "Boot complete"
94 $(call wait-for-boot-complete)
  /external/chromium_org/chrome/browser/download/
download_shelf.cc 47 // How many times to cycle the complete animation. This should be an odd
127 // look like 0% complete when it should be almost 100%).
219 gfx::ImageSkia* complete = (size == BIG) ? g_foreground_32 : g_foreground_16; local
222 complete->width(), complete->height());
228 canvas->DrawImageInt(*complete, complete_bounds.x(), complete_bounds.y(),
247 gfx::ImageSkia* complete = (size == BIG) ? g_foreground_32 : g_foreground_16; local
250 complete->width(), complete->height());
256 canvas->DrawImageInt(*complete, complete_bounds.x(), complete_bounds.y()
    [all...]
  /external/chromium_org/chromeos/dbus/
gsm_sms_client.cc 98 bool complete = false; local
101 !reader.PopBool(&complete)) {
106 sms_received_handler_.Run(index, complete);
modem_messaging_client.cc 86 bool complete = false; local
89 !reader.PopBool(&complete)) {
94 sms_received_handler_.Run(message_path, complete);
  /external/chromium_org/content/browser/fileapi/
file_system_operation_impl_write_unittest.cc 99 void add_bytes_written(int64 bytes, bool complete) {
102 complete_ = complete;
105 bool complete() const { return complete_; } function in class:content::FileSystemOperationImplWriteTest
132 void DidWrite(base::File::Error status, int64 bytes, bool complete) {
134 add_bytes_written(bytes, complete);
135 if (complete)
191 EXPECT_TRUE(complete());
205 EXPECT_TRUE(complete());
220 EXPECT_TRUE(complete());
236 EXPECT_TRUE(complete());
    [all...]
  /external/chromium_org/content/browser/web_contents/aura/
gesture_nav_simple.cc 146 // Make sure the fade-out starts from the complete state.
156 double complete = std::min(1.f, delta_x / completion_threshold_); local
157 float translate_x = gfx::Tween::FloatValueBetween(complete, -kArrowWidth, 0);
162 arrow_->SetOpacity(gfx::Tween::FloatValueBetween(complete, kMinOpacity, 1.f));
  /external/chromium_org/media/cast/receiver/
frame_receiver.cc 127 const bool complete = local
164 // Another frame is complete from a non-duplicate packet. Attempt to emit
166 if (complete)
216 // skipping one or more frames. Skip if the missing frame wouldn't complete
238 // At this point, we have the complete next frame, or a decodable
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGenerator.cpp 203 bool complete = decode(index, &decoder, &fullSizeImage); local
225 // If the image generated is complete then there is no need to keep
227 // multiple complete frames.
228 const bool removeDecoder = complete && !m_isMultiFrame;
292 // A cache object is considered complete if we can decode a complete frame.
  /external/chromium_org/third_party/libwebp/webp/
demux.h 79 WEBP_DEMUX_PARSED_HEADER = 1, // Header parsing complete,
143 int complete; // true if 'fragment' contains a full frame. partial images member in struct:WebPIterator
159 // Call WebPDemuxReleaseIterator() when use of the iterator is complete.
201 // Call WebPDemuxReleaseChunkIterator() when use of the iterator is complete.
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
benchmark.cc 248 bool complete = false; local
253 while (!complete)
255 complete = Encode();
256 if (!frameQueue.Empty() || complete)
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 57 * listener is added after the Future is complete, it will be executed
250 * Blocks until the task is complete or the timeout expires. Throws a
266 * Blocks until {@link #complete(Object, Throwable, int)} has been
321 return complete(v, null, COMPLETED);
328 return complete(null, t, COMPLETED);
335 return complete(null, null, CANCELLED);
349 private boolean complete(@Nullable V v, @Nullable Throwable t, method in class:AbstractFuture.Sync

Completed in 1572 milliseconds

1 2 3 4