/external/webkit/Source/WebKit/android/wds/ |
Command.cpp | 33 #include "Frame.h" 51 static bool callDumpRenderTree(const Frame* frame, const Connection* conn) { 52 CString str = externalRepresentation(frame->contentRenderer()).latin1(); 57 static bool callDumpDomTree(const Frame* frame, const Connection* conn) { 58 WebViewCore::getWebViewCore(frame->view())->dumpDomTree(true); 90 InternalCommand(const Command* comm, const Frame* frame, 93 , m_frame(frame) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
IDBFactoryBackendProxy.cpp | 64 void IDBFactoryBackendProxy::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> origin, Frame* frame, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType) 66 WebFrame* webFrame = WebFrameImpl::fromFrame(frame);
|
WebPageSerializer.cpp | 36 #include "Frame.h" 104 Vector<Frame*>* visitedFrames, 105 Vector<Frame*>* framesToVisit, 109 // If the node is a frame, we'll process it later in retrieveResourcesForFrame. 113 Frame* frame = static_cast<HTMLFrameOwnerElement*>(element)->contentFrame(); local 114 if (frame) { 115 if (!visitedFrames->contains(frame)) 116 framesToVisit->append(frame); 134 void retrieveResourcesForFrame(Frame* frame 210 Frame* frame = framesToVisit[0]; local [all...] |
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
DragClientEfl.h | 47 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
|
ChromeClientEfl.cpp | 64 static inline Evas_Object* kit(Frame* frame) 66 if (!frame) 69 FrameLoaderClientEfl* client = static_cast<FrameLoaderClientEfl*>(frame->loader()->client()); 94 void ChromeClientEfl::focusedFrameChanged(Frame*) 151 Page* ChromeClientEfl::createWindow(Frame*, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& features, const NavigationAction&) 265 bool ChromeClientEfl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) 267 return runJavaScriptConfirm(frame, message); 276 void ChromeClientEfl::runJavaScriptAlert(Frame* frame, const String& message [all...] |
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebDragClient.h | 41 virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::Clipboard*, WebCore::Frame*, bool);
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
DragClientWx.h | 41 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
|
/system/media/mca/filterfw/java/android/filterfw/ |
FilterFunctionEnvironment.java | 23 import android.filterfw.core.Frame; 81 public Frame executeSequence(FilterFunction[] functions) { 82 Frame oldFrame = null; 83 Frame newFrame = null;
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
FinalPort.java | 32 protected synchronized void setFieldFrame(Frame frame, boolean isAssignment) { 34 checkFrameType(frame, isAssignment); 38 super.setFieldFrame(frame, isAssignment);
|
/system/media/mca/filterpacks/imageproc/java/ |
CropFilter.java | 22 import android.filterfw.core.Frame; 114 // Get input frame 115 Frame imageFrame = pullInput("image"); 116 Frame boxFrame = pullInput("box"); 128 // Create output frame 129 Frame output = env.getFrameManager().newFrame(outputFormat); 142 // Release pushed frame
|
ImageCombineFilter.java | 22 import android.filterfw.core.Frame; 91 Frame[] inputs = new Frame[mInputNames.length]; 96 // Create output frame 97 Frame output = context.getFrameManager().newFrame(inputs[0].getFormat()); 108 // Release pushed frame
|
ImageSlicer.java | 21 import android.filterfw.core.Frame; 45 private Frame mOriginalFrame; 75 private void calcOutputFormatForInput(Frame frame) { 78 mInputWidth = frame.getFormat().getWidth(); 79 mInputHeight = frame.getFormat().getHeight(); 92 // Get input frame 102 // Create output frame 103 Frame output = context.getFrameManager().newFrame(outputFormat); 131 // Retain the original frame so it can be used next time [all...] |
ToPackedGrayFilter.java | 22 import android.filterfw.core.Frame; 119 Frame input = pullInput("image"); 130 Frame temp = context.getFrameManager().newFrame(tempFrameFormat); 133 // Read frame from GPU to CPU. 134 Frame output = context.getFrameManager().newFrame(outputFormat);
|
/external/webkit/Source/WebKit/android/jni/ |
WebViewCore.h | 122 * WebViewCore object and the main frame. 124 WebViewCore(JNIEnv* env, jobject javaView, WebCore::Frame* mainframe); 267 * @param origin The origin of the frame requesting Geolocation 293 WTF::String requestLabel(WebCore::Frame* , WebCore::Node* ); 301 void moveFocus(WebCore::Frame* frame, WebCore::Node* node); 302 void moveMouse(WebCore::Frame* frame, int x, int y); 304 WebCore::Frame* frame, int x, int y) [all...] |
/external/webkit/Source/WebKit/android/nav/ |
CacheBuilder.h | 45 class Frame; 98 static void GetGlobalOffset(Frame* , int* x, int * y); 101 static bool validNode(Frame* startFrame, void* framePtr, void* nodePtr); 223 void BuildFrame(Frame* root, Frame* frame, 239 static Frame* FrameAnd(CacheBuilder* focusNav); 240 static Frame* FrameAnd(const CacheBuilder* focusNav); 241 static CacheBuilder* Builder(Frame* ); 242 static Frame* HasFrame(Node* ) [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
DumpRenderTreeSupportGtk.cpp | 148 * @frame: a #WebKitWebFrame 150 * Return value: child frames of @frame 152 GSList* DumpRenderTreeSupportGtk::getFrameChildren(WebKitWebFrame* frame) 154 g_return_val_if_fail(WEBKIT_IS_WEB_FRAME(frame), 0); 156 Frame* coreFrame = core(frame); 161 for (Frame* child = coreFrame->tree()->firstChild(); child; child = child->tree()->nextSibling()) { 173 * @frame: a #WebKitWebFrame 175 * Return value: inner text of @frame 177 CString DumpRenderTreeSupportGtk::getInnerText(WebKitWebFrame* frame) 508 Frame* frame = core(webView)->focusController()->focusedOrMainFrame(); local 528 Frame* frame = core(webView)->focusController()->focusedOrMainFrame(); local 553 Frame* frame = core(webView)->focusController()->focusedOrMainFrame(); local 578 Frame* frame = core(webView)->focusController()->focusedOrMainFrame(); local [all...] |
/external/javassist/sample/duplicate/ |
Viewer.java | 69 Frame f = new Frame("Viewer");
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptState.cpp | 34 #include "Frame.h" 63 ScriptState* mainWorldScriptState(Frame* frame) 65 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld()); 76 Frame* frame = document->frame(); 77 if (!frame) 79 if (!frame->script()->canExecuteScripts(NotAboutToExecuteScript)) 81 return frame->script()->globalObject(world)->globalExec() [all...] |
/external/webkit/Source/WebCore/dom/ |
DOMImplementation.h | 36 class Frame; 60 static PassRefPtr<Document> createDocument(const String& MIMEType, Frame*, const KURL&, bool inViewSourceMode);
|
/external/webkit/Source/WebCore/html/ |
HTMLViewSourceDocument.h | 38 static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const KURL& url, const String& mimeType) 40 return adoptRef(new HTMLViewSourceDocument(frame, url, mimeType)); 46 HTMLViewSourceDocument(Frame*, const KURL&, const String& mimeType);
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLScriptRunner.h | 40 class Frame; 68 Frame* frame() const;
|
/external/webkit/Source/WebCore/inspector/ |
InspectorController.h | 42 class Frame; 69 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
|
InspectorPageAgent.h | 43 class Frame; 70 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
|
/external/webkit/Source/WebCore/loader/ |
MainResourceLoader.h | 50 static PassRefPtr<MainResourceLoader> create(Frame*); 75 MainResourceLoader(Frame*);
|
/external/webkit/Source/WebCore/page/ |
PageGroupLoadDeferrer.cpp | 25 #include "Frame.h" 50 for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree()->traverseNext()) { 51 frame->document()->suspendScriptedAnimationControllerCallbacks(); 52 frame->document()->suspendActiveDOMObjects(ActiveDOMObject::WillShowDialog); 53 frame->document()->scriptRunner()->suspend(); 54 if (DocumentParser* parser = frame->document()->parser() [all...] |