HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameClient.h 10 class Frame;
17 virtual Frame* opener() const = 0;
18 virtual void setOpener(Frame*) = 0;
20 virtual Frame* parent() const = 0;
21 virtual Frame* top() const = 0;
22 virtual Frame* previousSibling() const = 0;
23 virtual Frame* nextSibling() const = 0;
24 virtual Frame* firstChild() const = 0;
25 virtual Frame* lastChild() const = 0;
Frame.cpp 31 #include "core/frame/Frame.h"
35 #include "core/frame/LocalDOMWindow.h"
36 #include "core/frame/FrameHost.h"
37 #include "core/frame/Settings.h"
58 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame"));
60 Frame::Frame(FrameClient* client, FrameHost* host, FrameOwner* owner)
82 Frame::~Frame()
    [all...]
Frame.h 49 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
54 virtual ~Frame();
67 FrameHost* host() const; // Null when the frame is detached.
85 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
100 Frame(FrameClient*, FrameHost*, FrameOwner*);
114 inline FrameClient* Frame::client() const
119 inline void Frame::clearClient()
124 inline LocalDOMWindow* Frame::domWindow() const
129 inline FrameOwner* Frame::owner() cons
    [all...]
RemoteFrame.h 8 #include "core/frame/Frame.h"
14 class RemoteFrame: public Frame {
39 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame());
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.h 28 class Frame;
35 explicit FrameTree(Frame* thisFrame);
44 Frame* parent() const;
45 Frame* top() const;
46 Frame* previousSibling() const;
47 Frame* nextSibling() const;
48 Frame* firstChild() const;
49 Frame* lastChild() const;
51 bool isDescendantOf(const Frame* ancestor) const;
52 Frame* traversePreviousWithWrap(bool) const
    [all...]
