HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 176 - 200 of 919) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
BitmapOverlayFilter.java 21 import android.filterfw.core.Frame;
47 private Frame mFrame;
102 // Get input frame
103 Frame input = pullInput("image");
106 // Create output frame
107 Frame output = context.getFrameManager().newFrame(inputFormat);
115 Frame frame = createBitmapFrame(context); local
117 Frame[] inputs = {input, frame};
138 Frame frame = context.getFrameManager().newFrame(format); local
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
StringLogger.java 22 import android.filterfw.core.Frame;
44 Frame input = pullInput("string");
  /external/webkit/Source/WebCore/bindings/generic/
GenericBinding.h 34 #include "Frame.h"
57 // dynamic frame.
58 Frame* frame = state->firstFrame(); local
59 if (!frame)
61 return frame->loader()->completeURL(relativeURL);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCustomXPathNSResolver.h 38 class Frame;
  /external/webkit/Source/WebCore/editing/wx/
EditorWx.cpp 34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/inspector/
InspectorClient.cpp 36 #include "Frame.h"
48 Frame* frame = frontendPage->mainFrame();
49 if (!frame)
52 ScriptController* scriptController = frame->script();
  /external/webkit/Source/WebCore/loader/
HistoryController.h 40 class Frame;
50 HistoryController(Frame*);
93 PassRefPtr<HistoryItem> createItemTree(Frame* targetFrame, bool clipAtTarget);
105 Frame* m_frame;
NavigationScheduler.h 46 class Frame;
75 NavigationScheduler(Frame*);
99 static bool mustLockBackForwardList(Frame* targetFrame);
101 Frame* m_frame;
  /external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.h 36 class Frame;
46 static PassRefPtr<LegacyWebArchive> create(Frame*);
47 static PassRefPtr<LegacyWebArchive> createFromSelection(Frame*);
57 static PassRefPtr<LegacyWebArchive> create(const String& markupString, Frame*, const Vector<Node*>& nodes);
  /external/webkit/Source/WebCore/page/
MemoryInfo.cpp 34 #include "Frame.h"
40 MemoryInfo::MemoryInfo(Frame* frame)
45 if (frame && frame->settings() && frame->settings()->memoryInfoEnabled()) {
  /external/webkit/Source/WebCore/page/brew/
EventHandlerBrew.cpp 34 #include "Frame.h"
89 // if the user presses down in one frame and up in another frame, this function will
90 // returns true, and pass the event to the correct frame.
91 bool EventHandler::passSubframeEventToSubframe(MouseEventWithHitTestResults& event, Frame* subframe, HitTestResult*)
106 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
111 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
116 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
  /external/webkit/Source/WebCore/page/wx/
EventHandlerWx.cpp 31 #include "Frame.h"
45 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
51 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, WebCore::HitTestResult* hittest)
57 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
82 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
91 bool EventHandler::passSubframeEventToSubframe(MouseEventWithHitTestResults&, Frame* subframe, HitTestResult*)
  /external/webkit/Source/WebCore/platform/android/
ClipboardAndroid.cpp 33 #include "Frame.h"
38 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy, DragData*, Frame*)
98 void ClipboardAndroid::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
102 void ClipboardAndroid::writeURL(const KURL&, const String&, Frame*)
106 void ClipboardAndroid::writeRange(Range* selectedRange, Frame*)
  /external/webkit/Source/WebCore/platform/brew/
ClipboardBrew.cpp 33 #include "Frame.h"
39 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy, DragData*, Frame*)
100 void ClipboardBrew::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
104 void ClipboardBrew::writeURL(const KURL&, const String&, Frame*)
108 void ClipboardBrew::writeRange(Range* selectedRange, Frame*)
  /external/webkit/Source/WebCore/platform/gtk/
DragDataGtk.cpp 24 #include "Frame.h"
54 String DragData::asPlainText(Frame*) const
69 bool DragData::containsURL(Frame* frame, FilenameConversionPolicy filenamePolicy) const
71 return !asURL(frame, filenamePolicy).isEmpty();
74 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
91 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
96 return createFragmentFromMarkup(frame->document(), m_platformDragData->markup(), "");
  /external/webkit/Source/WebCore/platform/win/
EditorWin.cpp 33 #include "Frame.h"
42 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
50 return ClipboardWin::create(Clipboard::CopyAndPaste, clipboardData.get(), policy, frame);
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.cpp 40 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy, DragData*, Frame*)
120 void ClipboardWx::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
125 void ClipboardWx::writeURL(const KURL& url, const String& string, Frame* frame)
127 Pasteboard::generalPasteboard()->writeURL(url, string, frame);
130 void ClipboardWx::writeRange(Range*, Frame*)
PasteboardWx.cpp 31 #include "Frame.h"
53 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
56 wxTheClipboard->SetData( new wxTextDataObject(frame->editor()->selectedText()) );
75 String Pasteboard::plainText(Frame* frame)
81 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
100 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
  /external/webkit/Source/WebCore/rendering/
RenderScrollbar.h 35 class Frame;
42 RenderScrollbar(ScrollableArea*, ScrollbarOrientation, RenderBox*, Frame*);
46 static PassRefPtr<Scrollbar> createCustomScrollbar(ScrollableArea*, ScrollbarOrientation, RenderBox*, Frame* owningFrame = 0);
84 Frame* m_owningFrame;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameNetworkingContextAndroid.cpp 37 FrameNetworkingContextAndroid::FrameNetworkingContextAndroid(WebCore::Frame* frame)
38 : WebCore::FrameNetworkingContext(frame)
44 return frame()->loader()->activeDocumentLoader()->mainResourceLoader();
49 return frame()->loader()->client();
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 48 SecurityOrigin* origin, Frame* sourceFrame)
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
DragClientHaiku.h 41 const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameNetworkingContextWinCE.cpp 35 FrameNetworkingContextWinCE::FrameNetworkingContextWinCE(Frame* frame, const String& userAgent)
36 : FrameNetworkingContext(frame)
48 return frame()->loader()->referrer();
  /external/webkit/Source/WebKit/wx/
WebFramePrivate.h 33 #include "Frame.h"
41 frame(0)
44 WebCore::Frame* frame; member in class:WebFramePrivate
  /frameworks/base/media/mca/effect/java/android/media/effect/
FilterEffect.java 25 import android.filterfw.core.Frame;
86 * Converts a texture into a Frame.
88 protected Frame frameFromTexture(int texId, int width, int height) {
93 Frame frame = manager.newBoundFrame(format, local
96 frame.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
97 return frame;

Completed in 600 milliseconds

1 2 3 4 5 6 78 91011>>