HomeSort by relevance Sort by last modified time
    Searched full:frame (Results 201 - 225 of 3803) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/WebCore/wml/
WMLRefreshElement.cpp 26 #include "Frame.h"
68 if (Frame* frame = document->frame()) {
69 if (FrameLoader* loader = frame->loader())
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 36 #include "Frame.h"
205 // Create the Frame and the FrameLoaderClient
207 RefPtr<Frame> frame = Frame::create(page, NULL, loader); local
208 loader->setFrame(frame.get());
214 MY_JOBJECT, frame.get());
215 RefPtr<FrameView> frameView = FrameView::create(frame.get());
217 frame->setView(frameView);
222 // Initialize the frame and turn of low-bandwidth display (it fails a
    [all...]
WebFrameView.cpp 33 #include "Frame.h"
58 WebCore::Frame* frame = mFrameView->frame(); local
60 if (NULL == frame->contentRenderer()) {
66 } else if (frame->tree()->parent()) {
71 // In Frame::markAllMatchesForText(), it does a fake paint. So we need
78 // Grab the intersection of transRect and the frame's bounds.
83 // Move the transRect into the frame's local coordinates.
  /external/webkit/WebKit/chromium/src/
StorageAreaProxy.h 37 class Frame;
49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
50 virtual String removeItem(const String& key, Frame* sourceFrame);
51 virtual bool clear(Frame* sourceFrame);
55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
  /external/webkit/WebKit/gtk/webkit/
webkitprivate.h 55 #include "Frame.h"
77 WebCore::Frame* core(WebKitWebFrame*);
78 WebKitWebFrame* kit(WebCore::Frame*);
151 // created too late in the frame loading process.
161 WebCore::Frame* coreFrame;
181 PassRefPtr<WebCore::Frame>
285 webkit_web_frame_get_response_mime_type(WebKitWebFrame* frame);
290 webkit_web_frame_get_children (WebKitWebFrame* frame);
293 webkit_web_frame_get_inner_text (WebKitWebFrame* frame);
296 webkit_web_frame_dump_render_tree (WebKitWebFrame* frame);
    [all...]
  /external/webkit/WebKit/qt/docs/webkitsnippets/webelement/
main.cpp 26 static QWebFrame *frame; variable
31 frame->setHtml("<html><body><p>First Paragraph</p><p>Second Paragraph</p></body></html>");
32 QWebElement doc = frame->documentElement();
42 QWebElement document = frame->documentElement();
65 frame = view->page()->mainFrame();
  /external/webkit/WebKitTools/wx/browser/
browser.cpp 54 wxWebBrowserShell *frame = new wxWebBrowserShell(_T("wxWebKit Test App")); local
57 frame->ShowDebugMenu(true);
60 wxWebSettings settings = frame->webview->GetWebSettings();
66 frame->CentreOnScreen();
67 frame->Show(true);
  /external/webkit/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 33 #include "Frame.h"
157 Page* ChromeClientQt::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features)
266 bool ChromeClientQt::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
268 return runJavaScriptConfirm(frame, message);
273 m_webPage->mainFrame()->d->frame->loader()->stopAllLoaders();
277 void ChromeClientQt::runJavaScriptAlert(Frame* f, const String& msg)
284 bool ChromeClientQt::runJavaScriptConfirm(Frame* f, const String& msg)
291 bool ChromeClientQt::runJavaScriptPrompt(Frame* f, const String& message, const String& defaultValue, String& result)
371 void ChromeClientQt::contentsSizeChanged(Frame* frame, const IntSize& size) cons
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp 148 WebFrame* kit(Frame* frame)
150 if (!frame)
153 FrameLoaderClient* frameLoaderClient = frame->loader()->client();
159 Frame* core(WebFrame* webFrame)
166 // This function is not in WebFrame.h because we don't want to advertise the ability to get a non-const Frame from a const WebFrame
167 Frame* core(const WebFrame* webFrame)
231 : frame(0)
238 FrameView* frameView() { return frame ? frame->view() : 0;
240 Frame* frame; member in class:WebFrame::WebFramePrivate
1015 RefPtr<Frame> frame = Frame::create(page, ownerElement, this); local
1128 Frame* frame = core(this); local
1151 Frame* frame = core(this); local
1174 Frame* frame = core(this); local
1202 Frame* frame = core(this); local
1221 Frame* frame = core(this); local
1237 Frame* frame = core(this); local
2342 Frame* frame = anyWorldGlobalObject->impl()->frame(); local
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
mlmeParser.c 121 /* zero frame content */
126 /* get frame type */
141 pHandle->tempFrameInfo.frame.subType = msgType;
169 pHandle->tempFrameInfo.frame.extesion.destType = MSG_BROADCAST;
175 pHandle->tempFrameInfo.frame.extesion.destType = MSG_MULTICAST;
179 pHandle->tempFrameInfo.frame.extesion.destType = MSG_UNICAST;
216 /* init frame fields */
217 pHandle->tempFrameInfo.frame.content.assocRsp.barkerPreambleMode = PREAMBLE_UNSPECIFIED;
220 COPY_WLAN_WORD(&pHandle->tempFrameInfo.frame.content.assocRsp.capabilities , pData);
223 COPY_WLAN_WORD(&pHandle->tempFrameInfo.frame.content.assocRsp.status , pData)
1486 beacon_probeRsp_t *frame = &(params->frame.content.iePacket); local
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
rate_control.h 35 Int alpha; /* weight for I frame */
37 Int Rc; /*bits used for the current frame. It is the bit count obtained after encoding. */
39 /*? is this the average one, or just the bits coded for the previous frame */
40 Int Rps; /*bit to be removed from buffer per src frame */
43 float Ec; /*mean absolute difference for the current frame after motion compensation.*/
45 Int Qc; /*quantization level used for the current frame. */
49 Int T; /*target bit to be used for the current frame.*/
50 Int S; /*number of bits used for encoding the previous frame.*/
51 Int Hc; /*header and motion vector bits used in the current frame. It includes all the information except to the residual information.*/
52 Int Hp; /*header and motion vector bits used in the previous frame. It includes all the information except to the residual information.*
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 75 // The Frame pointer provides the ChromeClient with context about which
76 // Frame wants to create the new Page. Also, the newly created window
79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&);
102 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
106 virtual void runJavaScriptAlert(Frame*, const String&);
107 virtual bool runJavaScriptConfirm(Frame*, const String&);
108 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
121 virtual void contentsSizeChanged(Frame*, const IntSize&) const;
130 virtual void print(Frame*);
    [all...]
  /sdk/emulator/qtools/
callstack.h 18 // Define a template class for the stack frame. The template parameter
46 template <class FRAME, class BASE = CallStackBase>
49 typedef FRAME frame_type;
50 typedef typename FRAME::symbol_type symbol_type;
51 typedef typename FRAME::symbol_type::region_type region_type;
73 FRAME *mFrames;
74 int mTop; // index of the next stack frame to write
114 template<class FRAME, class BASE>
115 MethodRec CallStack<FRAME, BASE>::sCurrentMethod;
116 template<class FRAME, class BASE
    [all...]
  /external/webkit/WebCore/editing/
TypingCommand.cpp 35 #include "Frame.h"
68 Frame* frame = document->frame(); local
69 ASSERT(frame);
71 if (!frame->selection()->isRange())
74 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
89 Frame *frame = document->frame(); local
108 Frame *frame = document->frame(); local
126 Frame* frame = document->frame(); local
136 RefPtr<Frame> frame = document->frame(); local
190 Frame *frame = document->frame(); local
206 Frame *frame = document->frame(); local
222 Frame *frame = document->frame(); local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
mlmeParser.c 121 /* zero frame content */
126 /* get frame type */
140 pHandle->tempFrameInfo.frame.subType = msgType;
168 pHandle->tempFrameInfo.frame.extesion.destType = MSG_BROADCAST;
174 pHandle->tempFrameInfo.frame.extesion.destType = MSG_MULTICAST;
178 pHandle->tempFrameInfo.frame.extesion.destType = MSG_UNICAST;
215 /* init frame fields */
216 pHandle->tempFrameInfo.frame.content.assocRsp.barkerPreambleMode = PREAMBLE_UNSPECIFIED;
219 COPY_WLAN_WORD(&pHandle->tempFrameInfo.frame.content.assocRsp.capabilities , pData);
222 COPY_WLAN_WORD(&pHandle->tempFrameInfo.frame.content.assocRsp.status , pData)
1485 beacon_probeRsp_t *frame = &(params->frame.content.iePacket); local
    [all...]
  /external/webkit/WebCore/page/
PageGroup.cpp 32 #include "Frame.h"
234 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext())
235 frame->document()->clearPageGroupUserSheets();
294 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()
    [all...]
  /external/webkit/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 36 #include "Frame.h"