FrameTree.cpp 25 #include "core/frame/FrameClient.h"
26 #include "core/frame/FrameView.h"
27 #include "core/frame/LocalFrame.h"
28 #include "core/frame/RemoteFrame.h"
29 #include "core/frame/RemoteFrameView.h"
45 FrameTree::FrameTree(Frame* thisFrame)
55 for (Frame* child = firstChild(); child; child = child->tree().nextSibling()) {
71 m_uniqueName = AtomicString(); // Remove our old frame name so it's not considered in uniqueChildName.
75 Frame* FrameTree::parent() const
82 Frame* FrameTree::top() cons
148 Frame* frame; local
329 Frame* frame = m_thisFrame; local
    [all...]
FocusController.h 40 class Frame;
68 void setFocusedFrame(PassRefPtrWillBeRawPtr<Frame>);
69 void focusDocumentView(PassRefPtrWillBeRawPtr<Frame>);
70 Frame* focusedFrame() const { return m_focusedFrame.get(); }
71 Frame* focusedOrMainFrame() const;
76 bool setFocusedElement(Element*, PassRefPtrWillBeRawPtr<Frame>, FocusType = FocusTypeNone);
117 RefPtrWillBeMember<Frame> m_focusedFrame;
  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.h 8 #include "core/frame/FrameClient.h"
19 virtual Frame* opener() const OVERRIDE;
20 virtual void setOpener(Frame*) OVERRIDE;
22 virtual Frame* parent() const OVERRIDE;
23 virtual Frame* top() const OVERRIDE;
24 virtual Frame* previousSibling() const OVERRIDE;
25 virtual Frame* nextSibling() const OVERRIDE;
26 virtual Frame* firstChild() const OVERRIDE;
27 virtual Frame* lastChild() const OVERRIDE;
RemoteFrameClient.cpp 19 Frame* RemoteFrameClient::opener() const
24 void RemoteFrameClient::setOpener(Frame*)
29 Frame* RemoteFrameClient::parent() const
34 Frame* RemoteFrameClient::top() const
39 Frame* RemoteFrameClient::previousSibling() const
44 Frame* RemoteFrameClient::nextSibling() const
49 Frame* RemoteFrameClient::firstChild() const
54 Frame* RemoteFrameClient::lastChild() const
WebFrame.cpp 8 #include "core/frame/RemoteFrame.h"
19 Frame* toCoreFrame(const WebFrame* frame)
21 if (!frame)
24 return frame->isWebLocalFrame()
25 ? static_cast<Frame*>(toWebLocalFrameImpl(frame)->frame())
26 : toWebRemoteFrameImpl(frame)->frame();
153 WebFrame* frame = const_cast<WebFrame*>(this); local
195 Frame* frame = toCoreFrame(this); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
BindingSecurity.h 35 #include "core/frame/LocalFrame.h"
53 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, SecurityReportingOption = ReportSecurityError);
54 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, ExceptionState&);
  /dalvik/dx/src/com/android/dx/cf/code/
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...]
Frame.java 26 * Representation of a Java method execution frame. A frame consists
31 public final class Frame {
47 private Frame(LocalsArray locals, ExecutionStack stack) {
57 * subroutines this frame is nested in
59 private Frame(LocalsArray locals,
86 public Frame(int maxLocals, int maxStack) {
97 public Frame copy() {
98 return new Frame(locals.copy(), stack.copy(), subroutines);
112 * this frame with its initialized equivalent
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame_test.cc 257 // Check that all combinations of alignment, frame offset and chunk size work
338 typedef WebSocketFrameHeader Frame;
341 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeContinuation));
342 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeText));
343 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeBinary));
346 EXPECT_FALSE(Frame::IsKnownDataOpCode(Frame::kOpCodeClose))
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives.h 29 // frames are dropped, in order to test the frame drop detection that is
42 // A frame in a video file. The four different points in the stack when
43 // register the frame state are (in time order): created, transmitted, decoded,
45 class Frame {
47 Frame(int number, unsigned int timestamp)
60 // Frame number, starting at 0.
63 // Frame timestamp, that is used by Video Engine and RTP headers and set when
64 // the frame is sent into the stack.
67 // Timestamps for our measurements of when the frame is in different states.
74 // Where the frame was dropped (more than one may be true)
    [all...]
framedrop_primitives_unittest.cc 42 // Create test frame objects, where the second and fourth frame is marked
44 std::vector<Frame*> frames;
45 Frame first_frame(0, kFrameLength);
46 Frame second_frame(0, kFrameLength);
47 Frame third_frame(0, kFrameLength);
48 Frame fourth_frame(0, kFrameLength);
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
stacktrace_unittest.py 13 frame_1 = stacktrace.Frame(20)
14 frame_2 = stacktrace.Frame(24)
  /external/eigen/demos/opengl/
camera.h 15 // #include <frame.h>
17 class Frame
22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(),
26 Frame lerp(float alpha, const Frame& other) const
28 return Frame((1.f-alpha)*position + alpha * other.position,
66 void setFrame(const Frame& f);
67 const Frame& frame(void) const { return mFrame; } function in class:Camera
102 Frame mFrame
    [all...]
quaternion_demo.h 26 typedef std::map<float,Frame> TimeLine;
28 Frame lerpFrame(float t);
30 Frame mInitFrame;
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 19 * Represents the stack frame and local variable table at a particular point in time.
23 public class Frame {
31 * Create a new frame with the specified local variable table size, and max stack size
36 public Frame(int locals, int stack) {
145 * Makes a shallow copy of this frame, i.e. the type instances will
150 public Frame copy() {
151 Frame frame = new Frame(locals.length, stack.length); local
152 System.arraycopy(locals, 0, frame.locals, 0, locals.length)
165 Frame frame = new Frame(locals.length, stack.length); local
    [all...]
Analyzer.java 74 * Frame[] frames = analyzer.analyze(clazz, method);
89 private Frame[] frames;
108 * instruction position, containing the starting frame state of all reachable
110 * as a null in the frame state array. This can be used to detect dead code.
117 * @return an array, indexed by instruction position, of the starting frame state,
121 public Frame[] analyze(CtClass clazz, MethodInfo method) throws BadBytecode {
139 frames = new Frame[codeLength];
151 * instruction position, containing the starting frame state of all reachable
153 * as a null in the frame state array. This can be used to detect dead code.
159 * @return an array, indexed by instruction position, of the starting frame state
173 Frame frame = frames[pos].copy(); local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elfcore.h 61 * snapshot of the frame pointer, stack pointer, and instruction
93 #define BP uregs[11] /* Frame pointer */
114 /* On x86 we provide an optimized version of the FRAME() macro, if the
118 typedef struct Frame {
122 } Frame;
123 #define FRAME(f) Frame f; \
170 /* The FRAME and SET_FRAME macros for x86_64. */
171 typedef struct Frame {
175 } Frame;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elfcore.h 61 * snapshot of the frame pointer, stack pointer, and instruction
93 #define BP uregs[11] /* Frame pointer */
114 /* On x86 we provide an optimized version of the FRAME() macro, if the
118 typedef struct Frame {
122 } Frame;
123 #define FRAME(f) Frame f; \
170 /* The FRAME and SET_FRAME macros for x86_64. */
171 typedef struct Frame {
175 } Frame;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestInterfaceCheckSecurity.idl 30 CheckSecurity=Frame,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameOwnerElement.h 25 #include "core/frame/FrameOwner.h"
35 class Frame;
44 Frame* contentFrame() const { return m_contentFrame; }
48 void setContentFrame(Frame&);
97 RawPtrWillBeMember<Frame> m_contentFrame;

Completed in 1438 milliseconds

1 2 3 4 5 6 7 8 910