Searched defs:frame (Results 201 - 225 of 1151) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouch.cpp30 #include "core/frame/FrameView.h"
31 #include "core/frame/LocalFrame.h"
36 static FloatPoint contentsOffset(LocalFrame* frame) argument
38 if (!frame)
40 FrameView* frameView = frame->view();
43 float scale = 1.0f / frame->pageZoomFactor();
47 Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force) argument
50 , m_clientPos(pagePos - contentsOffset(frame))
57 float scaleFactor = frame ? frame
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInputMethodControllerTest.cpp10 #include "core/frame/LocalFrame.h"
22 InputMethodController& controller() { return frame().inputMethodController(); }
24 LocalFrame& frame() const { return m_dummyPageHolder->frame(); } function in class:__anon11063::InputMethodControllerTest
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
H A DApplicationCache.cpp33 #include "core/frame/LocalFrame.h"
39 ApplicationCache::ApplicationCache(LocalFrame* frame) argument
40 : DOMWindowProperty(frame)
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DDOMPlugin.cpp27 DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index) argument
28 : FrameDestructionObserver(frame)
H A DDOMPluginArray.cpp23 #include "core/frame/LocalFrame.h"
31 DOMPluginArray::DOMPluginArray(LocalFrame* frame) argument
32 : DOMWindowProperty(frame)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebLeakDetector.cpp84 void WebLeakDetectorImpl::collectGarbageAndGetDOMCounts(WebLocalFrame* frame) argument
90 RefPtrWillBeRawPtr<Document> document = PassRefPtrWillBeRawPtr<Document>(frame->document());
H A DWebPluginContainerImpl.h35 #include "core/frame/FrameDestructionObserver.h"
204 // keep a traced member reference to the frame rather than as a
207 // frame. Any access to an invalid frame via this bare pointer
214 LocalFrame* frame() const { return m_frame; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DCustomEventTest.cpp103 WebLocalFrameImpl* frame = toWebLocalFrameImpl(webViewHelper.initializeAndLoad(baseURL + path)->mainFrame()); local
104 WebDOMEvent event = frame->frame()->document()->createEvent("CustomEvent", IGNORE_EXCEPTION);
107 v8::Isolate* isolate = toIsolate(frame->frame());
111 frame->frame()->document()->addEventListener("blah", listener, false);
112 frame->frame()->document()->dispatchEvent(event);
H A DWebHelperPluginTest.cpp20 FakePlaceholderWebPlugin(WebFrame* frame, const WebPluginParams& params) argument
21 : FakeWebPlugin(frame, params)
34 virtual WebPlugin* createPlugin(WebLocalFrame* frame, const WebPluginParams& params) OVERRIDE
36 return m_createPlaceholder ? new FakePlaceholderWebPlugin(frame, params) : new FakeWebPlugin(frame, params);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakevideotrackrenderer.h51 virtual void RenderFrame(const cricket::VideoFrame* frame) { argument
52 fake_renderer_.RenderFrame(frame);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcapturerenderadapter.cc51 // taken by the video frame signal.
114 void CaptureRenderAdapter::MaybeSetRenderingSize(const VideoFrame* frame) { argument
117 const bool new_resolution = iter->render_width != frame->GetWidth() ||
118 iter->render_height != frame->GetHeight();
120 if (iter->renderer->SetSize(static_cast<int>(frame->GetWidth()),
121 static_cast<int>(frame->GetHeight()), 0)) {
122 iter->render_width = frame->GetWidth();
123 iter->render_height = frame->GetHeight();
125 LOG(LS_ERROR) << "Captured frame size not supported by renderer: " <<
126 frame
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.h79 // Callback when a frame is captured by camera.
81 webrtc::I420VideoFrame& frame);
83 webrtc::VideoFrame& frame,
100 WebRtcCapturedFrame(const webrtc::I420VideoFrame& frame,
82 OnIncomingCapturedEncodedFrame(const int32_t id, webrtc::VideoFrame& frame, webrtc::VideoCodecType codec_type) argument
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Ddecode_with_drops.c26 // To drop a range of frames, specify the starting frame and the ending
27 // frame to drop, separated by a dash. The following command will drop
52 // The example decides whether to drop the frame based on the current
53 // frame number, immediately before decoding the frame.
119 const unsigned char *frame = vpx_video_reader_get_frame(reader, local
121 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
122 die_codec(&codec, "Failed to decode frame.");
H A Dpostproc.c28 // best postprocessing filter on a frame by frame basis based on the amount
31 // necessary to provide the best quality frame. This example gives the
32 // codec 15ms (15000us) to return a frame. Remember that this is a soft
101 const unsigned char *frame = vpx_video_reader_get_frame(reader, local
118 // Decode the frame with 15ms deadline
119 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000))
120 die_codec(&codec, "Failed to decode frame");
/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Daudio_frame_operations_unittest.cc30 void SetFrameData(AudioFrame* frame, int16_t left, int16_t right) { argument
31 for (int i = 0; i < frame->samples_per_channel_ * 2; i += 2) {
32 frame->data_[i] = left;
33 frame->data_[i + 1] = right;
37 void SetFrameData(AudioFrame* frame, int16_t data) { argument
38 for (int i = 0; i < frame->samples_per_channel_; i++) {
39 frame->data_[i] = data;
133 // Set data to "stereo", despite it being a mono frame.
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_external_media_impl.cc147 AudioFrame* frame) {
181 frame->sample_rate_hz_ = desired_sample_rate_hz == 0 ? -1 :
183 return channelPtr->GetAudioFrame(channel, *frame);
146 GetAudioFrame(int channel, int desired_sample_rate_hz, AudioFrame* frame) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc45 uhwptr *frame = (uhwptr *)bp; local
46 uhwptr *prev_frame = frame - 1;
48 // Avoid infinite loop when frame == frame[0] by using frame > prev_frame.
49 while (frame > prev_frame &&
50 frame < (uhwptr *)stack_top - 2 &&
51 frame > (uhwptr *)stack_bottom &&
52 IsAligned((uptr)frame, sizeof(*frame))
[all...]
/external/libvpx/libvpx/examples/
H A Dpostproc.c28 // best postprocessing filter on a frame by frame basis based on the amount
31 // necessary to provide the best quality frame. This example gives the
32 // codec 15ms (15000us) to return a frame. Remember that this is a soft
103 const unsigned char *frame = vpx_video_reader_get_frame(reader, local
120 // Decode the frame with 15ms deadline
121 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 15000))
122 die_codec(&codec, "Failed to decode frame");
/external/lldb/examples/python/
H A Ddisasm.py69 # Get the first frame
70 frame = thread.GetFrameAtIndex (0) variable
71 if frame:
72 # Print some simple frame info
73 print frame
74 function = frame.GetFunction()
84 symbol = frame.GetSymbol();
92 registerList = frame.GetRegisters()
/external/lldb/include/lldb/Target/
H A DUnwind.h82 CreateRegisterContextForFrame (StackFrame *frame) argument
85 return DoCreateRegisterContextForFrame (frame);
110 DoCreateRegisterContextForFrame (StackFrame *frame) = 0;
/external/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp91 ThreadMachCore::CreateRegisterContextForFrame (StackFrame *frame) argument
96 if (frame)
97 concrete_frame_idx = frame->GetConcreteFrameIndex ();
115 reg_ctx_sp = unwinder->CreateRegisterContextForFrame (frame);
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java59 // of the frame list. So we'll use a linear search for small animations
60 // and only pull the binary search out when the frame count is large.
69 AnimationFrame frame = frames.get(x);
70 currentTime += frame.holdTime;
72 result = frame;
83 public void addFrame(AnimationFrame frame) { argument
85 mFrames.add(frame);
86 mLength += frame.holdTime;
/external/valgrind/main/none/tests/
H A Dthread-exits.c49 volatile char frame[FRAME]; local
51 memset((char *)frame, 0xff, sizeof(frame));
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dframing.c168 PRIVATE OI_UINT8 OI_SBC_CalculateChecksum(OI_CODEC_SBC_FRAME_INFO *frame, OI_BYTE const *data) argument
177 OI_UINT count = (frame->nrof_subbands * frame->nrof_channels / 2u) + 4;
179 if (frame->mode == SBC_JOINT_STEREO && frame->nrof_subbands == 8) {
189 if (frame->mode == SBC_JOINT_STEREO && frame->nrof_subbands == 4) {
196 void OI_SBC_ExpandFrameFields(OI_CODEC_SBC_FRAME_INFO *frame) argument
198 frame->nrof_blocks = block_values[frame
[all...]
/external/chromium_org/android_webview/renderer/
H A Dprint_web_view_helper_linux.cc61 bool PrintWebViewHelper::PrintPagesNative(blink::WebFrame* frame, argument
91 PrintPageInternal(page_params, canvas_size, frame, &metafile);
155 WebFrame* frame,
159 ComputePageLayoutInPointsForCss(frame, params.page_number, params.params,
191 RenderPageContent(frame, params.page_number, canvas_area, content_area,
152 PrintPageInternal( const PrintMsg_PrintPage_Params& params, const gfx::Size& canvas_size, WebFrame* frame, PdfMetafileSkia* metafile) argument

Completed in 411 milliseconds

1234567891011>>