Searched +refs:frame +refs:name +refs:history (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPage.cpp107 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext())
108 frames.append(frame);
117 float deviceScaleFactor(Frame* frame) argument
119 if (!frame)
121 Page* page = frame->page();
216 for (Frame* frame = mainFrame(); frame; fram
292 nonFastScrollableRects(const Frame* frame) argument
309 const char* name; member in struct:WebCore::ViewModeInfo
441 setGroupName(const String& name) argument
572 Frame* frame = focusController()->focusedOrMainFrame(); local
648 Frame* frame = referenceRange ? referenceRange->ownerDocument()->frame() : mainFrame(); local
674 Frame* frame = mainFrame(); local
[all...]
H A DDOMWindow.cpp228 Frame* frame = window->frame(); local
229 if (!frame)
231 Page* page = frame->page();
234 return frame == page->mainFrame();
259 Frame* frame = window->frame(); local
260 if (!frame)
263 if (!frame->loader()->shouldClose())
369 bool DOMWindow::canShowModalDialog(const Frame* frame) argument
379 canShowModalDialogNow(const Frame* frame) argument
610 History* DOMWindow::history() const function in class:WebCore::DOMWindow
1262 String DOMWindow::name() const function in class:WebCore::DOMWindow
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DQWebPageAdapter.cpp152 static WebCore::FrameLoadRequest frameLoadRequest(const QUrl &url, WebCore::Frame *frame) argument
154 return WebCore::FrameLoadRequest(frame->document()->securityOrigin(),
155 WebCore::ResourceRequest(url, frame->loader()->outgoingReferrer()));
158 static void openNewWindow(const QUrl& url, Frame* frame) argument
160 if (Page* oldPage = frame->page()) {
163 FrameLoadRequest request = frameLoadRequest(url, frame);
164 if (Page* newPage = oldPage->chrome().createWindow(frame, request, features, action)) {
242 history.d = new QWebHistoryPrivate(static_cast<WebCore::BackForwardListImpl*>(page->backForwardList()));
260 FrameLoader* loader = mainFrameAdapter()->frame->loader();
301 Frame* frame local
309 Frame* frame = page->focusController()->focusedOrMainFrame(); local
330 Frame* frame = mainFrameAdapter()->frame; local
371 Frame* frame = page->mainFrame()->tree()->firstChild(); local
419 WebCore::Frame* frame = mainFrameAdapter()->frame; local
429 WebCore::Frame* frame = mainFrameAdapter()->frame; local
462 WebCore::Frame* frame = mainFrameAdapter()->frame; local
479 WebCore::Frame* frame = mainFrameAdapter()->frame; local
493 WebCore::Frame* frame = mainFrameAdapter()->frame; local
509 Frame* frame = page->focusController()->focusedFrame(); local
531 WebCore::Frame* frame = mainFrameAdapter()->frame; local
569 WebCore::Frame *frame = page->focusController()->focusedOrMainFrame(); local
649 Frame* frame = page->focusController()->focusedFrame(); local
728 const char* name; member in struct:__anon5658
997 Frame* frame = page->focusController()->focusedOrMainFrame(); local
1159 setNotificationsAllowedForFrame(QWebFrameAdapter* frame, bool allowed) argument
1183 setGeolocationEnabledForFrame(QWebFrameAdapter* frame, bool on) argument
1202 Frame* frame = page->focusController()->focusedOrMainFrame(); local
1209 Frame* frame = page->focusController()->focusedFrame(); local
1243 Frame* frame = page->focusController()->focusedOrMainFrame(); local
1249 Frame* frame = page->focusController()->focusedOrMainFrame(); local
1316 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame(); local
1350 Frame* frame = mainFrameAdapter()->frame; local
1376 Frame* frame = webFrame->frame; local
[all...]
H A DFrameLoaderClientQt.cpp101 QWebFrameAdapter* frame = QWebFrameAdapter::kit(webCoreFrame); local
102 QString name = webCoreFrame->tree()->uniqueName(); local
104 bool isMainFrame = frame == frame->pageAdapter->mainFrameAdapter();
106 if (!name.isEmpty())
107 return QString::fromLatin1("main frame \"%1\"").arg(name);
108 return QLatin1String("main frame");
110 if (!name.isEmpty())
111 return QString::fromLatin1("frame \"
115 drtPrintFrameUserGestureStatus(WebCore::Frame* frame) argument
224 setFrame(QWebFrameAdapter* webFrame, Frame* frame) argument
775 QWebHistoryInterface* history = QWebHistoryInterface::defaultInterface(); local
1299 createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer, bool allowsScrolling, int marginWidth, int marginHeight) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFrameLoader.cpp19 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
170 static bool isDocumentSandboxed(Frame* frame, SandboxFlags mask) argument
172 return frame->document() && frame->document()->isSandboxed(mask);
177 static PassOwnPtr<FrameProgressTracker> create(Frame* frame) { return adoptPtr(new FrameProgressTracker(frame)); } argument
202 FrameProgressTracker(Frame* frame) argument
203 : m_frame(frame)
212 FrameLoader::FrameLoader(Frame* frame, FrameLoaderClient* client) argument
213 : m_frame(frame)
937 Frame* frame = m_frame; local
1291 Frame* frame = findFrameForNavigation(request.frameName()); local
1425 reportLocalLoadFailed(Frame* frame, const String& url) argument
3078 findFrameForNavigation(const AtomicString& name, Document* activeDocument) argument
3080 Frame* frame = m_frame->tree()->find(name); local
[all...]
H A DFrameLoader.h16 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
92 Frame* frame() const { return m_frame; } function in class:WebCore::FrameLoader
95 HistoryController* history() const { return m_history.get(); } function in class:WebCore::FrameLoader
248 Frame* findFrameForNavigation(const AtomicString& name, Document* activeDocument = 0);
404 // Document loaders for the three phases of frame loading. Note that while
456 // modal dialog creation. The lookupFrame is for looking up the frame name in case
457 // the frame name references a frame differen
[all...]
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DDumpRenderTreeSupportEfl.cpp65 #include <history/HistoryItem.h>
82 #define DRT_SUPPORT_FRAME_GET_OR_RETURN(ewkFrame, frame, ...) \
83 WebCore::Frame* frame = EWKPrivate::coreFrame(ewkFrame); \
84 if (!frame) \
106 DRT_SUPPORT_FRAME_GET_OR_RETURN(ewkFrame, frame, false);
108 return frame->loader()->shouldClose();
113 DRT_SUPPORT_FRAME_GET_OR_RETURN(ewkFrame, frame);
115 frame->tree()->clearName();
120 DRT_SUPPORT_FRAME_GET_OR_RETURN(ewkFrame, frame);
122 frame
290 executeCoreCommandByName(const Evas_Object* ewkView, const char* name, const char* value) argument
339 isCommandEnabled(const Evas_Object* ewkView, const char* name) argument
634 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame(); local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
135 Frame* frame = core(m_webFrame); local
136 if (!frame)
139 if (frame->document() && frame->document()->inPageCache())
142 FrameView* view = frame->view();
659 COMPtr<WebFrame> sourceFrame(kit(formState->sourceDocument()->frame()));
767 WebHistory* history = WebHistory::sharedHistory(); local
768 if (!history)
771 history
780 WebHistory* history = WebHistory::sharedHistory(); local
1074 createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer, bool , int , int ) argument
1083 createFrame(const KURL& URL, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer) argument
1120 Frame* frame = core(m_webFrame); local
1205 Frame* frame = core(m_webFrame); local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dgnus-util.el146 (funcall (if (stringp buffer) 'get-buffer 'buffer-name)
197 Given an RFC-822 address FROM, extract full name and canonical address.
201 (let (name address)
212 ;; Then we check whether the "name <address>" format is used.
216 (and (setq name (substring from 0 (match-beginning 0)))
217 ;; Strip any quotes from the name.
218 (string-match "^\".*\"$" name)
219 (setq name (substring name 1 (1- (match-end 0))))))
220 ;; If not, then "address (name)" i
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp252 virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest &request, QWebPage::NavigationType type) { argument
253 Q_UNUSED(frame);
268 m_view->setHtml(QString("<html><body><form name='tstform' action='data:text/html,foo'method='get'>"
296 void requestPermission(QWebFrame* frame, QWebPage::Feature feature) argument
299 setFeaturePermission(frame, feature, PermissionGrantedByUser);
301 setFeaturePermission(frame, feature, PermissionDeniedByUser);
365 m_view->page()->mainFrame()->load(QUrl("data:text/html,<frameset cols=\"25%,75%\"><frame src=\"data:text/html,"
367 "<frame src=\"data:text/html,bar\"></frameset>"));
375 m_view->page()->mainFrame()->load(QUrl("data:text/html,<frameset cols=\"25%,75%\"><frame src=\"data:text/html,"
376 "foo \"><frame sr
428 QPointer<QWebFrame> frame; member in struct:TestPage::Navigation
437 acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest &request, NavigationType type) argument
2908 javaScriptPrompt(QWebFrame* frame, const QString& msg, const QString& defaultValue, QString* result) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp250 // e) The following characters are treated as name-start characters rather than name characters, because the property file classifies them as Alphabetic: [#x02BB-#x02C1], #x0559, #x06E5, #x06E6.
253 // h) Character #x0387 is added as a name character, because #x00B7 is its canonical equivalent.
254 // i) Characters ':' and '_' are allowed as name-start characters.
255 // j) Characters '-' and '.' are allowed as name characters.
346 Frame* frame = node->document()->frame(); local
347 if (!frame || !root)
350 return frame->editor().shouldBeginEditing(rangeOfContents(root).get());
355 // targetFrame can be 0 when we're trying to navigate a top-level frame
381 printNavigationErrorMessage(Frame* frame, const KURL& activeURL, const char* reason) argument
395 Document(Frame* frame, const KURL& url, unsigned documentClasses) argument
790 createElement(const AtomicString& name, ExceptionCode& ec) argument
839 registerElement(WebCore::ScriptState* state, const AtomicString& name, ExceptionCode& ec) argument
844 registerElement(WebCore::ScriptState* state, const AtomicString& name, const Dictionary& options, ExceptionCode& ec) argument
901 createEntityReference(const String& name, ExceptionCode& ec) argument
2823 Frame* frame = this->frame(); local
3901 isValidName(const String& name) argument
4176 Frame* frame = document->frame(); local
4312 createAttribute(const String& name, ExceptionCode& ec) argument
4403 windowNamedItems(const AtomicString& name) argument
4408 documentNamedItems(const AtomicString& name) argument
4712 getCSSCanvasContext(const String& type, const String& name, int width, int height) argument
4721 getCSSCanvasElement(const String& name) argument
5539 Frame* frame = window ? window->frame() : this->frame(); local
[all...]
/macosx-10.9.5/vim-53/runtime/autoload/
H A Djavascriptcomplete.vim139 \ 'name', 'rel', 'rev', 'shape', 'tabIndex', 'target', 'type', 'onBlur', 'onFocus']
175 \ 'method', 'name', 'tabIndex', 'target']
179 " Frame - frame.
181 \ 'name', 'noResize', 'scrolling', 'src']
190 " History - history.
197 \ 'name', 'scrolling', 'src', 'width']
201 \ 'lowSrc', 'name', 'src', 'useMap', 'vspace', 'width']
206 let buttprop = ['accessKey', 'disabled', 'form', 'id', 'name', 'tabIndex', 'type', 'value']
212 \ 'disabled', 'form', 'id', 'name', 'tabIndex', 'type', 'value']
218 \ 'disabled', 'form', 'id', 'name', 'tabInde
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dsubr.el190 ;; We put this here instead of in frame.el so that it's defined even on
191 ;; systems where frame.el isn't loaded.
192 (defun frame-configuration-p (object)
193 "Return non-nil if OBJECT seems to be a frame configuration.
194 Any list whose car is `frame-configuration' is assumed to be a frame
197 (eq (car object) 'frame-configuration)))
623 ;; Find the actual command name within the binding.
685 "Keymap for frame commands.")
849 and y coordinates in POSITION and the frame'
[all...]
H A Dsimple.el55 (defun get-next-valid-buffer (list &optional buffer visible-ok frame)
62 If the optional argument FRAME is nil, it defaults to the selected frame.
65 (setq frame (or frame (selected-frame)))
66 (let ((pred (frame-parameter frame 'buffer-predicate))
73 (not (eq (aref (buffer-name buf) 0) ?\s))
79 (defun last-buffer (&optional buffer visible-ok frame)
84 If the optional third argument FRAME is non-nil, use that frame'
[all...]
H A Dido.el64 ;; (buffers visible in the current frame are put at the end of the
100 ;; with 4 in its name).
117 ;; To go up to the parent directory, delete any partial file name
138 ;; Normally, ido does not include hidden buffers (whose name starts
139 ;; with a space) and hidden files and directories (whose name starts
246 ;; current frame are put at the end of the list. A hook exists to
267 ;; Replacement for read-buffer and read-file-name
270 ;; ido-read-buffer and ido-read-file-name have been written to be drop
271 ;; in replacements for the normal buffer and file name reading
272 ;; functions `read-buffer' and `read-file-name'
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.cpp276 BString name;
277 hr = notification->name(&name);
281 if (wcscmp(name, WebPreferences::webPreferencesChangedNotification()) == 0)
284 if (wcscmp(name, WebPreferences::webPreferencesRemovedNotification()) == 0)
710 if (Frame* frame = m_page->mainFrame())
711 frame->loader()->detachFromParent();
1184 if (frameView && frameView->frame() && frameView->frame()->contentRenderer()) {
1234 Frame* frame local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_view.cpp143 { "frame,created", "p" },
261 Ewk_History* history; member in struct:_Ewk_View_Private_Data
538 Evas_Object* frame = ewk_view_frame_focused_get(smartData->self); local
540 if (!frame)
541 frame = smartData->main_frame;
543 return ewk_frame_feed_key_down(frame, downEvent);
548 Evas_Object* frame = ewk_view_frame_focused_get(smartData->self); local
550 if (!frame)
551 frame = smartData->main_frame;
553 return ewk_frame_feed_key_up(frame, upEven
2500 ewk_view_font_family_name_set(Evas_Object* ewkView, Ewk_Font_Family fontFamily, const char* name) argument
3022 ewk_view_load_document_finished(Evas_Object* ewkView, Evas_Object* frame) argument
3052 Evas_Object* frame = ewk_view_frame_main_get(ewkView); local
3108 ewk_view_onload_event(Evas_Object* ewkView, Evas_Object* frame) argument
3141 Evas_Object* frame = ewk_view_frame_main_get(ewkView); local
3201 ewk_view_restore_state(Evas_Object* ewkView, Evas_Object* frame) argument
3490 ewk_view_run_javascript_alert(Evas_Object* ewkView, Evas_Object* frame, const char* message) argument
3502 ewk_view_run_javascript_confirm(Evas_Object* ewkView, Evas_Object* frame, const char* message) argument
3514 ewk_view_run_before_unload_confirm(Evas_Object* ewkView, Evas_Object* frame, const char* message) argument
3526 ewk_view_run_javascript_prompt(Evas_Object* ewkView, Evas_Object* frame, const char* message, const char* defaultValue, const char** value) argument
3599 ewk_view_exceeded_database_quota(Evas_Object* ewkView, Evas_Object* frame, const char* databaseName, uint64_t currentSize, uint64_t expectedSize) argument
3623 ewk_view_run_open_panel(Evas_Object* ewkView, Evas_Object* frame, Ewk_File_Chooser* fileChooser, Eina_List** selectedFilenames) argument
3674 ewk_view_frame_create(Evas_Object* ewkView, Evas_Object* frame, const WTF::String& name, WebCore::HTMLFrameOwnerElement* ownerElement, const WebCore::KURL& url, const WTF::String& referrer) argument
3705 ewk_view_plugin_create(Evas_Object* ewkView, Evas_Object* frame, const WebCore::IntSize& pluginSize, WebCore::HTMLPlugInElement* element, const WebCore::KURL& url, const WTF::Vector<WTF::String>& paramNames, const WTF::Vector<WTF::String>& paramValues, const WTF::String& mimeType, bool loadManually) argument
3903 ewk_view_js_window_object_clear(Evas_Object* ewkView, Evas_Object* frame) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebView.mm15 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
706 NSRect f = [self frame];
782 // contained frame view. In any case, wire our next key view up to the our
783 // contained frame view. This works together with our becomeFirstResponder
799 name:WebPreferencesChangedInternalNotification object:prefs];
854 Frame* frame = [self _mainCoreFrame];
855 if (frame && frame->view())
856 frame->view()->updateLayoutAndStyleIfNeededRecursive();
1290 otherView->_private->page->mainFrame()->loader()->history()
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
154 - (id)initWithFrame:(Frame*)frame policyFunction:(FramePolicyFunction)policyFunction;
166 // If a top level frame has a <script> element in its <head> for a script named MainPageJavaScript.js,
167 // then for that frame's document, ignore changes to the scrolling attribute of frames. That script
178 Frame* frame = core(client->webFrame());
179 if (!frame)
181 if (frame->tree()->parent())
183 Document* document = frame->document();
262 //remove any NetScape plugins that are children of this frame because they are about to be detached
756 frame
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dminibuf.c33 #include "frame.h"
61 /* The maximum length of a minibuffer history. */
65 /* No duplicates in history. */
69 /* Non-nil means add new input to history. */
91 /* Variable which is the history list to add minibuffer values to. */
95 /* Current position in the history list (adjusted by M-n and M-p). */
114 /* Function to call to read a buffer name. */
125 /* Nonzero means raise the minibuffer frame when the minibuffer
160 /* Put minibuf on currently selected frame's minibuffer.
171 struct frame *s
192 Lisp_Object tail, frame; local
479 Lisp_Object dummy, frame; local
850 char name[24]; local
1090 Lisp_Object prompt, initial_input, history, default_value; variable
1127 Lisp_Object name, default_string; variable
1162 Lisp_Object name, default_string; variable
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dgud.el121 (select-frame (make-frame)))
134 (if (string-equal gud-target-name "emacs")
185 'gud-target-name gud-comint-buffer) "emacs")
213 :name "Gud")
292 (defun gud-file-name (f)
293 "Transform a relative file name to an absolute file name.
295 (if (file-exists-p f) (expand-file-name f)
299 (let ((path (expand-file-name
[all...]
/macosx-10.9.5/emacs-92/emacs/etc/
H A Drefcard.tex212 % section - new major section. Argument is section name.
231 % \<...> - surrounds a variable name in a code example
245 % \key{description of key}{key-name}
246 % prints the description left-justified, and the key-name in a \kbd
258 % \metax{description of command}{M-x command-name}
259 % Tries to justify the beginning of the command name at the same place
260 % as \key starts the key name. (The "M-x " sticks out to the left.)
281 To enter GNU Emacs \versionemacs, just type its name: \kbd{emacs}
410 frame instead of a window.
477 \key{regexp search backward through history}{
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmupad.vim57 syn keyword mupadUnderlined name local option save
98 syn keyword mupadFunction float frac frame _frame frandom freeze unfreeze
101 syn keyword mupadFunction history hold hull hypergeom icontent id
H A Dtcl.vim27 syn keyword tclCommand format gets glob global history incr info interp join
76 " entry, frame
113 syn region tcltkWidget matchgroup=tcltkWidgetColor start="\<frame\>" matchgroup=NONE skip="^\s*$" end="]\|[^\\]*\s*$"he=e-1 contains=tclLineContinue,tcltkWidgetSwitch,tclString,tcltkSwitch,tclNumber,tclVarRef
185 " match from command name to ] or EOL
191 " match from command name to ] or EOL
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp85 WebFrameLoaderClient::WebFrameLoaderClient(WebFrame* frame) argument
86 : m_frame(frame)
566 // Make sure viewport properties are dispatched on the main frame by the time the first layout happens.
720 // We call this synchronously because WebCore cannot gracefully handle a frame load without a synchronous navigation policy reply.
754 WebFrameLoaderClient* webFrameLoaderClient = toWebFrameLoaderClient(formState->sourceDocument()->frame()->loader()->client());
772 WebFrameLoaderClient* webFrameLoaderClient = toWebFrameLoaderClient(formState->sourceDocument()->frame()->loader()->client());
1145 double scaleFactor = m_frame->coreFrame()->loader()->history()->currentItem()->pageScaleFactor();
1147 // A scale factor of 0 means the history item has the default scale factor, thus we do not need to update it.
1298 PassRefPtr<Frame> WebFrameLoaderClient::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, argument
1303 RefPtr<WebFrame> subframe = WebFrame::createSubframe(webPage, name, ownerElemen
[all...]

Completed in 241 milliseconds

12