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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/presentation/
NavigatorPresentation.cpp 9 #include "core/frame/LocalFrame.h"
10 #include "core/frame/Navigator.h"
16 NavigatorPresentation::NavigatorPresentation(LocalFrame* frame)
17 : DOMWindowProperty(frame)
36 supplement = new NavigatorPresentation(navigator.frame());
51 if (!frame())
53 m_presentation = Presentation::create(frame()->document());
  /external/lldb/test/python_api/default-constructor/
sb_thread.py 20 frame = lldb.SBFrame()
21 obj.StepOutOfFrame(frame)
24 obj.StepOverUntil(frame, filespec, 1234)
36 for frame in obj:
37 print frame
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameSourceFilter.java 23 * <p> When a frame is injected using {@link #injectFrame(Frame)}, this source will push it on its
24 * output port and then sleep until another frame is injected.
25 * <p> Multiple frames may be injected before any frame is pushed out. In this case they will be
30 private final Queue<Frame> mFrames = new LinkedList<Frame>();
43 private synchronized Frame obtainFrame() {
53 * Call this method to inject a frame that will be pushed in a future execution of the filter.
56 public synchronized void injectFrame(Frame frame) {
63 Frame frame = obtainFrame(); local
    [all...]
  /external/chromium_org/cc/layers/
delegated_renderer_layer_impl_unittest.cc 140 LayerTreeHostImpl::FrameData frame; local
141 EXPECT_EQ(DRAW_SUCCESS, host_impl_->PrepareToDraw(&frame));
145 ASSERT_EQ(5u, frame.render_passes.size());
148 // to the frame.
149 EXPECT_EQ(4, frame.render_passes[1]->id.layer_id);
150 EXPECT_EQ(1, frame.render_passes[1]->id.index);
151 EXPECT_EQ(4, frame.render_passes[2]->id.layer_id);
152 EXPECT_EQ(2, frame.render_passes[2]->id.index);
154 EXPECT_NE(4, frame.render_passes[0]->id.layer_id);
155 EXPECT_EQ(0, frame.render_passes[0]->id.index)
174 LayerTreeHostImpl::FrameData frame; local
209 LayerTreeHostImpl::FrameData frame; local
237 LayerTreeHostImpl::FrameData frame; local
271 LayerTreeHostImpl::FrameData frame; local
303 LayerTreeHostImpl::FrameData frame; local
317 LayerTreeHostImpl::FrameData frame; local
337 LayerTreeHostImpl::FrameData frame; local
361 LayerTreeHostImpl::FrameData frame; local
400 LayerTreeHostImpl::FrameData frame; local
437 LayerTreeHostImpl::FrameData frame; local
463 LayerTreeHostImpl::FrameData frame; local
693 LayerTreeHostImpl::FrameData frame; local
748 LayerTreeHostImpl::FrameData frame; local
809 LayerTreeHostImpl::FrameData frame; local
857 LayerTreeHostImpl::FrameData frame; local
904 LayerTreeHostImpl::FrameData frame; local
1102 LayerTreeHostImpl::FrameData frame; local
1131 LayerTreeHostImpl::FrameData frame; local
1160 LayerTreeHostImpl::FrameData frame; local
1190 LayerTreeHostImpl::FrameData frame; local
1221 LayerTreeHostImpl::FrameData frame; local
1250 LayerTreeHostImpl::FrameData frame; local
1280 LayerTreeHostImpl::FrameData frame; local
1308 LayerTreeHostImpl::FrameData frame; local
1371 LayerTreeHostImpl::FrameData frame; local
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_notify.c 70 data[cnt].def.frame = &my_obj->ch[MM_CAMERA_CH_RAW].raw.stream.frame.frame[idx].frame;
71 my_obj->ch[MM_CAMERA_CH_RAW].raw.stream.frame.ref_count[idx]++;
115 myq = &mystream->frame.readyq;
116 peerq = &peerstream->frame.readyq;
123 if(!peer_frame || (node->frame.frame_id > peer_frame->frame.frame_id &&
124 node->frame.frame_id >= expected_id))
459 mm_camera_frame_t *frame; local
505 mm_camera_frame_t *frame; local
699 mm_camera_frame_t *frame; local
734 mm_camera_frame_t *frame; local
    [all...]
  /external/chromium_org/ppapi/tests/
test_media_stream_video_track.cc 99 pp::VideoFrame frame = cc.output(); local
100 ASSERT_FALSE(frame.is_null());
101 ASSERT_TRUE(frame.GetFormat() == PP_VIDEOFRAME_FORMAT_YV12 ||
102 frame.GetFormat() == PP_VIDEOFRAME_FORMAT_I420);
105 ASSERT_TRUE(frame.GetSize(&size));
109 ASSERT_GE(frame.GetTimestamp(), timestamp);
110 timestamp = frame.GetTimestamp();
112 ASSERT_GT(frame.GetDataBufferSize(), 0U);
113 ASSERT_TRUE(frame.GetDataBuffer() != NULL);
115 video_track_.RecycleFrame(frame);
166 pp::VideoFrame frame = cc2.output(); local
214 pp::VideoFrame frame = cc2.output(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.cpp 38 #include "core/frame/LocalFrame.h"
59 void PingLoader::loadImage(LocalFrame* frame, const KURL& url)
61 if (!frame->document()->securityOrigin()->canDisplay(url)) {
62 FrameLoader::reportLocalLoadFailed(frame, url.string());
69 frame->loader().fetchContext().addAdditionalRequestHeaders(frame->document(), request, FetchSubresource);
70 frame->loader().fetchContext().setFirstPartyForCookies(request);
74 PingLoader::start(frame, request, initiatorInfo);
78 void PingLoader::sendLinkAuditPing(LocalFrame* frame, const KURL& pingURL, const KURL& destinationURL)
86 frame->loader().fetchContext().addAdditionalRequestHeaders(frame->document(), request, FetchSubresource)
    [all...]
BeaconLoader.cpp 12 #include "core/frame/LocalFrame.h"
22 void BeaconLoader::prepareRequest(LocalFrame* frame, ResourceRequest& request)
28 frame->loader().fetchContext().addAdditionalRequestHeaders(frame->document(), request, FetchSubresource);
29 frame->loader().fetchContext().setFirstPartyForCookies(request);
32 void BeaconLoader::issueRequest(LocalFrame* frame, ResourceRequest& request)
37 PingLoader::start(frame, request, initiatorInfo);
40 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, const String& data, int& payloadLength)
43 prepareRequest(frame, request);
53 issueRequest(frame, request)
    [all...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-x86-linux.c 75 /*--- Signal frame layouts ---*/
81 // Linux has 2 signal frame structures: one for normal signal
87 // frame is. Unfortunately, things like gcc's exception unwinding
88 // make assumptions about the locations of various parts of the frame,
91 /* Valgrind-specific parts of the signal frame */
408 VG_(printf)("frame=%#lx seg=%#lx-%#lx\n",
431 /* For tracking memory events, indicate the entire frame has been
440 /* Build the Valgrind-specific part of a signal frame. */
442 static void build_vg_sigframe(struct vg_sigframe *frame,
447 frame->sigNo_private = sigNo
468 struct sigframe *frame; local
526 struct rt_sigframe *frame; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtctexturevideoframe_unittest.cc 48 cricket::WebRtcTextureVideoFrame frame(&handle, 640, 480, 100, 200);
49 EXPECT_EQ(&handle, frame.GetNativeHandle());
50 EXPECT_EQ(640u, frame.GetWidth());
51 EXPECT_EQ(480u, frame.GetHeight());
52 EXPECT_EQ(100, frame.GetElapsedTime());
53 EXPECT_EQ(200, frame.GetTimeStamp());
54 frame.SetElapsedTime(300);
55 EXPECT_EQ(300, frame.GetElapsedTime());
56 frame.SetTimeStamp(400);
57 EXPECT_EQ(400, frame.GetTimeStamp())
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.cpp 44 // Frame zero should always be supplied by the thread...
76 UnwindMacOSXFrameBackchain::DoCreateRegisterContextForFrame (StackFrame *frame)
79 uint32_t concrete_idx = frame->GetConcreteFrameIndex ();
112 Frame_i386 frame = { static_cast<uint32_t>(cursor.fp), static_cast<uint32_t>(cursor.pc) }; local
116 const size_t k_frame_size = sizeof(frame);
118 while (frame.fp != 0 && frame.pc != 0 && ((frame.fp & 7) == 0))
121 if (process->ReadMemory (frame.fp, &frame.fp, k_frame_size, error) != k_frame_size
211 Frame_x86_64 frame = { cursor.fp, cursor.pc }; local
    [all...]
  /external/chromium_org/media/base/
video_frame_pool.cc 20 // Returns a frame from the pool that matches the specified
21 // parameters or creates a new frame if no suitable frame exists in
22 // the pool. The pool is drained if no matching frame is found.
29 // Shuts down the frame pool and releases all frames in |frames_|.
40 // Called when the frame wrapper gets destroyed.
41 // |frame| is the actual frame that was wrapped and is placed
43 void FrameReleased(const scoped_refptr<VideoFrame>& frame);
67 scoped_refptr<VideoFrame> frame; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 82 * the passed-in frame to represent the end result.
85 * @param frame {@code non-null;} frame to operate on
87 public void simulate(ByteBlock bb, Frame frame) {
90 visitor.setFrame(frame);
99 frame.annotate(ex);
106 * making appropriate calls on the given frame.
109 * @param frame {@code non-null;} frame to operate o
198 private Frame frame; field in class:Simulator.SimVisitor
    [all...]
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
51 * @param frame {@code non-null;} frame to operate on
54 public void popArgs(Frame frame, int count);
64 * @param frame {@code non-null;} frame to operate on
67 public void popArgs(Frame frame, Prototype prototype);
74 * @param frame {@code non-null;} frame to operate o
    [all...]
  /external/chromium_org/extensions/renderer/
script_injection_manager.cc 44 virtual void DidCreateDocumentElement(blink::WebLocalFrame* frame) OVERRIDE;
45 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE;
46 virtual void DidFinishLoad(blink::WebLocalFrame* frame) OVERRIDE;
47 virtual void DidStartProvisionalLoad(blink::WebLocalFrame* frame) OVERRIDE;
48 virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE;
60 void RunIdle(blink::WebFrame* frame);
62 // Indicate that the given |frame| is no longer valid because it is starting
64 void InvalidateFrame(blink::WebFrame* frame);
70 // a set of those that are valid, so we don't notify that an invalid frame
103 blink::WebLocalFrame* frame) {
    [all...]
  /external/lldb/source/API/
SBFrame.cpp 117 StackFrame *frame = NULL; local
125 frame = exe_ctx.GetFramePtr();
126 if (frame)
128 sb_sym_ctx.SetSymbolContext(&frame->GetSymbolContext (resolve_scope));
133 log->Printf ("SBFrame::GetVariables () => error: could not reconstruct frame object for this SBFrame.");
145 frame, resolve_scope, sb_sym_ctx.get());
159 StackFrame *frame = NULL; local
167 frame = exe_ctx.GetFramePtr();
168 if (frame)
170 module_sp = frame->GetSymbolContext (eSymbolContextModule).module_sp
201 StackFrame *frame = NULL; local
241 StackFrame *frame = NULL; local
281 StackFrame *frame = NULL; local
320 StackFrame *frame = NULL; local
358 StackFrame *frame = NULL; local
398 StackFrame *frame = NULL; local
435 StackFrame *frame = exe_ctx.GetFramePtr(); local
454 StackFrame *frame = NULL; local
494 StackFrame *frame = NULL; local
535 StackFrame *frame = NULL; local
575 StackFrame *frame = NULL; local
615 StackFrame *frame = exe_ctx.GetFramePtr(); local
656 StackFrame *frame = exe_ctx.GetFramePtr(); local
681 StackFrame *frame = NULL; local
721 StackFrame *frame = exe_ctx.GetFramePtr(); local
750 StackFrame *frame = NULL; local
810 StackFrame *frame = exe_ctx.GetFramePtr(); local
837 StackFrame *frame = NULL; local
1017 StackFrame *frame = NULL; local
1058 StackFrame *frame = exe_ctx.GetFramePtr(); local
1081 StackFrame *frame = NULL; local
1177 StackFrame *frame = NULL; local
1227 StackFrame *frame = NULL; local
1284 StackFrame *frame; local
1321 StackFrame *frame = exe_ctx.GetFramePtr(); local
1377 StackFrame *frame = NULL; local
1439 StackFrame *frame = NULL; local
1477 StackFrame *frame = NULL; local
    [all...]
  /external/chromium_org/third_party/jinja2/
compiler.py 106 # frames or because they are special for the frame)
138 class Frame(object):
145 # a toplevel frame is the root + soft frames such as if conditions.
148 # the root frame is basically just the outermost frame, so no if
158 # this for example affects {% filter %} or {% macro %}. If a frame
169 # the parent of this frame
211 """Return an inner frame."""
212 return Frame(self.eval_ctx, self)
215 """Return a soft frame. A soft frame may not be modified a
    [all...]
  /external/chromium_org/ash/frame/
frame_border_hit_test_controller.cc 5 #include "ash/frame/frame_border_hit_test_controller.h"
8 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
22 FrameBorderHitTestController::FrameBorderHitTestController(views::Widget* frame)
23 : frame_window_(frame->GetNativeWindow()) {
46 // Check the frame first, as we allow a small area overlapping the contents
48 views::Widget* frame = view->GetWidget();
49 bool can_ever_resize = frame->widget_delegate()->CanResize();
53 frame->IsMaximized() || frame->IsFullscreen() ? 0 :
64 int client_component = frame->client_view()->NonClientHitTest
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
PrivateScriptTestTest.cpp 26 , m_privateScriptTest(PrivateScriptTest::create(frame()))
34 LocalFrame* frame() const { return &m_dummyPageHolder->frame(); } function in class:blink::__anon15801::PrivateScriptTestTest
49 success = V8PrivateScriptTest::PrivateScript::addIntegerForPrivateScriptOnlyMethod(frame(), privateScriptTest(), 100, 200, &result);
58 success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeGetter(frame(), privateScriptTest(), &result);
61 success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeSetter(frame(), privateScriptTest(), "foo");
63 success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeGetter(frame(), privateScriptTest(), &result);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
NavigatorServiceWorker.cpp 9 #include "core/frame/LocalDOMWindow.h"
10 #include "core/frame/LocalFrame.h"
11 #include "core/frame/Navigator.h"
17 : DOMWindowProperty(navigator.frame())
25 if (!document.frame() || !document.frame()->domWindow())
27 Navigator& navigator = document.frame()->domWindow()->navigator();
60 if (!m_serviceWorker && frame()) {
61 ASSERT(frame()->domWindow());
62 m_serviceWorker = ServiceWorkerContainer::create(frame()->domWindow()->executionContext())
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FieldPort.java 43 public void pushFrame(Frame frame) {
44 setFieldFrame(frame, false);
48 public void setFrame(Frame frame) {
49 setFieldFrame(frame, true);
78 public synchronized Frame pullFrame() {
79 throw new RuntimeException("Cannot pull frame on " + this + "!");
97 protected synchronized void setFieldFrame(Frame frame, boolean isAssignment)
    [all...]
StreamPort.java 25 private Frame mFrame;
41 public void setFrame(Frame frame) {
42 assignFrame(frame, true);
46 public void pushFrame(Frame frame) {
47 assignFrame(frame, false);
50 protected synchronized void assignFrame(Frame frame, boolean persistent) {
52 checkFrameType(frame, persistent)
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
FrameDecorator.py 28 """Basic implementation of a Frame Decorator"""
30 """ This base frame decorator decorates a frame or another frame
32 wrapping a frame decorator, defer to that wrapped object's method
33 if it has one. This allows for frame decorators that have
34 sub-classed FrameDecorator object, but also wrap other frame
35 decorators on the same frame to correctly execute.
39 If the result of frame filters running means we have one gdb.Frame
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
FrameDecorator.py 28 """Basic implementation of a Frame Decorator"""
30 """ This base frame decorator decorates a frame or another frame
32 wrapping a frame decorator, defer to that wrapped object's method
33 if it has one. This allows for frame decorators that have
34 sub-classed FrameDecorator object, but also wrap other frame
35 decorators on the same frame to correctly execute.
39 If the result of frame filters running means we have one gdb.Frame
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
FrameDecorator.py 28 """Basic implementation of a Frame Decorator"""
30 """ This base frame decorator decorates a frame or another frame
32 wrapping a frame decorator, defer to that wrapped object's method
33 if it has one. This allows for frame decorators that have
34 sub-classed FrameDecorator object, but also wrap other frame
35 decorators on the same frame to correctly execute.
39 If the result of frame filters running means we have one gdb.Frame
    [all...]

Completed in 995 milliseconds

1 2 3 4 5 67 8 91011>>