/external/webkit/Source/WebCore/html/ |
PluginDocument.cpp | 29 #include "Frame.h" 77 if (document()->frame() && document()->frame()->loader()) 78 document()->frame()->loader()->dispatchDocumentElementAvailable(); 114 Frame* frame = document()->frame(); local 115 if (!frame) 117 Settings* settings = frame->settings(); 118 if (!settings || !frame->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin) [all...] |
/external/webkit/Source/WebCore/loader/icon/ |
IconLoader.cpp | 30 #include "Frame.h" 48 IconLoader::IconLoader(Frame* frame) 49 : m_frame(frame) 54 PassOwnPtr<IconLoader> IconLoader::create(Frame* frame) 56 return adoptPtr(new IconLoader(frame));
|
/external/webkit/Source/WebCore/page/ |
EditorClient.h | 64 class Frame; 136 virtual NSArray* pasteboardTypesForSelection(Frame*) = 0;
|
DragController.cpp | 44 #include "Frame.h" 102 static PassRefPtr<DocumentFragment> documentFragmentFromDragData(DragData* dragData, Frame* frame, RefPtr<Range> context, 111 if (PassRefPtr<DocumentFragment> fragment = dragData->asFragment(frame, context, allowPlainText, chosePlainText)) 114 if (dragData->containsURL(frame, DragData::DoNotConvertFilenames)) { 116 String url = dragData->asURL(frame, DragData::DoNotConvertFilenames, &title); 123 title = dragData->asPlainText(frame); 138 return createFragmentFromText(context.get(), dragData->asPlainText(frame)).get(); 170 Frame* mainFrame = m_page->mainFrame(); 194 RefPtr<Frame> mainFrame = m_page->mainFrame() 274 Frame* frame = documentUnderMouse->frame(); local [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
EditorClientGtk.h | 51 class Frame; 75 bool executePendingEditorCommands(WebCore::Frame*, bool);
|
/external/webkit/Source/WebKit/wx/ |
WebFrame.h | 53 class Frame; 164 WebCore::Frame* GetFrame();
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/ |
WebEditorClientGtk.cpp | 23 #include "Frame.h" 45 bool WebEditorClient::executePendingEditorCommands(Frame* frame, Vector<WTF::String> pendingEditorCommands, bool allowTextInsertion) 49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data()); 68 Frame* frame = node->document()->frame(); local 69 ASSERT(frame); 83 if (executePendingEditorCommands(frame, pendingEditorCommands, false)) 90 if (executePendingEditorCommands(frame, pendingEditorCommands, frame->editor()->canEdit())) [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/ |
WebDragClientWin.cpp | 37 #include <WebCore/Frame.h> 62 void WebDragClient::startDrag(DragImageRef image, const IntPoint& imageOrigin, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrame.java | 20 import android.filterfw.core.Frame; 33 public class SimpleFrame extends Frame {
|
/development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
Context.java | 48 class Frame { 55 Frame(final Context context, final long filePosition) { 129 private ArrayList<Frame> frames = new ArrayList<Frame>(128); 130 private Frame lastFrame; 131 private Frame loadedFrame; 146 /** write message to file; if frame not null, then increase its call count */ 147 void saveMessage(final Message msg, final RandomAccessFile file, Frame frame) { 149 if (frame != null [all...] |
/external/webkit/Source/WebCore/loader/ |
HistoryController.cpp | 37 #include "Frame.h" 67 HistoryController::HistoryController(Frame* frame) 68 : m_frame(frame) 147 // another site. Another is when saving the frame state of a frame that is not the 167 // Walk the frame tree, telling all frames to save their form state into their current 171 for (Frame* frame = m_frame; frame; frame = frame->tree()->traverseNext(m_frame)) [all...] |
DocumentLoader.h | 54 class Frame; 74 void setFrame(Frame*); 75 Frame* frame() const { return m_frame; } function in class:WebCore::DocumentLoader 262 Frame* m_frame;
|
ProgressTracker.cpp | 30 #include "Frame.h" 104 void ProgressTracker::progressStarted(Frame* frame) 106 LOG(Progress, "Progress started (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree()->uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get()); 108 frame->loader()->client()->willChangeEstimatedProgress(); 110 if (m_numProgressTrackedFrames == 0 || m_originatingProgressFrame == frame) { 113 m_originatingProgressFrame = frame; 143 RefPtr<Frame> frame = m_originatingProgressFrame.release(); local [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
ChromeClientQt.cpp | 36 #include "Frame.h" 189 void ChromeClientQt::focusedFrameChanged(Frame*) 193 Page* ChromeClientQt::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features, const NavigationAction&) 199 // A call to QWebPage::mainFrame() implicitly creates the main frame. 304 bool ChromeClientQt::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) 306 return runJavaScriptConfirm(frame, message); 312 m_webPage->mainFrame()->d->frame->loader()->stopAllLoaders(); 316 void ChromeClientQt::runJavaScriptAlert(Frame* f, const String& msg) 323 bool ChromeClientQt::runJavaScriptConfirm(Frame* f, const String& msg [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
Context.java | 48 class Frame { 55 Frame(final Context context, final long filePosition) { 129 private ArrayList<Frame> frames = new ArrayList<Frame>(128); 130 private Frame lastFrame; 131 private Frame loadedFrame; 146 /** write message to file; if frame not null, then increase its call count */ 147 void saveMessage(final Message msg, final RandomAccessFile file, Frame frame) { 149 if (frame != null [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.cpp | 85 #include <WebCore/Frame.h> 326 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local 327 ASSERT(frame); 330 result.selectionIsNone = frame->selection()->isNone(); 331 result.selectionIsRange = frame->selection()->isRange(); 332 result.isContentEditable = frame->selection()->isContentEditable(); 333 result.isContentRichlyEditable = frame->selection()->isContentRichlyEditable(); 334 result.isInPasswordField = frame->selection()->isInPasswordField(); 335 result.hasComposition = frame->editor()->hasComposition() 347 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local 355 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local 480 Frame* frame = m_page->mainFrame(); local 494 WebFrame* frame = WebProcess::shared().webFrame(frameID); local 578 Frame* frame = m_page->mainFrame(); local 590 Frame* frame = m_page->mainFrame(); local 623 Frame* frame = m_page->mainFrame(); local 662 Frame* frame = m_mainFrame->coreFrame(); local 670 Frame* frame = m_mainFrame->coreFrame(); local 678 Frame* frame = m_mainFrame->coreFrame(); local 686 Frame* frame = m_mainFrame->coreFrame(); local 694 Frame* frame = m_mainFrame->coreFrame(); local 702 Frame* frame = m_mainFrame->coreFrame(); local 712 Frame* frame = m_mainFrame->coreFrame(); local 720 Frame* frame = m_mainFrame->coreFrame(); local 735 Frame* frame = m_mainFrame->coreFrame(); local 917 Frame* frame = page->mainFrame(); local 976 Frame* frame = page->mainFrame(); local 1017 Frame* frame = page->mainFrame(); local 1038 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local 1086 Frame* frame = page->mainFrame(); local 1231 WebFrame* frame = WebProcess::shared().webFrame(frameID); local 1489 Frame* frame = node->document()->frame(); local 1718 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local 1792 Frame* frame = m_page->mainFrame(); local 2076 WebFrame* frame = WebProcess::shared().webFrame(frameID); local 2120 WebFrame* frame = WebProcess::shared().webFrame(frameID); local 2152 WebFrame* frame = WebProcess::shared().webFrame(frameID); local 2222 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local [all...] |
/external/javassist/src/main/javassist/convert/ |
TransformAccessArrayField.java | 28 import javassist.bytecode.analysis.Frame; 40 private Frame[] frames; 98 private Frame getFrame(int pos) throws BadBytecode { 117 Frame frame = getFrame(pos); local 118 if (frame == null) 121 CtClass clazz = frame.peek().getCtClass();
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8AbstractEventListener.h | 44 class Frame;
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CustomXPathNSResolver.cpp | 69 if (Frame* frame = proxy->frame()) 70 logInfo(frame, "XPathNSResolver does not have a lookupNamespaceURI method.", String());
|
/external/webkit/Source/WebCore/editing/ |
RemoveFormatCommand.cpp | 33 #include "Frame.h" 80 Frame* frame = document()->frame(); local 82 if (!frame->selection()->selection().isNonOrphanedCaretOrRange()) 87 Node* root = frame->selection()->rootEditableElement();
|
/external/webkit/Source/WebCore/history/ |
CachedPage.cpp | 31 #include "Frame.h" 73 ASSERT(page && page->mainFrame() && page->mainFrame() == m_cachedMainFrame->view()->frame()); 87 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) { 88 if (CSSStyleSelector* styleSelector = frame->document()->styleSelector())
|
/external/webkit/Source/WebCore/html/shadow/ |
SliderThumbElement.cpp | 37 #include "Frame.h" 153 if (Frame* frame = document()->frame()) { 154 frame->eventHandler()->setCapturingMouseEventsNode(this); 156 // Touch events come from Java to the main frame event handler, so we need 157 // to flag we are capturing those events also on the main frame event 159 frame->page()->mainFrame()->eventHandler()->setCapturingTouchEventsNode(this); 170 if (Frame* frame = document()->frame() [all...] |
/external/webkit/Source/WebCore/loader/appcache/ |
DOMApplicationCache.cpp | 37 #include "Frame.h" 42 DOMApplicationCache::DOMApplicationCache(Frame* frame) 43 : m_frame(frame)
|
/external/webkit/Source/WebCore/platform/network/chromium/ |
ResourceRequest.h | 35 class Frame;
|
/external/webkit/Source/WebCore/platform/wince/ |
PasteboardWinCE.cpp | 35 #include "Frame.h" 111 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame) 127 String str = frame->selectedText(); 161 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame) 235 String Pasteboard::plainText(Frame* frame) 264 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText [all...] |