HomeSort by relevance Sort by last modified time
    Searched refs:frame (Results 1 - 25 of 6371) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/events/
NavigatorEvents.cpp 34 #include "core/frame/LocalFrame.h"
35 #include "core/frame/Navigator.h"
36 #include "core/frame/Settings.h"
42 LocalFrame* frame = navigator.frame(); local
43 if (!frame)
45 if (Settings* settings = frame->settings())
  /external/clang/test/CodeGen/
2003-08-21-BinOp-Type-Mismatch.c 7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserOptions.cpp 31 #include "core/frame/LocalFrame.h"
32 #include "core/frame/Settings.h"
39 LocalFrame* frame = document ? document->frame() : 0; local
40 scriptEnabled = frame && frame->script().canExecuteScripts(NotAboutToExecuteScript);
41 pluginsEnabled = frame && frame->loader().allowPlugins(NotAboutToInstantiatePlugin);
  /external/chromium_org/third_party/webrtc/modules/utility/source/
audio_frame_operations.cc 25 int AudioFrameOperations::MonoToStereo(AudioFrame* frame) {
26 if (frame->num_channels_ != 1) {
29 if ((frame->samples_per_channel_ * 2) >= AudioFrame::kMaxDataSizeSamples) {
35 memcpy(data_copy, frame->data_,
36 sizeof(int16_t) * frame->samples_per_channel_);
37 MonoToStereo(data_copy, frame->samples_per_channel_, frame->data_);
38 frame->num_channels_ = 2;
51 int AudioFrameOperations::StereoToMono(AudioFrame* frame) {
52 if (frame->num_channels_ != 2)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
color_enhancement.cc 19 int32_t ColorEnhancement(I420VideoFrame* frame) {
20 assert(frame);
25 if (frame->IsZeroSize()) {
28 if (frame->width() == 0 || frame->height() == 0) {
33 ptr_u = frame->buffer(kUPlane);
34 ptr_v = frame->buffer(kVPlane);
35 int size_uv = ((frame->width() + 1) / 2) * ((frame->height() + 1) / 2);
brighten.cc 18 int32_t Brighten(I420VideoFrame* frame, int delta) {
19 assert(frame);
20 if (frame->IsZeroSize()) {
23 if (frame->width() <= 0 || frame->height() <= 0) {
27 int num_pixels = frame->width() * frame->height();
35 uint8_t* temp_ptr = frame->buffer(kYPlane);
color_enhancement.h 23 int32_t ColorEnhancement(I420VideoFrame* frame);
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_factory_aura.cc 5 #include "chrome/browser/ui/views/frame/browser_view.h"
8 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view_ash.h"
9 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h"
12 #include "chrome/browser/ui/views/frame/glass_browser_frame_view.h"
18 BrowserFrame* frame, BrowserView* browser_view) {
23 if (frame->ShouldUseNativeFrame())
24 return new GlassBrowserFrameView(frame, browser_view);
26 return new OpaqueBrowserFrameView(frame, browser_view);
31 new BrowserNonClientFrameViewAsh(frame, browser_view);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValues.cpp 13 #include "core/frame/FrameHost.h"
14 #include "core/frame/FrameView.h"
15 #include "core/frame/LocalFrame.h"
16 #include "core/frame/Settings.h"
27 PassRefPtr<MediaValues> MediaValues::createDynamicIfFrameExists(LocalFrame* frame)
29 if (frame)
30 return MediaValuesDynamic::create(frame);
34 int MediaValues::calculateViewportWidth(LocalFrame* frame) const
36 ASSERT(frame && frame->view() && frame->document())
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
searchbox_extension.h 31 static bool PageSupportsInstant(blink::WebFrame* frame);
34 static void DispatchChromeIdentityCheckResult(blink::WebFrame* frame,
37 static void DispatchFocusChange(blink::WebFrame* frame);
38 static void DispatchInputCancel(blink::WebFrame* frame);
39 static void DispatchInputStart(blink::WebFrame* frame);
40 static void DispatchKeyCaptureChange(blink::WebFrame* frame);
41 static void DispatchMarginChange(blink::WebFrame* frame);
42 static void DispatchMostVisitedChanged(blink::WebFrame* frame);
43 static void DispatchSubmit(blink::WebFrame* frame);
44 static void DispatchSuggestionChange(blink::WebFrame* frame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Console.cpp 30 #include "core/frame/Console.h"
33 #include "core/frame/ConsoleTypes.h"
34 #include "core/frame/FrameConsole.h"
35 #include "core/frame/FrameHost.h"
36 #include "core/frame/LocalFrame.h"
49 Console::Console(LocalFrame* frame)
50 : DOMWindowProperty(frame)
66 if (!frame())
68 return frame()->document();
73 if (!frame())
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/interface/
audio_frame_operations.h 31 // |frame.num_channels_| will be updated. This version checks for sufficient
33 static int MonoToStereo(AudioFrame* frame);
40 // |frame.num_channels_| will be updated. This version checks that
42 static int StereoToMono(AudioFrame* frame);
44 // Swap the left and right channels of |frame|. Fails silently if |frame| is
46 static void SwapStereoChannels(AudioFrame* frame);
48 // Zeros out the audio and sets |frame.energy| to zero.
49 static void Mute(AudioFrame& frame);
51 static int Scale(float left, float right, AudioFrame& frame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrame.cpp 8 #include "core/frame/RemoteFrame.h"
19 Frame* toCoreFrame(const WebFrame* frame)
21 if (!frame)
24 return frame->isWebLocalFrame()
25 ? static_cast<Frame*>(toWebLocalFrameImpl(frame)->frame())
26 : toWebRemoteFrameImpl(frame)->frame();
153 WebFrame* frame = const_cast<WebFrame*>(this); local
195 Frame* frame = toCoreFrame(this); local
    [all...]
WebTestingSupport.cpp 35 void WebTestingSupport::injectInternalsObject(WebLocalFrame* frame)
38 WebCoreTestSupport::injectInternalsObject(frame->mainWorldScriptContext());
41 void WebTestingSupport::resetInternalsObject(WebLocalFrame* frame)
44 WebCoreTestSupport::resetInternalsObject(frame->mainWorldScriptContext());
OpenedFrameTracker.cpp 26 void OpenedFrameTracker::add(WebFrame* frame)
28 m_openedFrames.add(frame);
31 void OpenedFrameTracker::remove(WebFrame* frame)
33 m_openedFrames.remove(frame);
36 void OpenedFrameTracker::updateOpener(WebFrame* frame)
40 (*it)->m_opener = frame;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemContext.java 24 * This class is a stack frame that consists of
36 * A stack frame will be pushed for "A" at depth 1,
38 * Then "B1" stackframe is popped. When the stack frame for "B2" is
94 /** The next element "stack frame". This value will only be
99 * because very few stack frame objects are ever created, they are
103 * as they are re-used. Only the reference to the current stack frame, which
108 /** The previous element "stack frame". */
130 * Constructor to create the "stack frame" for a given element depth.
136 * @param previous The "stack frame" corresponding to the new
146 * Pop the current "stack frame"
167 ElemContext frame = this.m_next; local
201 ElemContext frame = this.m_next; local
    [all...]
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 28 * Executor is responsible for modeling the effects of a JVM instruction on a frame.
55 * Execute the instruction, modeling the effects on the specified frame and subroutine.
62 * @param frame the frame to modify to represent the result of the instruction
66 public void execute(MethodInfo method, int pos, CodeIterator iter, Frame frame, Subroutine subroutine) throws BadBytecode {
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP)
729 simplePush(zeroExtend(returnType), frame); local
747 simplePush(zeroExtend(returnType), frame); local
844 simplePush(getType(name), frame); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
decoding_state.cc 50 bool VCMDecodingState::IsOldFrame(const VCMFrameBuffer* frame) const {
51 assert(frame != NULL);
54 return !IsNewerTimestamp(frame->TimeStamp(), time_stamp_);
64 void VCMDecodingState::SetState(const VCMFrameBuffer* frame) {
65 assert(frame != NULL && frame->GetHighSeqNum() >= 0);
66 UpdateSyncState(frame);
67 sequence_num_ = static_cast<uint16_t>(frame->GetHighSeqNum());
68 time_stamp_ = frame->TimeStamp();
69 picture_id_ = frame->PictureId()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationPermissionClient.cpp 10 #include "core/frame/LocalFrame.h"
25 ASSERT(document->frame());
27 if (!document->frame()->isLocalFrame())
30 return static_cast<NotificationPermissionClient*>(WillBeHeapSupplement<LocalFrame>::from(document->frame(), supplementName()));
33 void provideNotificationPermissionClientTo(LocalFrame& frame, PassOwnPtrWillBeRawPtr<NotificationPermissionClient> client)
35 frame.provideSupplement(NotificationPermissionClient::supplementName(), client);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 20 import android.filterfw.core.Frame;
33 private SortedMap<Integer, Frame> mAvailableFrames;
40 mAvailableFrames = new TreeMap<Integer, Frame>();
44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
49 result.setTimestamp(Frame.TIMESTAMP_NOT_SET);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
59 result.setTimestamp(Frame.TIMESTAMP_NOT_SET)
124 Frame frame = mAvailableFrames.get(oldest); local
134 Frame frame = entry.getValue(); local
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_frame_view_unittest.cc 45 TestBubbleFrameView frame; local
46 EXPECT_EQ(kArrow, frame.bubble_border()->arrow());
47 EXPECT_EQ(kColor, frame.bubble_border()->background_color());
49 int margin_x = frame.content_margins().left();
50 int margin_y = frame.content_margins().top();
51 gfx::Insets insets = frame.bubble_border()->GetInsets();
52 EXPECT_EQ(insets.left() + margin_x, frame.GetBoundsForClientView().x());
53 EXPECT_EQ(insets.top() + margin_y, frame.GetBoundsForClientView().y());
58 TestBubbleFrameView frame; local
61 gfx::Insets insets = frame.bubble_border()->GetInsets()
169 TestBubbleFrameView frame; local
179 TestBubbleFrameView frame; local
216 TestBubbleFrameView frame; local
231 TestBubbleFrameView frame; local
    [all...]
  /external/chromium_org/ppapi/c/
ppb_video_frame.h 72 * Gets the timestamp of the video frame.
74 * @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
78 * frame. Given in seconds since the start of the containing video stream.
80 PP_TimeDelta (*GetTimestamp)(PP_Resource frame);
82 * Sets the timestamp of the video frame. Given in seconds since the
85 * @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
88 * of the video frame. Given in seconds since the start of the containing
91 void (*SetTimestamp)(PP_Resource frame, PP_TimeDelta timestamp)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ProgrammaticScrollTest.cpp 3 #include "core/frame/FrameView.h"
60 LocalFrame* frame = webViewImpl->mainFrameImpl()->frame(); local
61 frame->loader().setLoadType(FrameLoadTypeBackForward);
65 frame->view()->setWasScrolledByUser(false);
66 frame->loader().currentItem()->setPageScaleFactor(2);
67 frame->loader().currentItem()->setScrollPoint(WebPoint(0, 200));
71 frame->view()->setWasScrolledByUser(false);
72 frame->loader().restoreScrollPositionAndViewState();
77 EXPECT_TRUE(frame->view()->wasScrolledByUser())
90 LocalFrame* frame = webViewImpl->mainFrameImpl()->frame(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoderBuilder.cpp 35 #include "core/frame/LocalFrame.h"
36 #include "core/frame/Settings.h"
41 static inline bool canReferToParentFrameEncoding(const LocalFrame* frame, const LocalFrame* parentFrame)
43 return parentFrame && parentFrame->document()->securityOrigin()->canAccess(frame->document()->securityOrigin());
60 if (LocalFrame* frame = document->frame()) {
61 if (Settings* settings = frame->settings())
70 LocalFrame* frame = document->frame(); local
72 if (frame && frame->tree().parent() && frame->tree().parent()->isLocalFrame()
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>