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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/extensions/renderer/
default_dispatcher_delegate.cc 20 blink::WebFrame* frame,
26 frame,
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.h 72 /** 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/
quic_framer.h 29 // 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) = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValuesDynamic.cpp 13 #include "core/frame/LocalFrame.h"
22 PassRefPtr<MediaValues> MediaValuesDynamic::create(LocalFrame* frame)
24 if (!frame || !frame->view() || !frame->document() || !frame->document()->renderView())
26 return adoptRef(new MediaValuesDynamic(frame));
29 MediaValuesDynamic::MediaValuesDynamic(LocalFrame* frame)
30 : m_frame(frame)
  /external/chromium_org/third_party/WebKit/Source/core/frame/
BarProp.h 33 #include "core/frame/DOMWindowProperty.h"
48 static PassRefPtrWillBeRawPtr<BarProp> create(LocalFrame* frame, Type type)
50 return adoptRefWillBeNoop(new BarProp(frame, type));
Console.h 32 #include "core/frame/ConsoleBase.h"
33 #include "core/frame/DOMWindowProperty.h"
48 static PassRefPtrWillBeRawPtr<Console> create(LocalFrame* frame)
50 return adoptRefWillBeNoop(new Console(frame));
Screen.h 34 #include "core/frame/DOMWindowProperty.h"
48 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame)
50 return adoptRefWillBeNoop(new Screen(frame));
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkManifest.cpp 9 #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/
PrivateScriptTest.cpp 9 #include "core/frame/LocalFrame.h"
14 PrivateScriptTest::PrivateScriptTest(LocalFrame* frame)
16 v8::Handle<v8::Value> classObject = PrivateScriptRunner::installClassIfNeeded(frame, "PrivateScriptTest");
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceNavigation.h 35 #include "core/frame/DOMWindowProperty.h"
48 static PassRefPtrWillBeRawPtr<PerformanceNavigation> create(LocalFrame* frame)
50 return adoptRefWillBeNoop(new PerformanceNavigation(frame));
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaController.cpp 47 void provideUserMediaTo(LocalFrame& frame, UserMediaClient* client)
49 UserMediaController::provideTo(frame, UserMediaController::supplementName(), UserMediaController::create(client));
  /external/chromium_org/third_party/WebKit/Source/web/
StorageClientImpl.cpp 48 bool StorageClientImpl::canAccessStorage(LocalFrame* frame, StorageType type) const
50 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capture_frame_queue.cc 30 // Verify that the frame is not shared, i.e. that consumer has released it
35 void ScreenCaptureFrameQueue::ReplaceCurrentFrame(DesktopFrame* frame) {
36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame));
  /external/chromium_org/third_party/webrtc/video/
encoded_frame_callback_adapter.cc 31 const EncodedFrame frame(encodedImage._buffer,
34 observer_->EncodedFrameCallback(frame);
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
share_dialog.css 5 .cr-dialog-frame.share-dialog-frame {
32 .share-dialog-frame .cr-dialog-text,
33 .share-dialog-frame .cr-dialog-buttons {
  /external/compiler-rt/test/asan/TestCases/
uar_and_exceptions.cc 25 char frame[FRAME_SIZE]; local
26 g = &frame[0];
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrameManager.java 20 import android.filterfw.core.Frame;
37 public Frame newFrame(FrameFormat format) {
42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
43 Frame result = null;
59 private Frame createNewFrame(FrameFormat format) {
60 Frame result = null;
83 throw new RuntimeException("Unsupported frame target type: " +
90 public Frame retainFrame(Frame frame) {
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameSlotTarget.java 32 .addInputPort("frame", Signature.PORT_REQUIRED, FrameType.any())
38 Frame frame = getConnectedInputPort("frame").pullFrame(); local
39 getFrameManager().storeFrame(frame, mSlotName);
OutputPort.java 24 * Input and output ports share their Frame slot, meaning that when a frame is waiting on an output
27 * Only one frame can be pushed onto an output port at a time. In other words, a Frame must first
28 * be consumed by the target filter before a new frame can be pushed on the output port. If the
52 * Returns true, if there is no frame waiting on this port.
53 * @return true, if no Frame instance is waiting on this port.
60 * Returns a frame for writing.
62 * Call this method to fetch a new frame to write into. When you have finished writing the
63 * frame data, you can push it into the output queue using {@link #pushFrame(Frame)}. Note
71 Frame frame = getQueue().fetchAvailableFrame(dimensions); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ResourceTreeModel.js 98 this._inspectedPageURL = mainFramePayload.frame.url;
137 * @param {!WebInspector.ResourceTreeFrame} frame
140 _addFrame: function(frame, aboutToNavigate)
142 this._frames[frame.id] = frame;
143 if (frame.isMainFrame())
144 this.mainFrame = frame;
145 this.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.FrameAdded, frame);
147 this._addSecurityOrigin(frame.securityOrigin);
192 * @param {!WebInspector.ResourceTreeFrame} frame
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCOpenGLVideoRenderer.mm 144 // here because the incoming frame has origin in upper left hand corner but
200 - (BOOL)drawFrame:(RTCI420Frame*)frame {
204 if (_lastDrawnFrame == frame) {
209 if (frame) {
210 if (![self updateTextureSizesForFrame:frame] ||
211 ![self updateTextureDataForFrame:frame]) {
223 _lastDrawnFrame = frame;
321 - (BOOL)updateTextureSizesForFrame:(RTCI420Frame*)frame {
322 if (frame.height == _lastDrawnFrame.height &&
323 frame.width == _lastDrawnFrame.width &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.cpp 37 #include "core/frame/LocalFrame.h"
59 PassOwnPtrWillBeRawPtr<InputMethodController> InputMethodController::create(LocalFrame& frame)
61 return adoptPtrWillBeNoop(new InputMethodController(frame));
64 InputMethodController::InputMethodController(LocalFrame& frame)
65 : m_frame(&frame)
82 return frame().editor();
93 return frame().eventHandler().handleTextInputEvent(text, 0, TextEventInputComposition);
106 frame().selection().setSelection(selection, 0);
148 frame().chromeClient().willSetInputMethodState();
162 Position start = frame().selection().start()
    [all...]
  /external/openssl/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/chromium_org/chrome/browser/resources/inline_login/
inline_login.css 9 #signin-frame {
17 #signin-frame,
33 #contents.loading #signin-frame,
  /external/chromium_org/content/renderer/
history_controller.h 63 // to each frame's state via lookups by frame id or frame name.
64 // HistoryNode: Represents a single frame in a HistoryEntry. Owned by a
65 // HistoryEntry. HistoryNodes form a tree that mirrors the frame tree in
68 // per-frame state except a list of child frames.
69 // WebHistoryItem (lives in blink): The state for a given frame. Can persist
82 // Now we navigate the top frame to bar.com, which embeds bar.com/b and
96 // each frame. Any frame that navigates (bar.com/e and its child, bar.com/f
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 6 7 8 91011>>