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

<<11121314151617181920>>

  /external/chromium_org/media/filters/
test_video_frame_scheduler.cc 12 const scoped_refptr<VideoFrame> frame,
15 : frame(frame), wall_ticks(wall_ticks), done_cb(done_cb) {
28 const scoped_refptr<VideoFrame>& frame,
31 scheduled_frames_.push_back(ScheduledFrame(frame, wall_ticks, done_cb));
62 done_frames[i].done_cb.Run(done_frames[i].frame, reason);
  /external/chromium_org/ppapi/c/
ppb_media_stream_video_track.h 50 * the plugin expects to hold on to more than one frame at a time (e.g. to do
51 * multi-frame processing), it should request that many more.
61 * frame size of the video track will be used.
71 * frame size of the video track will be used.
82 * <code>PP_VIDEOFRAME_FORMAT_UNKNOWN</code> is specified, the orignal frame
118 * Configures underlying frame buffers for incoming frames.
121 * chosen such that inter-frame processing time variability won't overrun the
190 * Gets the next video frame from the MediaStream track.
191 * If internal processing is slower than the incoming frame rate, new frames
194 * a spot for another frame to be buffered
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
InternalsGeolocation.cpp 47 ASSERT(document && document->frame());
50 for (Frame* childFrame = document->page()->mainFrame(); childFrame; childFrame = childFrame->tree().traverseNext()) {
58 ASSERT(document && document->frame());
67 ASSERT(document && document->frame());
76 ASSERT(document && document->frame());
85 ASSERT(document && document->frame());
94 GeolocationController* controller = GeolocationController::from(document->frame());
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
NavigatorStorageQuota.cpp 34 #include "core/frame/Navigator.h"
40 NavigatorStorageQuota::NavigatorStorageQuota(LocalFrame* frame)
41 : DOMWindowProperty(frame)
56 supplement = new NavigatorStorageQuota(navigator.frame());
79 if (!m_storageQuota && frame())
86 if (!m_temporaryStorage && frame())
93 if (!m_persistentStorage && frame())
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer.cc 55 bool VideoRecorder::RecordFrame(const CapturedFrame& frame) {
62 if (!frame.GetDataSize(&size)) {
63 LOG(LS_ERROR) << "Unable to calculate the data size of the frame";
68 // Convert the frame header to bytebuffer.
70 buffer.WriteUInt32(frame.width);
71 buffer.WriteUInt32(frame.height);
72 buffer.WriteUInt32(frame.fourcc);
73 buffer.WriteUInt32(frame.pixel_width);
74 buffer.WriteUInt32(frame.pixel_height);
75 buffer.WriteUInt64(frame.elapsed_time)
190 CapturedFrame frame; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/interface/
video_processing.h 42 Structure to hold frame statistics. Populate it with GetFrameStats().
54 uint32_t hist[256]; // FRame histogram.
55 uint32_t mean; // Frame Mean value.
56 uint32_t sum; // Sum of frame.
66 kNoWarning, // Frame has acceptable brightness.
67 kDarkWarning, // Frame is too dark.
68 kBrightWarning // Frame is too bright.
106 Retrieves statistics for the input frame. This function must be used to
110 The frame statistics will be stored here on return.
112 \param[in] frame
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
DebugWebSocket.java 53 protected void handleWebsocketFrame(WebSocketFrame frame) throws IOException {
55 System.out.println("R " + frame);
57 super.handleWebsocketFrame(frame);
61 public synchronized void sendFrame(WebSocketFrame frame) throws IOException {
63 System.out.println("S " + frame);
65 super.sendFrame(frame);
  /external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java 59 // 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); local
70 currentTime += frame.holdTime;
72 result = frame;
83 public void addFrame(AnimationFrame frame) {
85 mFrames.add(frame);
86 mLength += frame.holdTime;
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
x86-mont.pl 57 $frame=32; # size of above frame rounded up to 16n
69 &lea ("esp",&DWP(-$frame,"esp","edi",4)); # alloca($frame+4*(num+2))
164 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]=
179 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]=
185 &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1]
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
225 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 88 FrameStruct frame = (FrameStruct )e.nextElement(); local
89 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
90 classSignature = getClassSignature(frame.loc.classID);
91 logWriter.println("\t" + i + ". frameID=" + frame.frameID
94 + "(" + frame.loc.index + ")");
142 FrameStruct frame = (FrameStruct )e.nextElement(); local
143 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
144 classSignature = getClassSignature(frame.loc.classID)
197 FrameStruct frame = (FrameStruct )e.nextElement(); local
258 FrameStruct frame = (FrameStruct )e.nextElement(); local
284 FrameStruct frame = (FrameStruct )e.nextElement(); local
353 FrameStruct frame = (FrameStruct )e.nextElement(); local
381 FrameStruct frame = (FrameStruct )e.nextElement(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationController.cpp 9 #include "core/frame/FrameView.h"
10 #include "core/frame/LocalFrame.h"
24 void ScreenOrientationController::provideTo(LocalFrame& frame, WebScreenOrientationClient* client)
28 ScreenOrientationController* controller = new ScreenOrientationController(frame, client);
29 WillBeHeapSupplement<LocalFrame>::provideTo(frame, supplementName(), adoptPtrWillBeNoop(controller));
32 ScreenOrientationController* ScreenOrientationController::from(LocalFrame& frame)
34 return static_cast<ScreenOrientationController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName()));
37 ScreenOrientationController::ScreenOrientationController(LocalFrame& frame, WebScreenOrientationClient* client)
38 : FrameDestructionObserver(&frame)
39 , PlatformEventController(frame.page()
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_and_cursor_composer.cc 54 // DesktopFrame wrapper that draws mouse on a frame and restores original
55 // content before releasing the underlying frame.
58 // Takes ownership of |frame|.
59 DesktopFrameWithCursor(DesktopFrame* frame,
73 DesktopFrameWithCursor::DesktopFrameWithCursor(DesktopFrame* frame,
76 : DesktopFrame(frame->size(), frame->stride(),
77 frame->data(), frame->shared_memory()),
78 original_frame_(frame) {
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/helpers/
vie_to_file_renderer.cc 20 struct Frame {
22 Frame(unsigned char* buffer,
39 DISALLOW_COPY_AND_ASSIGN(Frame);
84 // Signal that a frame is ready to be written to file.
130 test::Frame* frame; local
132 frame = new test::Frame(buffer, buffer_size, time_stamp, render_time);
134 // Reuse an already allocated frame.
135 frame = free_frame_queue_.front()
171 test::Frame* frame = render_queue_.front(); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_buffer.cc 45 void FrameList::InsertFrame(VCMFrameBuffer* frame) {
46 insert(rbegin().base(), FrameListPair(frame->TimeStamp(), frame));
60 VCMFrameBuffer* frame = it->second;
62 return frame;
78 // Throw at least one frame.
99 // This frame is empty, try to update the last decoded state and drop it
335 // We have received frame(s) since last call to this function
347 // Calculate frame rate
381 // Will the packet sequence be complete if the next frame is grabbed fo
488 VCMFrameBuffer* frame = decodable_frames_.PopFrame(timestamp); local
607 VCMFrameBuffer* frame = NULL; local
809 VCMFrameBuffer* frame = it->second; local
1097 VCMFrameBuffer* frame = free_frames_.front(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bdb.py 45 def trace_dispatch(self, frame, event, arg):
49 return self.dispatch_line(frame)
51 return self.dispatch_call(frame, arg)
53 return self.dispatch_return(frame, arg)
55 return self.dispatch_exception(frame, arg)
65 def dispatch_line(self, frame):
66 if self.stop_here(frame) or self.break_here(frame):
67 self.user_line(frame)
71 def dispatch_call(self, frame, arg)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
bdb.py 45 def trace_dispatch(self, frame, event, arg):
49 return self.dispatch_line(frame)
51 return self.dispatch_call(frame, arg)
53 return self.dispatch_return(frame, arg)
55 return self.dispatch_exception(frame, arg)
65 def dispatch_line(self, frame):
66 if self.stop_here(frame) or self.break_here(frame):
67 self.user_line(frame)
71 def dispatch_call(self, frame, arg)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.c 68 static void EHPrintFrame(sstream_t* ss, EHFrame* frame) {
73 ssprintf(ss, "\"frame_ptr\": %u,\n", frame->frame_ptr);
74 ssprintf(ss, "\"prog_ctr\": %u,\n", frame->prog_ctr);
78 start = frame->frame_ptr + 8;
80 start = frame->frame_ptr + 16;
83 for (i = start; i < frame->next_ptr && i - start < MAX_FRAME_CAP; i += 4) {
106 EHFrame* frame) {
110 frame->prog_ctr = portable_context->prog_ctr;
111 frame->frame_ptr = portable_context->frame_ptr;
112 frame->next_ptr = EHReadPointer(portable_context->frame_ptr)
157 EHFrame frame; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.cpp 33 #include "core/frame/LocalFrame.h"
107 document().setWindowAttributeEventListener(EventTypeNames::load, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
109 document().setWindowAttributeEventListener(EventTypeNames::beforeunload, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
111 document().setWindowAttributeEventListener(EventTypeNames::unload, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
113 document().setWindowAttributeEventListener(EventTypeNames::pagehide, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
115 document().setWindowAttributeEventListener(EventTypeNames::pageshow, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
117 document().setWindowAttributeEventListener(EventTypeNames::blur, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
119 document().setWindowAttributeEventListener(EventTypeNames::error, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
121 document().setWindowAttributeEventListener(EventTypeNames::focus, createAttributeEventListener(document().frame(), name, value, eventParameterName()));
123 document().setWindowAttributeEventListener(EventTypeNames::focusin, createAttributeEventListener(document().frame(), name, value, eventParameterName()))
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
utility_unittest.cc 51 void SetMonoFrame(AudioFrame* frame, float data, int sample_rate_hz) {
52 memset(frame->data_, 0, sizeof(frame->data_));
53 frame->num_channels_ = 1;
54 frame->sample_rate_hz_ = sample_rate_hz;
55 frame->samples_per_channel_ = sample_rate_hz / 100;
56 for (int i = 0; i < frame->samples_per_channel_; i++) {
57 frame->data_[i] = data * i;
62 void SetMonoFrame(AudioFrame* frame, float data) {
63 SetMonoFrame(frame, data, frame->sample_rate_hz_)
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardViewStateManager.java 202 View frame = mKeyguardWidgetPager.getPageAt(mKeyguardWidgetPager.getPageWarpIndex()); local
203 ((KeyguardWidgetFrame)frame).showFrame(this);
208 View frame = mKeyguardWidgetPager.getPageAt(mKeyguardWidgetPager.getPageWarpIndex()); local
209 ((KeyguardWidgetFrame)frame).hideFrame(this);
212 private int getChallengeTopRelativeToFrame(KeyguardWidgetFrame frame, int top) {
215 mapPoint((View) mChallengeLayout, frame, mTmpPoint);
255 KeyguardWidgetFrame frame = mKeyguardWidgetPager.getWidgetPageAt(mPageListeningToSlider); local
256 if (frame == null) return;
260 frame.resetSize();
266 if (frame.isSmall())
287 KeyguardWidgetFrame frame = mKeyguardWidgetPager.getWidgetPageAt(mPageListeningToSlider); local
319 KeyguardWidgetFrame frame = mKeyguardWidgetPager.getWidgetPageAt(mPageListeningToSlider); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 43 #include "core/frame/LocalFrame.h"
97 LocalFrame* frame = document.frame(); local
98 ASSERT(frame);
100 if (!frame->selection().isRange())
103 if (RefPtrWillBeRawPtr<TypingCommand> lastTypingCommand = lastTypingCommandIfStillOpenForTyping(frame)) {
115 LocalFrame* frame = document.frame(); local
116 if (RefPtrWillBeRawPtr<TypingCommand> lastTypingCommand = lastTypingCommandIfStillOpenForTyping(frame)) {
120 updateSelectionIfDifferentFromCurrentSelection(lastTypingCommand.get(), frame);
135 LocalFrame* frame = document.frame(); local
160 LocalFrame* frame = document.frame(); local
172 RefPtrWillBeRawPtr<LocalFrame> frame = document.frame(); local
291 LocalFrame* frame = document().frame(); local
322 LocalFrame* frame = document().frame(); local
411 LocalFrame* frame = document().frame(); local
515 LocalFrame* frame = document().frame(); local
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 32 * A utility class for printing a merged view of the frame state and the
75 * Prints the instructions and the frame states of the given method.
85 Frame[] frames;
106 Frame frame = frames[pos]; local
107 if (frame == null) {
111 printStack(frame);
114 printLocals(frame);
119 private void printStack(Frame frame) {
    [all...]
  /external/chromium_org/third_party/libwebp/demux/
demux.c 43 typedef struct Frame {
50 int is_fragment_; // this is a frame fragment (and not a full frame).
51 int frame_num_; // the referent frame number for use in assembling fragments.
54 struct Frame* next_;
55 } Frame;
71 Frame* frames_;
72 Frame** frames_tail_;
184 // Add a frame to the end of the list, ensuring the last frame is complete
305 Frame* frame; local
350 Frame* frame; local
422 Frame* frame; local
597 const Frame* const frame = dmux->frames_; local
876 const Frame* frame; local
910 const Frame* const frame = GetFrame(dmux, iter->frame_num); local
    [all...]
  /external/webp/src/demux/
demux.c 43 typedef struct Frame {
50 int is_fragment_; // this is a frame fragment (and not a full frame).
51 int frame_num_; // the referent frame number for use in assembling fragments.
54 struct Frame* next_;
55 } Frame;
71 Frame* frames_;
72 Frame** frames_tail_;
184 // Add a frame to the end of the list, ensuring the last frame is complete
305 Frame* frame; local
350 Frame* frame; local
422 Frame* frame; local
597 const Frame* const frame = dmux->frames_; local
876 const Frame* frame; local
910 const Frame* const frame = GetFrame(dmux, iter->frame_num); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 27 #include "core/frame/LocalFrame.h"
87 void Chrome::contentsSizeChanged(LocalFrame* frame, const IntSize& size) const
89 m_client->contentsSizeChanged(frame, size);
139 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
140 if (!frame->isLocalFrame())
142 Document::PageDismissalType dismissal = toLocalFrame(frame)->document()->pageDismissalEventBeingDispatched()
    [all...]

Completed in 905 milliseconds

<<11121314151617181920>>