Searched refs:frame (Results 176 - 200 of 5378) sorted by relevance

1234567891011>>

/external/chromium_org/media/filters/
H A Dvideo_frame_scheduler_impl_unittest.cc36 void Schedule(const scoped_refptr<VideoFrame>& frame, int64 target_ms) { argument
38 frame,
68 scoped_refptr<VideoFrame> frame = local
70 Schedule(frame, 0);
72 EXPECT_CALL(*this, OnDisplay(frame));
73 EXPECT_CALL(*this, OnFrameDone(frame, VideoFrameScheduler::DISPLAYED));
78 scoped_refptr<VideoFrame> frame = local
80 Schedule(frame, 10);
85 // Now we should get the frame.
86 EXPECT_CALL(*this, OnDisplay(frame));
109 scoped_refptr<VideoFrame> frame = local
139 scoped_refptr<VideoFrame> frame = local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dreport.c23 int frame; member in struct:XRayTotal
28 /* Dumps the trace report for a given frame. */
31 int frame,
55 total = XRayFrameGetTotalTicks(capture, frame);
56 start = XRayFrameGetTraceStartIndex(capture, frame);
57 end = XRayFrameGetTraceEndIndex(capture, frame);
101 /* Dumps a frame report */
105 int frame = XRayFrameGetTail(capture); local
116 while (frame != head) {
117 uint64_t total_ticks = XRayFrameGetTotalTicks(capture, frame);
29 XRayTraceReport(struct XRayTraceCapture* capture, FILE* f, int frame, char* label, float percent_cutoff, int ticks_cutoff) argument
153 int frame = totals[i].frame; local
176 int frame = XRayFrameGetTail(capture); local
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_media_stream_video_track_api.h22 virtual int32_t GetFrame(PP_Resource* frame,
24 virtual int32_t RecycleFrame(PP_Resource frame) = 0;
27 PP_Resource* frame,
29 virtual int32_t PutFrame(PP_Resource frame) = 0;
/external/chromium_org/third_party/WebKit/Source/modules/netinfo/
H A DNavigatorNetworkInformation.cpp8 #include "core/frame/LocalDOMWindow.h"
9 #include "core/frame/LocalFrame.h"
10 #include "core/frame/Navigator.h"
16 : DOMWindowProperty(navigator.frame())
49 if (!m_connection && frame()) {
50 ASSERT(frame()->domWindow());
51 m_connection = NetworkInformation::create(frame()->domWindow()->executionContext());
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketDeflateFramer.cpp64 : WebSocketExtensionProcessor("x-webkit-deflate-frame")
79 m_failureReason = "Received duplicate deflate-frame response";
108 m_failureReason = "Received unexpected deflate-frame parameter";
174 PassOwnPtr<DeflateResultHolder> WebSocketDeflateFramer::deflate(WebSocketFrame& frame) argument
177 if (!enabled() || !WebSocketFrame::isNonControlOpCode(frame.opCode) || !frame.payloadLength)
179 if (!m_deflater->addBytes(frame.payload, frame.payloadLength) || !m_deflater->finish()) {
180 result->fail("Failed to compress frame");
183 frame
195 inflate(WebSocketFrame& frame) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DColorChooserUIController.cpp40 ColorChooserUIController::ColorChooserUIController(LocalFrame* frame, ColorChooserClient* client) argument
41 : m_frame(frame)
88 WebLocalFrameImpl* frame = WebLocalFrameImpl::fromFrame(m_frame); local
89 WebFrameClient* webFrameClient = frame->client();
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dnullvideorenderer.h40 // Called when a new frame is available for display.
41 virtual bool RenderFrame(const VideoFrame *frame) { argument
H A Dvideoprocessor.h39 // Contents of frame may be manipulated by the processor.
42 // that the current frame should be dropped. If *drop_frame is true,
44 // decides it cannot process the current frame in a timely manner, it may set
45 // *drop_frame = true and the frame will be dropped.
46 virtual void OnFrame(uint32 ssrc, VideoFrame* frame, bool* drop_frame) = 0;
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocket.java81 protected void handleWebsocketFrame(WebSocketFrame frame) throws IOException { argument
82 if (frame.getOpCode() == OpCode.Close) {
83 handleCloseFrame(frame);
84 } else if (frame.getOpCode() == OpCode.Ping) {
85 sendFrame(new WebSocketFrame(OpCode.Pong, true, frame.getBinaryPayload()));
86 } else if (frame.getOpCode() == OpCode.Pong) {
87 onPong(frame);
88 } else if (!frame.isFin() || frame.getOpCode() == OpCode.Continuation) {
89 handleFrameFragment(frame);
99 handleCloseFrame(WebSocketFrame frame) argument
120 handleFrameFragment(WebSocketFrame frame) argument
146 sendFrame(WebSocketFrame frame) argument
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_deflate_stream.cc124 scoped_ptr<WebSocketFrame> frame((*frames)[i]);
126 predictor_->RecordInputDataFrame(frame.get());
129 if (frame->header.final)
131 predictor_->RecordWrittenDataFrame(frame.get());
132 frames_to_write.push_back(frame.release());
135 if (frame->data.get() &&
136 !deflater_.AddBytes(frame->data->data(),
137 frame->header.payload_length)) {
142 if (frame->header.final && !deflater_.Finish()) {
150 frame
179 WebSocketFrame* frame = frames[index]; local
242 WebSocketFrame* frame = (*frames)[i]; local
255 WebSocketFrame* frame = (*frames)[i]; local
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Doptions_settings_app.css8 html.settings-app body.uber-frame {
17 html.settings-app body.uber-frame section {
20 html.settings-app body.uber-frame section > h3 {
25 html.settings-app body.uber-frame header {
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
H A Dimage_decoration.h22 // Returns the part of |frame| the image is drawn in.
23 NSRect GetDrawRectInFrame(NSRect frame);
27 virtual void DrawInFrame(NSRect frame, NSView* control_view) OVERRIDE;
/external/chromium_org/chrome/renderer/extensions/
H A Dresource_request_policy.h29 blink::WebFrame* frame,
35 blink::WebFrame* frame);
/external/chromium_org/chrome/renderer/
H A Dpage_load_histograms.h21 virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE;
24 // Dump all page load histograms appropriate for the given frame.
43 void Dump(blink::WebFrame* frame);
/external/chromium_org/content/renderer/media/
H A Dvideo_source_handler_unittest.cc31 const scoped_refptr<media::VideoFrame>& frame) OVERRIDE {
32 last_frame_ = frame;
76 // A new frame is captured.
81 // The frame is delivered to VideoSourceHandler.
84 // Compare |frame| to |captured_frame|.
85 const media::VideoFrame* frame = reader.last_frame(); local
86 ASSERT_TRUE(frame != NULL);
87 EXPECT_EQ(width, frame->coded_size().width());
88 EXPECT_EQ(height, frame->coded_size().height());
89 EXPECT_EQ(ts, frame
[all...]
/external/chromium_org/extensions/renderer/
H A Ddefault_dispatcher_delegate.cc20 blink::WebFrame* frame,
26 frame,
18 CreateScriptContext( const v8::Handle<v8::Context>& v8_context, blink::WebFrame* frame, const Extension* extension, Feature::Context context_type, const Extension* effective_extension, Feature::Context effective_context_type) argument
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Derror_handling.h72 /** Fill an exception frame from an exception context. */
74 EHFrame* frame);
77 /** Unwind the stack by one frame.
81 int EHUnwindFrame(EHFrame* frame);
/external/chromium_org/net/quic/
H A Dquic_framer.h29 // Number of bytes reserved for the frame type preceding each frame.
38 // Maximum number of bytes reserved for byte offset in stream frame.
40 // Number of bytes reserved to store payload length in stream frame.
52 // Maximum number of missing packet ranges that can fit within an ack frame.
57 // Maximum number of revived packets that can fit within an ack frame.
118 virtual bool OnStreamFrame(const QuicStreamFrame& frame) = 0;
122 virtual bool OnAckFrame(const QuicAckFrame& frame) = 0;
126 const QuicCongestionFeedbackFrame& frame) = 0;
129 virtual bool OnStopWaitingFrame(const QuicStopWaitingFrame& frame)
[all...]
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_helper.h25 // list, frame shape if any) initialized based on the supplied |frame|.
26 // Screen width and height will be set iff |frame|'s size differs from that
27 // of the previously-supplied frame.
28 scoped_ptr<VideoPacket> CreateVideoPacket(const webrtc::DesktopFrame& frame);
30 // Returns a new VideoPacket with the common fields populated from |frame|,
35 const webrtc::DesktopFrame& frame,
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaValuesDynamic.cpp13 #include "core/frame/LocalFrame.h"
22 PassRefPtr<MediaValues> MediaValuesDynamic::create(LocalFrame* frame) argument
24 if (!frame || !frame->view() || !frame->document() || !frame->document()->renderView())
26 return adoptRef(new MediaValuesDynamic(frame));
29 MediaValuesDynamic::MediaValuesDynamic(LocalFrame* frame) argument
30 : m_frame(frame)
H A DStyleMedia.h31 #include "core/frame/DOMWindowProperty.h"
44 static PassRefPtrWillBeRawPtr<StyleMedia> create(LocalFrame* frame) { return adoptRefWillBeNoop(new StyleMedia(frame));} argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkManifest.cpp9 #include "core/frame/LocalFrame.h"
31 if (!m_owner || !m_owner->document().frame())
34 m_owner->document().frame()->loader().client()->dispatchDidChangeManifest();
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DPrivateScriptTest.cpp9 #include "core/frame/LocalFrame.h"
14 PrivateScriptTest::PrivateScriptTest(LocalFrame* frame) argument
16 v8::Handle<v8::Value> classObject = PrivateScriptRunner::installClassIfNeeded(frame, "PrivateScriptTest");
H A DPrivateScriptTest.h20 static PrivateScriptTest* create(LocalFrame* frame) argument
22 return new PrivateScriptTest(frame);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaController.cpp47 void provideUserMediaTo(LocalFrame& frame, UserMediaClient* client) argument
49 UserMediaController::provideTo(frame, UserMediaController::supplementName(), UserMediaController::create(client));

Completed in 402 milliseconds

1234567891011>>