HomeSort by relevance Sort by last modified time
    Searched refs:frame (Results 501 - 525 of 6371) sorted by null

<<21222324252627282930>>

  /external/chromium_org/mojo/services/html_viewer/
html_document_view.cc 66 bool CanNavigateLocally(blink::WebFrame* frame,
70 // different instance of Blink if the frame is cross-origin.
71 if (frame->parent())
177 blink::WebLocalFrame* frame,
180 return web_media_player_factory_->CreateMediaPlayer(frame, url, client);
184 blink::WebLocalFrame* frame,
188 return createMediaPlayer(frame, url, client);
199 void HTMLDocumentView::frameDetached(blink::WebFrame* frame) {
200 if (frame->parent())
201 frame->parent()->removeChild(frame)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 32 // Constants for hybi-10 frame format.
33 // These are bitmasks for frame composition / decomposition.
52 WebSocketFrame::ParseFrameResult WebSocketFrame::parseFrame(char* data, size_t dataLength, WebSocketFrame& frame, const char*& frameEnd, String& errorString)
99 errorString = "WebSocket frame length too large: " + String::number(payloadLength64) + " bytes";
114 frame.opCode = static_cast<WebSocketFrame::OpCode>(opCode);
115 frame.final = final;
116 frame.compress = compress;
117 frame.reserved2 = reserved2;
118 frame.reserved3 = reserved3;
119 frame.masked = masked
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 37 #include "core/frame/LocalFrame.h"
88 // If the node is a frame, we'll process it later in retrieveResourcesForFrame.
90 Frame* frame = toHTMLFrameOwnerElement(element)->contentFrame(); local
91 if (frame && frame->isLocalFrame()) {
92 if (!visitedFrames->contains(toLocalFrame(frame)))
93 framesToVisit->append(toLocalFrame(frame));
111 void retrieveResourcesForFrame(LocalFrame* frame,
118 KURL frameURL = frame->loader().documentLoader()->request().url()
224 LocalFrame* frame = framesToVisit[0]; local
    [all...]
WebRemoteFrameImpl.cpp 8 #include "core/frame/FrameOwner.h"
9 #include "core/frame/FrameView.h"
10 #include "core/frame/RemoteFrame.h"
11 #include "core/frame/Settings.h"
27 // Helper class to bridge communication for a local frame with a remote parent.
29 // 1. Allows the local frame's loader to retrieve sandbox flags associated with
35 static PassOwnPtrWillBeRawPtr<RemoteBridgeFrameOwner> create(PassRefPtrWillBeRawPtr<WebLocalFrameImpl> frame)
37 return adoptPtrWillBeNoop(new RemoteBridgeFrameOwner(frame));
52 RemoteBridgeFrameOwner::RemoteBridgeFrameOwner(PassRefPtrWillBeRawPtr<WebLocalFrameImpl> frame)
53 : m_frame(frame)
114 WebRemoteFrameImpl* frame = new WebRemoteFrameImpl(client); local
    [all...]
WebPagePopupImpl.cpp 35 #include "core/frame/FrameView.h"
36 #include "core/frame/LocalFrame.h"
37 #include "core/frame/Settings.h"
163 WebLocalFrameImpl* frame = WebLocalFrameImpl::fromFrame(m_popup->m_popupClient->ownerElement().document().frame()); variable
164 if (obj && frame && frame->client())
165 frame->client()->postAccessibilityEvent(WebAXObject(obj), static_cast<WebAXEvent>(notification));
167 // FIXME: Delete these lines once Chromium only uses the frame client interface, above.
238 RefPtrWillBeRawPtr<LocalFrame> frame = LocalFrame::create(emptyFrameLoaderClient, &m_page->frameHost(), 0) local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
video_processing_impl.cc 83 const I420VideoFrame& frame) {
84 if (frame.IsZeroSize()) {
85 LOG(LS_ERROR) << "Zero size frame.";
89 int width = frame.width();
90 int height = frame.height();
95 const uint8_t* buffer = frame.buffer(kYPlane);
96 // Compute histogram and sum of frame
109 // Compute mean value of frame
117 LOG(LS_WARNING) << "Invalid frame stats.";
132 int32_t VideoProcessingModule::ColorEnhancement(I420VideoFrame* frame) {
    [all...]
  /external/lldb/test/functionalities/return-value/
TestReturnValue.py 67 frame = thread.GetFrameAtIndex(0)
68 fun_name = frame.GetFunctionName()
71 frame = thread.GetFrameAtIndex(0)
118 frame = thread.GetFrameAtIndex(0)
119 fun_name = frame.GetFunctionName()
140 frame = thread.GetFrameAtIndex(1)
141 fun_name = frame.GetFunctionName ()
143 in_int = frame.FindVariable ("value").GetValueAsSigned(error)
146 thread.StepOutOfFrame (frame)
150 frame = thread.GetFrameAtIndex(0
    [all...]
  /external/webrtc/src/modules/audio_processing/
audio_buffer.cc 190 void AudioBuffer::DeinterleaveFrom(AudioFrame* frame) {
191 assert(frame->_audioChannel <= max_num_channels_);
192 assert(frame->_payloadDataLengthInSamples == samples_per_channel_);
194 num_channels_ = frame->_audioChannel;
199 activity_ = frame->_vadActivity;
201 if (frame->_energy == 0) {
207 data_ = frame->_payloadData;
211 int16_t* interleaved = frame->_payloadData;
222 void AudioBuffer::InterleaveTo(AudioFrame* frame, bool data_changed) const {
223 assert(frame->_audioChannel == num_channels_)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capturer_mac.mm 190 // A class to perform video frame capturing for mac.
211 void GlBlitFast(const DesktopFrame& frame,
213 void GlBlitSlow(const DesktopFrame& frame);
214 void CgBlitPreLion(const DesktopFrame& frame,
217 bool CgBlitPostLion(const DesktopFrame& frame,
295 // DesktopFrame wrapper that flips wrapped frame upside down by inverting
299 // Takes ownership of |frame|.
300 InvertedDesktopFrame(DesktopFrame* frame)
302 frame->size(), -frame->stride()
    [all...]
desktop_and_cursor_composer_unittest.cc 45 uint32_t GetFramePixel(const DesktopFrame& frame, const DesktopVector& pos) {
46 return *reinterpret_cast<uint32_t*>(frame.data() + pos.y() * frame.stride() +
62 DesktopFrame* frame = local
64 uint32_t* data = reinterpret_cast<uint32_t*>(frame->data());
70 return frame;
143 void VerifyFrame(const DesktopFrame& frame,
157 GetFramePixel(frame, p));
159 EXPECT_EQ(GetFakeFramePixelValue(p), GetFramePixel(frame, p));
179 virtual void OnCaptureCompleted(DesktopFrame* frame) OVERRIDE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoderTest.cpp 74 ImageFrame* frame = decoder->frameBufferAtIndex(i); local
75 baselineHashes->append(hashSkBitmap(frame->getSkBitmap()));
96 ImageFrame* frame = decoder->frameBufferAtIndex(j); local
97 EXPECT_EQ(baselineHashes[j], hashSkBitmap(frame->getSkBitmap()));
106 ImageFrame* frame = decoder->frameBufferAtIndex(i - 1); local
107 EXPECT_EQ(baselineHashes[i - 1], hashSkBitmap(frame->getSkBitmap()));
129 ImageFrame* frame = decoder->frameBufferAtIndex(j); local
130 EXPECT_EQ(baselineHashes[j], hashSkBitmap(frame->getSkBitmap()));
147 ImageFrame* frame = decoder->frameBufferAtIndex(0); local
148 uint32_t generationID0 = frame->getSkBitmap().getGenerationID()
176 ImageFrame* frame = decoder->frameBufferAtIndex(0); local
231 ImageFrame* frame = decoder->frameBufferAtIndex(frameCount - 1); local
251 ImageFrame* frame = decoder->frameBufferAtIndex(1); local
262 ImageFrame* frame; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp 51 #include "core/frame/FrameView.h"
52 #include "core/frame/LocalFrame.h"
53 #include "core/frame/Settings.h"
243 static void resourceContent(ErrorString* errorString, LocalFrame* frame, const KURL& url, String* result, bool* base64Encoded)
245 DocumentLoader* loader = InspectorPageAgent::assertDocumentLoader(errorString, frame);
249 if (!InspectorPageAgent::cachedResourceContent(InspectorPageAgent::cachedResource(frame, url), result, base64Encoded))
322 Resource* InspectorPageAgent::cachedResource(LocalFrame* frame, const KURL& url)
324 Document* document = frame->document();
329 Vector<Document*> allImports = InspectorPageAgent::importsForFrame(frame);
585 LocalFrame* frame = m_page->deprecatedLocalMainFrame() local
729 LocalFrame* frame = assertFrame(&errorString, frameId); local
775 LocalFrame* frame = frameForId(frameId); local
797 LocalFrame* frame = assertFrame(errorString, frameId); local
943 LocalFrame* frame = mainFrame(); local
1098 LocalFrame* frame = frameForId(frameId); local
    [all...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-s390x-linux.c 72 /*--- Signal frame layouts ---*/
78 // Linux has 2 signal frame structures: one for normal signal
84 // frame is. Unfortunately, things like gcc's exception unwinding
85 // make assumptions about the locations of various parts of the frame,
88 /* Valgrind-specific parts of the signal frame */
273 VG_(printf)("frame=%#lx seg=%#lx-%#lx\n",
296 /* For tracking memory events, indicate the entire frame has been
305 /* Build the Valgrind-specific part of a signal frame. */
307 static void build_vg_sigframe(struct vg_sigframe *frame,
312 frame->sigNo_private = sigNo
333 struct sigframe *frame; local
392 struct rt_sigframe *frame; local
    [all...]
sigframe-ppc32-linux.c 79 /*--- Signal frame layouts ---*/
85 // Linux has 2 signal frame structures: one for normal signal
91 // frame is. Unfortunately, things like gcc's exception unwinding
92 // make assumptions about the locations of various parts of the frame,
143 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
175 amd64-linux scheme for removing the stack frame. So instead be
179 VG_TRACK(pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
196 //:: /* Valgrind-specific parts of the signal frame */
517 VG_(printf)("frame=%#lx seg=%#lx-%#lx\n",
540 /* For tracking memory events, indicate the entire frame has bee
712 struct rt_sigframe *frame = (struct rt_sigframe *) sp; local
748 struct nonrt_sigframe *frame = (struct nonrt_sigframe *) sp; local
902 struct rt_sigframe *frame = (struct rt_sigframe *)sp; local
909 struct nonrt_sigframe *frame = (struct nonrt_sigframe *)sp; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 53 #include "core/frame/FrameHost.h"
54 #include "core/frame/FrameView.h"
55 #include "core/frame/LocalFrame.h"
56 #include "core/frame/PinchViewport.h"
57 #include "core/frame/Settings.h"
210 RefPtrWillBeRawPtr<LocalFrame> frame = toLocalFrame(webViewHelper->webViewImpl()->page()->mainFrame()); local
211 ASSERT(frame);
212 Element* element = frame->document()->getElementById(testcase.c_str());
213 return frame->nodeImage(*element);
301 // Now retrieve the frame's text and ensure it was modified by running javascript
667 RefPtrWillBeRawPtr<LocalFrame> frame = toLocalFrame(webViewHelper.webViewImpl()->page()->mainFrame()); local
2827 WebLocalFrame* frame; member in struct:__anon16034::ContextLifetimeTestWebFrameClient::Notification
2991 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
3050 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
3089 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
3544 WebFrame* frame; local
3573 WebFrame* frame; local
3594 WebFrame* frame; local
3629 WebFrame* frame; local
3666 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
3714 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
3789 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
3829 WebLocalFrameImpl* frame; local
4017 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
4236 LocalFrame* frame = webViewImpl->mainFrameImpl()->frame(); local
4363 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
4443 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
4453 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4497 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4528 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4557 LocalFrame* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame())->frame(); local
4590 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4665 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4695 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4717 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
4746 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.webView()->mainFrame()); local
5163 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5210 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5228 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5264 WebFrame* frame = WebLocalFrame::create(m_childClient); local
5404 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5518 WebFrame* frame() { return m_frame; } function in class:__anon16034::TestHistoryWebFrameClient
5537 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5594 WebLocalFrameImpl* frame = (WebLocalFrameImpl*)webViewHelper.webView()->mainFrame(); local
5609 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5901 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
5967 WebFrame* frame = webViewHelper.webView()->mainFrame(); local
6011 WebLocalFrameImpl* frame = webViewHelper.webViewImpl()->mainFrameImpl(); local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Preview.cpp 39 static void preview_notify_cb(mm_camera_ch_data_buf_t *frame,
52 pme->processPreviewFrame(frame);
510 uint32_t frame_len = 0; /* frame planner length */
570 mDisplayStreamBuf.frame[i].fd = mHalCamCtrl->mPreviewMemory.private_buffer_handle[i]->fd;
571 mDisplayStreamBuf.frame[i].cbcr_off = planes[0];
572 mDisplayStreamBuf.frame[i].y_off = 0;
573 mDisplayStreamBuf.frame[i].path = OUTPUT_TYPE_P;
576 mDisplayStreamBuf.frame[i].buffer =
578 mDisplayStreamBuf.frame[i].ion_alloc.len = mHalCamCtrl->mPreviewMemory.private_buffer_handle[i]->size;
579 mDisplayStreamBuf.frame[i].ion_dev_fd = mHalCamCtrl->mPreviewMemory.main_ion_fd[i]
    [all...]
  /external/chromium_org/content/renderer/media/
video_track_adapter.cc 22 // Amount of frame intervals to wait before considering the source as muted, for
23 // the first frame and under normal conditions, respectively. First frame might
29 // frame rate is specified.
34 // The reference to |frame| is kept in the closure that calls this method.
36 const scoped_refptr<media::VideoFrame>& frame) {
70 void DeliverFrame(const scoped_refptr<media::VideoFrame>& frame,
87 const scoped_refptr<media::VideoFrame>& frame,
91 // Returns |true| if the input frame rate is higher that the requested max
92 // frame rate and |frame| should be dropped
    [all...]
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.h 80 // stream frame or a minimal ack frame. Sets |*payload_length| to the number
170 MOCK_METHOD1(OnStreamFrame, bool(const QuicStreamFrame& frame));
171 MOCK_METHOD1(OnAckFrame, bool(const QuicAckFrame& frame));
173 bool(const QuicCongestionFeedbackFrame& frame));
174 MOCK_METHOD1(OnStopWaitingFrame, bool(const QuicStopWaitingFrame& frame));
175 MOCK_METHOD1(OnPingFrame, bool(const QuicPingFrame& frame));
177 MOCK_METHOD1(OnRstStreamFrame, bool(const QuicRstStreamFrame& frame));
179 bool(const QuicConnectionCloseFrame& frame));
180 MOCK_METHOD1(OnGoAwayFrame, bool(const QuicGoAwayFrame& frame));
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
browser.c 66 int frame = XRayFrameGetTail(capture); local
67 while(frame != head) {
70 capture, frame);
72 capture, frame);
78 printf("Xray timestamp calibration frame %d: %f %f\n",
79 frame, scale_a, scale_b);
81 int start = XRayFrameGetTraceStartIndex(capture, frame);
82 int end = XRayFrameGetTraceEndIndex(capture, frame);
151 frame = XRayFrameGetNext(capture, frame);
    [all...]
  /external/lldb/examples/python/
jump.py 3 def parse_linespec (linespec, frame, result):
18 target = frame.GetThread().GetProcess().GetTarget()
28 line_entry = frame.GetLineEntry()
30 result.AppendMessage("Specified a line in the current file, but the current frame doesn't have line table information.")
40 line_entry = frame.GetLineEntry()
42 result.AppendMessage("Specified a line in the current file, but the current frame doesn't have line table information.")
52 line_entry = frame.GetLineEntry()
54 result.AppendMessage("Specified a line in the current file, but the current frame doesn't have line table information.")
134 frame = thread.GetSelectedFrame()
135 if not frame.IsValid()
    [all...]
  /external/lldb/test/lang/objc/blocks/
TestObjCIvarsInBlocks.py 62 frame = thread.GetFrameAtIndex(0)
63 self.assertTrue (frame, "frame 0 is valid")
66 direct_blocky = frame.GetValueForVariablePath ("blocky_ivar")
70 self_var = frame.GetValueForVariablePath ("self")
86 direct_expr = frame.EvaluateExpression ("blocky_ivar + 10")
90 indirect_expr = frame.EvaluateExpression ("self->blocky_ivar + 10")
108 frame = thread.GetFrameAtIndex(0)
109 self.assertTrue (frame, "frame 0 is valid"
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce1.asm 10 [savexmm128 xmm7, 020h];the offset is from the base of the frame
11 ;not the scaled offset of the frame
15 [savereg rdi, 010h]; you can still use RSP as the base of the frame
20 ; because we have a frame pointer.
21 ; if we didn't have a frame pointer, this would be illegal
23 ; there would be no need for a frame pointer
27 ; we can unwind from the following AV because of the frame pointer
sce3.asm 10 [savexmm128 xmm7, 020h];the offset is from the base of the frame
11 ;not the scaled offset of the frame
15 [savereg rdi, 010h]; you can still use RSP as the base of the frame
20 ; because we have a frame pointer.
21 ; if we didn't have a frame pointer, this would be illegal
23 ; there would be no need for a frame pointer
27 ; we can unwind from the following AV because of the frame pointer
  /external/lldb/test/lang/objc/objc-dynamic-value/
TestObjCDynamicValue.py 92 frame = thread.GetFrameAtIndex(0)
93 myObserver = frame.FindVariable('myObserver', lldb.eDynamicCanRunTarget)
101 frame = thread.GetFrameAtIndex(0)
102 myObserver_static = frame.FindVariable('myObserver', lldb.eNoDynamicValues)
108 # The "frame var" code uses another path to get into children, so let's
113 self.expect('frame var -d run-target myObserver->_source', 'frame var finds its way into a child member',
118 self.expect('frame var -d run-target myObserver->_source -T', 'the KVO-ed class is hidden',
121 self.expect('frame var -d run-target myObserver->_source -T', 'the KVO-ed class is hidden', matching = False,
142 frame = thread.GetFrameAtIndex(0
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 190 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option); local
191 if (frame == NULL) {
192 ALOGE("failed to capture a video frame");
195 size_t size = sizeof(VideoFrame) + frame->mSize;
199 delete frame;
205 delete frame;
209 frameCopy->mWidth = frame->mWidth;
210 frameCopy->mHeight = frame->mHeight;
211 frameCopy->mDisplayWidth = frame->mDisplayWidth;
212 frameCopy->mDisplayHeight = frame->mDisplayHeight
    [all...]

Completed in 2219 milliseconds

<<21222324252627282930>>