HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 251 - 275 of 707) sorted by null

<<11121314151617181920>>

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ImageStitcher.java 21 import android.filterfw.core.Frame;
45 private Frame mOutputFrame;
93 // Get input frame
94 Frame input = pullInput("image");
97 // Create output frame
LomoishFilter.java 21 import android.filterfw.core.Frame;
180 // Get input frame
181 Frame input = pullInput("image");
189 // Check if the frame size has changed
196 // Create output frame
197 Frame output = context.getFrameManager().newFrame(inputFormat);
205 // Release pushed frame
ResizeFilter.java 22 import android.filterfw.core.Frame;
90 // Get input frame
91 Frame input = pullInput("image");
94 // Create output frame
101 Frame output = env.getFrameManager().newFrame(outputFormat);
119 // Release pushed frame
SaturateFilter.java 21 import android.filterfw.core.Frame;
117 // Get input frame
118 Frame input = pullInput("image");
127 // Create output frame
128 Frame output = context.getFrameManager().newFrame(inputFormat);
139 // Release pushed frame
SharpenFilter.java 21 import android.filterfw.core.Frame;
105 // Get input frame
106 Frame input = pullInput("image");
109 // Create output frame
110 Frame output = context.getFrameManager().newFrame(inputFormat);
117 // Check if the frame size has changed
128 // Release pushed frame
TintFilter.java 21 import android.filterfw.core.Frame;
95 // Get input frame
96 Frame input = pullInput("image");
105 // Create output frame
106 Frame output = context.getFrameManager().newFrame(inputFormat);
114 // Release pushed frame
VignetteFilter.java 21 import android.filterfw.core.Frame;
130 // Get input frame
131 Frame input = pullInput("image");
139 // Check if the frame size has changed
146 // Create output frame
147 Frame output = context.getFrameManager().newFrame(inputFormat);
155 // Release pushed frame
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
NewChromaHistogramFilter.java 22 import androidx.media.filterfw.Frame;
95 ByteBuffer imageBuffer = imageFrame.lockBytes(Frame.MODE_READ);
96 ByteBuffer histogramBuffer = histogramFrame.lockBytes(Frame.MODE_READ);
  /external/chromium_org/chrome_frame/infobars/internal/
infobar_window.h 45 // InfobarContent::InstallInFrame will be called with an InfobarContent::Frame
62 class FrameImpl : public InfobarContent::Frame {
66 // InfobarContent::Frame implementation
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8LazyEventListener.h 43 class Frame;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp 33 #include "core/page/Frame.h"
38 StyleMedia::StyleMedia(Frame* frame)
39 : DOMWindowProperty(frame)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextInsertionBaseCommand.h 43 static void applyTextInsertionCommand(Frame*, PassRefPtr<TextInsertionBaseCommand>, const VisibleSelection& selectionForInsertion, const VisibleSelection& endingSelection);
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.cpp 36 #include "core/page/Frame.h"
76 Frame* frame = m_element->document()->frame(); local
77 if (!frame)
80 const Element* element = frame->document()->focusedElement();
84 frame->inputMethodController().confirmCompositionAndResetState();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.cpp 102 void didReceiveResourceResponseButCanceledImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
104 InspectorInstrumentationCookie cookie = willReceiveResourceResponse(frame, identifier, r);
108 void continueAfterXFrameOptionsDeniedImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
110 didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r);
113 void continueWithPolicyDownloadImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
115 didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r);
118 void continueWithPolicyIgnoreImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r
    [all...]
PageDebuggerAgent.h 54 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentWriter.h 40 class Frame;
PingLoader.cpp 40 #include "core/page/Frame.h"
54 void PingLoader::loadImage(Frame* frame, const KURL& url)
56 if (!frame->document()->securityOrigin()->canDisplay(url)) {
57 FrameLoader::reportLocalLoadFailed(frame, url.string());
64 String referrer = SecurityPolicy::generateReferrerHeader(frame->document()->referrerPolicy(), request.url(), frame->loader()->outgoingReferrer());
67 frame->loader()->addExtraFieldsToRequest(request);
68 OwnPtr<PingLoader> pingLoader = adoptPtr(new PingLoader(frame, request));
76 void PingLoader::sendPing(Frame* frame, const KURL& pingURL, const KURL& destinationURL
    [all...]
ProgressTracker.cpp 32 #include "core/page/Frame.h"
105 void ProgressTracker::progressStarted(Frame* frame)
107 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());
109 if (m_numProgressTrackedFrames == 0 || m_originatingProgressFrame == frame) {
112 m_originatingProgressFrame = frame;
117 InspectorInstrumentation::frameStartedLoading(frame);
135 RefPtr<Frame> frame = m_originatingProgressFrame.release(); local
    [all...]
ResourceLoaderHost.h 41 class Frame;
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceFetcherTest.cpp 51 // Create a ResourceFetcher that has a real DocumentLoader and Document, but is not attached to a Frame.
52 // Technically, we're concerned about what happens after a Frame is detached (rather than before
58 EXPECT_EQ(fetcher->frame(), static_cast<Frame*>(0));
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSecurityPolicy.h 38 class Frame;
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.cpp 23 #include "core/page/Frame.h"
31 DOMMimeType::DOMMimeType(PassRefPtr<PluginData> pluginData, Frame* frame, unsigned index)
32 : FrameDestructionObserver(frame)
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
NavigatorGeolocation.cpp 27 #include "core/page/Frame.h"
33 NavigatorGeolocation::NavigatorGeolocation(Frame* frame)
34 : DOMWindowProperty(frame)
51 supplement = new NavigatorGeolocation(navigator->frame());
64 if (!m_geolocation && frame())
65 m_geolocation = Geolocation::create(frame()->document());
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
NavigatorStorageQuota.cpp 34 #include "core/page/Frame.h"
40 NavigatorStorageQuota::NavigatorStorageQuota(Frame* frame)
41 : DOMWindowProperty(frame)
58 supplement = new NavigatorStorageQuota(navigator->frame());
76 if (!m_temporaryStorage && frame())
83 if (!m_persistentStorage && frame())
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
NavigatorWebMIDI.cpp 36 #include "core/page/Frame.h"
42 NavigatorWebMIDI::NavigatorWebMIDI(Frame* frame)
43 : DOMWindowProperty(frame)
60 supplement = new NavigatorWebMIDI(navigator->frame());
73 if (!frame())
76 ScriptExecutionContext* context = frame()->document();

Completed in 1062 milliseconds

<<11121314151617181920>>