HomeSort by relevance Sort by last modified time
    Searched defs:frame (Results 76 - 100 of 359) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/net/flip/
flip_framer_test.cc 54 void OnControl(const FlipControlFrame* frame) {
57 switch (frame->type()) {
59 parsed_headers = framer_.ParseHeaderBlock(frame, &headers);
64 parsed_headers = framer_.ParseHeaderBlock(frame, &headers);
74 if (frame->flags() & CONTROL_FLAG_FIN)
140 // Encode the header block into a SynStream frame.
141 scoped_ptr<FlipSynStreamControlFrame> frame(
143 EXPECT_TRUE(frame.get() != NULL);
146 framer.ParseHeaderBlock(frame.get(), &new_headers);
154 FlipFrameBuilder frame; local
179 FlipFrameBuilder frame; local
205 FlipFrameBuilder frame; local
    [all...]
  /external/libvpx/vp8/encoder/x86/
preproc_mmx.c 37 * unsigned char *s : Pointer to source frame.
38 * unsigned char *d : Pointer to destination frame.
48 * SPECIAL NOTES : Destination frame can be same as source frame.
66 if (ppi->frame == 0)
71 int frame = 0; local
81 ++frame;
83 while (frame < FRAMECOUNT);
96 int offset2 = (ppi->frame % FRAMECOUNT);
121 movq xmm4, QWORD PTR [esi] // get frame buffer value
205 int frame = 0; local
    [all...]
  /external/ppp/pppd/
demand.c 57 char *frame; variable
88 frame = malloc(framemax);
89 if (frame == NULL)
90 novm("demand frame");
213 * Calls loop_frame when a complete frame has been accumulated.
230 if (loop_frame((unsigned char *)frame, framelen))
252 frame[framelen++] = c;
259 * loop_frame - given a frame obtained from the loopback,
261 * to transmit this frame later, put it on the pending queue.
269 loop_frame(frame, len
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 107 TPvJpgDecFrame frame; local
111 frame.ptr = ptrs;
112 frame.iWidth = widths;
113 frame.iHeight = heights;
115 status = codec->GetFrame(&frame);
  /external/v8/src/
frames-inl.h 171 inline JavaScriptFrame* JavaScriptFrameIteratorTemp<Iterator>::frame() const { function in class:v8::internal::JavaScriptFrameIteratorTemp
172 // TODO(1233797): The frame hierarchy needs to change. It's
174 // the JavaScript frame type, because we may encounter arguments
176 StackFrame* frame = iterator_.frame(); local
177 ASSERT(frame->is_java_script() || frame->is_arguments_adaptor());
178 return static_cast<JavaScriptFrame*>(frame);
187 if (frame()->id() == id) return;
196 } while (!iterator_.done() && !iterator_.frame()->is_java_script())
    [all...]
jump-target.cc 53 // the directionality of the block. Compute: an entry frame for the
60 VirtualFrame* frame = reaching_frames_[0]; local
63 if (!frame->Equals(reaching_frames_[i])) {
72 // Choose an initial frame.
75 // A list of pointers to frame elements in the entry frame. NULL
81 // frame.
109 // This is safe because we only use the frame for emitting merge code.
119 // Build the new frame. A freshly allocated frame has memory element
    [all...]
  /external/webkit/WebCore/bindings/js/
JSHTMLDocumentCustom.cpp 30 #include "Frame.h"
73 Frame* frame; local
74 if (node->hasTagName(iframeTag) && (frame = static_cast<HTMLIFrameElement*>(node)->contentFrame()))
75 return toJS(exec, frame);
107 Frame* frame = static_cast<HTMLDocument*>(impl())->frame(); local
108 if (frame) {
109 JSDOMWindowShell* wrapper = toJSDOMWindowShell(frame, currentWorld(exec))
    [all...]
JSLocationCustom.cpp 28 #include "Frame.h"
59 Frame* frame = impl()->frame(); local
60 if (!frame) {
71 if (allowsAccessFromFrame(exec, frame, message))
93 printErrorMessageForFrame(frame, message);
100 Frame* frame = impl()->frame(); local
139 Frame* frame = impl()->frame(); local
199 Frame* frame = impl()->frame(); local
214 Frame* frame = impl()->frame(); local
228 Frame* frame = impl()->frame(); local
239 Frame* frame = impl()->frame(); local
250 Frame* frame = impl()->frame(); local
267 Frame* frame = impl()->frame(); local
278 Frame* frame = impl()->frame(); local
289 Frame* frame = impl()->frame(); local
306 Frame* frame = impl()->frame(); local
323 Frame* frame = impl()->frame(); local
334 Frame* frame = impl()->frame(); local
352 Frame* frame = impl()->frame(); local
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8DOMWrapper.cpp 204 Frame* frame = window->frame(); local
205 if (!frame)
208 v8::Handle<v8::Context> context = V8Proxy::context(frame);
230 void V8DOMWrapper::setHiddenWindowReference(Frame* frame, const int internalIndex, v8::Handle<v8::Object> jsObject)
233 if (!frame)
235 v8::Handle<v8::Context> context = V8Proxy::context(frame);
300 proxy = V8Proxy::retrieve(V8DOMWindow::toNative(globalPrototype)->frame());
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 36 #include "Frame.h"
58 // Since JSC and V8 have different mechanisms for getting at the calling frame,
69 Frame* frame = imp->frame(); local
70 if (!frame)
73 KURL url = frame->loader()->url();
82 navigateIfAllowed(frame, url, false, false);
92 Frame* frame = imp->frame() local
112 Frame* frame = imp->frame(); local
128 Frame* frame = imp->frame(); local
149 Frame* frame = imp->frame(); local
166 Frame* frame = imp->frame(); local
183 Frame* frame = imp->frame(); local
200 Frame* frame = imp->frame(); local
273 Frame* frame = imp->frame(); local
288 Frame* frame = imp->frame(); local
309 Frame* frame = imp->frame(); local
    [all...]
  /external/webkit/WebCore/dom/
InputElement.cpp 30 #include "Frame.h"
61 if (inputElement->isPasswordField() && document->frame())
71 Frame* frame = document->frame(); local
72 if (!frame)
78 frame->textFieldDidEndEditing(element);
92 if (document && document->frame())
93 document->frame()->revealSelection();
113 Frame* frame = document->frame() local
223 Frame* frame = document->frame(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLObjectElement.cpp 30 #include "Frame.h"
124 Frame* frame = document()->frame(); local
125 if (!frame)
  /external/webkit/WebCore/loader/
MediaDocument.cpp 35 #include "Frame.h"
101 Frame* frame = m_doc->frame(); local
102 if (!frame)
105 frame->loader()->activeDocumentLoader()->mainResourceLoader()->setShouldBufferData(false);
136 MediaDocument::MediaDocument(Frame* frame)
137 : HTMLDocument(frame)
230 embedElement->setAttribute(typeAttr, frame()->loader()->responseMIMEType())
    [all...]
ProgressTracker.cpp 30 #include "Frame.h"
98 void ProgressTracker::progressStarted(Frame* frame)
100 // LOG (Progress, "frame %p(%@), _private->numProgressTrackedFrames %d, _private->originatingProgressFrame %p", frame, [frame name], _private->numProgressTrackedFrames, _private->originatingProgressFrame);
102 frame->loader()->client()->willChangeEstimatedProgress();
104 if (m_numProgressTrackedFrames == 0 || m_originatingProgressFrame == frame) {
107 m_originatingProgressFrame = frame;
113 frame->loader()->client()->didChangeEstimatedProgress()
137 RefPtr<Frame> frame = m_originatingProgressFrame.release(); local
    [all...]
  /external/webkit/WebCore/page/
FocusController.cpp 40 #include "Frame.h"
79 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame)
81 if (m_focusedFrame == frame || m_isChangingFocusedFrame)
86 RefPtr<Frame> oldFrame = m_focusedFrame;
87 RefPtr<Frame> newFrame = frame;
91 // Now that the frame is updated, fire events and update the selection focused states of both frames.
105 Frame* FocusController::focusedOrMainFrame()
107 if (Frame* frame = focusedFrame()
156 Frame* frame = focusedOrMainFrame(); local
266 Frame* frame = node->document()->frame(); local
    [all...]
FrameTree.cpp 23 #include "Frame.h"
38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
48 m_name = AtomicString(); // Remove our old frame name so it's not considered in uniqueChildName.
57 Frame* FrameTree::parent(bool checkForDisconnectedFrame) const
64 void FrameTree::appendChild(PassRefPtr<Frame> child)
69 Frame* oldLast = m_lastChild;
83 void FrameTree::removeChild(Frame* child)
91 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
92 Frame*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->tree()->m_nextSibling->tree()->m_previousSibling;
109 // unique within the frame tree. The string we generate includes a "path" of name
121 Frame* frame; local
247 Frame* frame = m_thisFrame; local
302 Frame* frame = m_thisFrame; local
    [all...]
XSSAuditor.cpp 37 #include "Frame.h"
88 XSSAuditor::XSSAuditor(Frame* frame)
89 : m_frame(frame)
301 Frame* frame = m_frame; local
302 if (frame->document()->url() == blankURL())
303 frame = m_frame->tree()->parent();
306 String xssProtectionValue = frame->loader()->documentLoader()->response().httpHeaderField(XSSProtectionHeader).stripWhiteSpace();
313 Frame* parentFrame = m_frame->tree()->parent()
    [all...]
  /external/webkit/WebCore/rendering/
RenderEmbeddedObject.cpp 27 #include "Frame.h"
82 if (doc->frame()->page()->frameCount() >= 200)
89 for (Frame* frame = doc->frame(); frame; frame = frame->tree()->parent()) {
90 if (equalIgnoringFragmentIdentifier(frame->loader()->url(), completeURL)) {
148 Frame* frame = frameView()->frame() local
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 36 #include "Frame.h"
207 // Create the Frame and the FrameLoaderClient
209 RefPtr<Frame> frame = Frame::create(page, NULL, loader); local
210 loader->setFrame(frame.get());
216 MY_JOBJECT, frame.get());
217 RefPtr<FrameView> frameView = FrameView::create(frame.get());
219 frame->setView(frameView);
224 // Initialize the frame and turn of low-bandwidth display (it fails a
    [all...]
  /external/webkit/WebKit/chromium/src/
DebuggerAgentManager.cpp 35 #include "Frame.h"
257 WebCore::V8Proxy* proxy = WebCore::V8Proxy::retrieve(webframe->frame());
293 WebCore::Frame* frame = WebCore::V8Proxy::retrieveFrameForEnteredContext(); local
294 if (!frame)
296 WebCore::Page* page = frame->page();
WebFrameImpl.h 36 #include "Frame.h"
174 // Called by the WebViewImpl to initialize its main frame:
177 PassRefPtr<WebCore::Frame> createChildFrame(
184 static WebFrameImpl* fromFrame(WebCore::Frame* frame);
189 WebCore::Frame* frame() const { return m_frame; } function in class:WebKit::WebFrameImpl
197 // Returns which frame has an active match. This function should only be
198 // called on the main frame, as it is the only frame keeping track. Returne
    [all...]
WebNode.cpp 35 #include "Frame.h"
124 WebFrame* WebNode::frame() const function in class:WebKit::WebNode
126 return WebFrameImpl::fromFrame(m_private->document()->frame());
  /external/webkit/WebKit/qt/Api/
qwebframe_p.h 33 #include "Frame.h"
45 QWebFrameData(WebCore::Page*, WebCore::Frame* parentFrame = 0,
53 RefPtr<WebCore::Frame> frame; member in class:QWebFrameData
69 , frame(0)
82 static WebCore::Frame* core(QWebFrame*);
83 static QWebFrame* kit(WebCore::Frame*);
94 WebCore::Frame *frame; member in class:QWebFramePrivate
122 QPointer<QWebFrame> frame; member in class:QWebHitTestResultPrivate
    [all...]
  /external/webkit/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 40 frame->load(QUrl("qrc:/resources/page" + QString::number(nr) + ".html"));
67 QWebFrame* frame; member in class:tst_QWebHistory
84 frame = page->mainFrame();
  /external/webkit/WebKitTools/GtkLauncher/
main.c 80 WebKitWebFrame* frame = webkit_web_view_get_main_frame (web_view); local
81 const gchar* uri = webkit_web_frame_get_uri (frame);

Completed in 1666 milliseconds

1 2 34 5 6 7 8 91011>>