HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 101 - 125 of 459) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 31 #include "core/frame/DOMTimer.h"
32 #include "core/frame/LocalDOMWindow.h"
33 #include "core/frame/EventHandlerRegistry.h"
34 #include "core/frame/FrameHost.h"
35 #include "core/frame/FrameView.h"
36 #include "core/frame/LocalFrame.h"
37 #include "core/frame/RemoteFrame.h"
38 #include "core/frame/RemoteFrameView.h"
39 #include "core/frame/Settings.h"
92 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree().traverseNext())
    [all...]
PageAnimator.cpp 10 #include "core/frame/FrameView.h"
11 #include "core/frame/LocalFrame.h"
32 for (RefPtr<Frame> frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
33 if (frame->isLocalFrame()) {
34 RefPtr<LocalFrame> localFrame = toLocalFrame(frame.get());
43 for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext())
    [all...]
ScopedPageLoadDeferrer.cpp 25 #include "core/frame/LocalFrame.h"
52 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
53 if (frame->isLocalFrame())
54 toLocalFrame(frame)->document()->suspendScheduledTasks();
71 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
BindingSecurity.cpp 37 #include "core/frame/LocalDOMWindow.h"
38 #include "core/frame/LocalFrame.h"
39 #include "core/frame/Settings.h"
76 if (LocalFrame* frame = targetDocument->frame())
77 frame->domWindow()->printErrorMessage(targetDocument->domWindow()->crossDomainAccessErrorMessage(callingWindow));
83 bool BindingSecurity::shouldAllowAccessToFrame(v8::Isolate* isolate, Frame* target, SecurityReportingOption reportingOption)
90 bool BindingSecurity::shouldAllowAccessToFrame(v8::Isolate* isolate, Frame* target, ExceptionState& exceptionState)
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.h 69 virtual WebCore::Frame* opener() const OVERRIDE;
70 virtual void setOpener(WebCore::Frame*) OVERRIDE;
71 virtual WebCore::Frame* parent() const OVERRIDE;
72 virtual WebCore::Frame* top() const OVERRIDE;
73 virtual WebCore::Frame* previousSibling() const OVERRIDE;
74 virtual WebCore::Frame* nextSibling() const OVERRIDE;
75 virtual WebCore::Frame* firstChild() const OVERRIDE;
76 virtual WebCore::Frame* lastChild() const OVERRIDE;
172 // the web frame object is guaranteed to exist.
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
vie_to_file_renderer.h 31 struct Frame;
72 typedef std::list<test::Frame*> FrameQueue;
  /external/javassist/sample/duplicate/
Viewer.java 69 Frame f = new Frame("Viewer");
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
SinWaveFilter.java 22 import android.filterfw.core.Frame;
58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BranchFilter.java 20 import androidx.media.filterfw.Frame;
67 Frame inputFrame = getConnectedInputPort("input").pullFrame();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RedEyeFilter.java 21 import android.filterfw.core.Frame;
47 private Frame mRedEyeFrame;
112 // Get input frame
113 Frame input = pullInput("image");
116 // Create output frame
117 Frame output = context.getFrameManager().newFrame(inputFormat);
124 // Check if the frame size has changed
132 Frame[] inputs = {input, mRedEyeFrame};
138 // Release pushed frame
141 // Release unused frame
    [all...]
BlackWhiteFilter.java 21 import android.filterfw.core.Frame;
137 // Get input frame
138 Frame input = pullInput("image");
146 // Create output frame
147 Frame output = context.getFrameManager().newFrame(inputFormat);
155 // Release pushed frame
CropRectFilter.java 21 import android.filterfw.core.Frame;
89 // Get input frame
90 Frame input = pullInput("image");
93 // Create output frame
97 Frame output = context.getFrameManager().newFrame(outputFormat);
104 // Check if the frame size has changed
115 // Release pushed frame
DocumentaryFilter.java 21 import android.filterfw.core.Frame;
113 // Get input frame
114 Frame input = pullInput("image");
122 // Check if the frame size has changed
129 // Create output frame
130 Frame output = context.getFrameManager().newFrame(inputFormat);
138 // Release pushed frame
DrawRectFilter.java 22 import android.filterfw.core.Frame;
87 // Get input frame
88 Frame imageFrame = pullInput("image");
89 Frame boxFrame = pullInput("box");
95 // Create output frame with copy of input
105 // Release pushed frame
DuotoneFilter.java 21 import android.filterfw.core.Frame;
88 // Get input frame
89 Frame input = pullInput("image");
92 // Create output frame
93 Frame output = context.getFrameManager().newFrame(inputFormat);
107 // Release pushed frame
FillLightFilter.java 21 import android.filterfw.core.Frame;
95 // Get input frame
96 Frame input = pullInput("image");
99 // Create output frame
100 Frame output = context.getFrameManager().newFrame(inputFormat);
114 // Release pushed frame
FisheyeFilter.java 22 import android.filterfw.core.Frame;
102 // Get input frame
103 Frame input = pullInput("image");
106 // Create output frame
107 Frame output = context.getFrameManager().newFrame(inputFormat);
114 // Check if the frame size has changed
125 // Release pushed frame
FixedRotationFilter.java 21 import android.filterfw.core.Frame;
60 Frame input = pullInput("image");
96 // Create output frame
97 Frame output = context.getFrameManager().newFrame(outputFormat);
108 // Release pushed frame
  /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...]
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 119 public final void popArgs(Frame frame, int count) {
120 ExecutionStack stack = frame.getStack();
137 public void popArgs(Frame frame, Prototype prototype) {
142 popArgs(frame, size);
155 public final void popArgs(Frame frame, Type type) {
157 popArgs(frame, 1);
167 public final void popArgs(Frame frame, Type type1, Type type2)
    [all...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
MediaCodecVideoDecoder.java 54 class Frame {
58 Frame(ByteBuffer buffer, long timestampUs) {
102 private LinkedList<Frame> frameQueue;
115 frameQueue = new LinkedList<Frame>();
214 frameQueue.add(new Frame(buffer, renderTimeUs));
227 private Frame dequeueFrame() {
241 // Media time is relative to previous frame.
281 Frame frame = dequeueFrame(); local
282 ByteBuffer buffer = frame.buffer
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
aboutDialog.py 35 frameMain = Frame(self, borderwidth=2, relief=SUNKEN)
36 frameButtons = Frame(self)
43 frameBg = Frame(frameMain, bg=self.bg)
63 Frame(frameBg, borderwidth=1, relief=SUNKEN,
73 py_button_f = Frame(frameBg, bg=self.bg)
87 Frame(frameBg, borderwidth=1, relief=SUNKEN,
93 idle_button_f = Frame(frameBg, bg=self.bg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
aboutDialog.py 35 frameMain = Frame(self, borderwidth=2, relief=SUNKEN)
36 frameButtons = Frame(self)
43 frameBg = Frame(frameMain, bg=self.bg)
63 Frame(frameBg, borderwidth=1, relief=SUNKEN,
73 py_button_f = Frame(frameBg, bg=self.bg)
87 Frame(frameBg, borderwidth=1, relief=SUNKEN,
93 idle_button_f = Frame(frameBg, bg=self.bg)
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeProgram.java 20 import android.filterfw.core.Frame;
98 public void process(Frame[] inputs, Frame output) {
107 throw new RuntimeException("NativeProgram got non-native frame as input "+ i +"!");
111 // Get the native output frame
116 throw new RuntimeException("NativeProgram got non-native output frame!");

Completed in 1212 milliseconds

1 2 3 45 6 7 8 91011>>