134 Page* ChromeClientWx::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features)
154 Page* ChromeClientWx::createModalDialog(Frame*, const FrameLoadRequest&)
249 Frame* frame)
267 void ChromeClientWx::runJavaScriptAlert(Frame* frame, const String& string)
277 bool ChromeClientWx::runJavaScriptConfirm(Frame* frame, const String& string)
294 bool ChromeClientWx::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/enc/src/
avcenc_int.h 162 int target_bits; /* target bits for current frame, = rc->T */
163 int actual_bits; /* actual bits for current frame obtained after encoding, = rc->Rc*/
164 int QP; /* quantization level for current frame, = rc->Qc*/
165 int prev_QP; /* quantization level for previous frame */
166 int prev_prev_QP; /* quantization level for previous frame before last*/
167 OsclFloat mad; /* mad for current frame, = video->avgMAD*/
168 int bitrate; /* bitrate for current frame */
169 OsclFloat framerate; /* framerate for current frame*/
179 int re_encoded_times; /* counter for all times of multipass frame encoding */
181 /* Multiple frame prediction*
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebPolicyDelegate.idl 92 inline, then unableToImplementPolicyWithError:frame: will be
96 result of frame targetting, then it will be created once you call
133 decidePolicyForNavigationAction:request:frame:decisionListener: (zero or more times)<BR>
134 decidePolicyForMIMEType:request:frame: (zero or more times)<BR>
157 @method webView:decidePolicyForNavigationAction:request:frame:decisionListener:
161 @param frame The WebFrame in which the navigation is happening
167 frame:(WebFrame *)frame
170 HRESULT decidePolicyForNavigationAction([in] IWebView* webView, [in] IPropertyBag* actionInformation, [in] IWebURLRequest* request, [in] IWebFrame* frame, [in] IWebPolicyDecisionListener* listener);
177 @param frame The frame in which the navigation is taking plac
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/enc/include/
pvavcencoderinterface.h 34 EAVCEI_FRAME_DROP, // current frame is dropped, send in a new frame with new timestamp
35 EAVCEI_NOT_READY, // the previous frame is still being processed
167 /** Specifies the cumulative frame rate in frame per second. IFrameRate[0] is for
197 /** Specifies the initial quantization parameter for the first I-frame. If constant Q
202 /** Specifies the initial quantization parameter for the first P-frame. If constant Q
207 /** Specifies the initial quantization parameter for the first B-frame. If constant Q
212 /** Specifies automatic scene detection where I-frame will be used the the first frame
    [all...]
  /external/opencore/engines/adapters/player/framemetadatautility/test/src/
test_pv_frame_metadata_utility_testset1.h 55 * A test case to instantiate and destroy the frame-metadata utility object via the factory class
81 * A test case to test the normal frame-metadata utility sequence of opening a specified source and extracting
168 * A test case to test the normal frame-metadata utility sequence of opening a specified source and extracting metadata and
169 * the first frame in specified output format
171 * - Output: First video frame[test_framemetadata_getfirstframeyuvmetadata_[SRCFILENAME]_frame_[FORMAT].dat]\n
194 iTestCaseName = _STRLIT_CHAR("Get First Frame and Metadata");
248 * A test case to test the normal frame-metadata utility sequence of opening a specified source and retrieving
249 * the first frame but having the utility allocate the frame buffer
251 * - Output: First video frame[test_framemetadata_getfirstframeutilitybuffer_[SRCFILENAME]_frame_[FORMAT].dat]\
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptCachedFrameData.cpp 35 #include "Frame.h"
46 ScriptCachedFrameData::ScriptCachedFrameData(Frame* frame)
51 ScriptController* scriptController = frame->script();
74 void ScriptCachedFrameData::restore(Frame* frame)
78 ScriptController* scriptController = frame->script();
89 windowShell->setWindow(frame->domWindow());
91 if (Page* page = frame->page()) {
  /external/webkit/WebCore/inspector/
InspectorDOMStorageResource.cpp 40 #include "Frame.h"
52 InspectorDOMStorageResource::InspectorDOMStorageResource(Storage* domStorage, bool isLocalStorage, Frame* frame)
56 , m_frame(frame)
63 bool InspectorDOMStorageResource::isSameHostAndType(Frame* frame, bool isLocalStorage) const
65 return equalIgnoringCase(m_frame->document()->securityOrigin()->host(), frame->document()->securityOrigin()->host()) && m_isLocalStorage == isLocalStorage;
107 bool isLocalStorage = storage->frame()->domWindow()->localStorage() == storage;
108 if (isSameHostAndType(storage->frame(), isLocalStorage))
  /external/webkit/WebCore/platform/haiku/
PasteboardHaiku.cpp 32 #include "Frame.h"
54 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
65 data->AddString("text/plain", BString(frame->selectedText()));
94 String Pasteboard::plainText(Frame* frame)
112 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
119 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
  /external/webkit/WebCore/svg/
SVGDocumentExtensions.cpp 34 #include "Frame.h"
103 if (Frame* frame = m_doc->frame())
104 frame->domWindow()->console()->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "Warning: " + message, m_doc->tokenizer() ? m_doc->tokenizer()->lineNumber() : 1, String());
109 if (Frame* frame = m_doc->frame())
110 frame->domWindow()->console()->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "Error: " + message, m_doc->tokenizer() ? m_doc->tokenizer()->lineNumber() : 1, String());

Completed in 115 milliseconds

1 2 3 4 5 6 7 891011>>