/external/chromium_org/third_party/WebKit/Source/core/events/ |
H A D | 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/ |
H A D | 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/ |
H A D | 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/ |
H A D | audio_frame_operations.cc | 25 int AudioFrameOperations::MonoToStereo(AudioFrame* frame) { argument 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) { argument 52 if (frame 62 SwapStereoChannels(AudioFrame* frame) argument 72 Mute(AudioFrame& frame) argument 77 Scale(float left, float right, AudioFrame& frame) argument 91 ScaleWithSat(float scale, AudioFrame& frame) argument [all...] |
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/ |
H A D | color_enhancement.cc | 19 int32_t ColorEnhancement(I420VideoFrame* frame) { argument 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);
|
H A D | brighten.cc | 18 int32_t Brighten(I420VideoFrame* frame, int delta) { argument 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);
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
H A D | 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); 17 CreateBrowserNonClientFrameView( BrowserFrame* frame, BrowserView* browser_view) argument
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | 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) argument 29 if (frame) 30 return MediaValuesDynamic::create(frame); 34 int MediaValues::calculateViewportWidth(LocalFrame* frame) const 36 ASSERT(frame && frame [all...] |
/external/chromium_org/chrome/renderer/searchbox/ |
H A D | 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/ |
H A D | 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) argument 50 : DOMWindowProperty(frame) 66 if (!frame()) 68 return frame()->document(); 73 if (!frame()) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
H A D | WebFrame.cpp | 8 #include "core/frame/RemoteFrame.h" 19 Frame* toCoreFrame(const WebFrame* frame) argument 21 if (!frame) 24 return frame->isWebLocalFrame() 25 ? static_cast<Frame*>(toWebLocalFrameImpl(frame)->frame()) 26 : toWebRemoteFrameImpl(frame)->frame(); 29 bool WebFrame::swap(WebFrame* frame) argument 37 // If the frame ha 153 WebFrame* frame = const_cast<WebFrame*>(this); local 195 Frame* frame = toCoreFrame(this); local 203 fromFrame(Frame* frame) argument 229 traceChildren(Visitor* visitor, WebFrame* frame) argument [all...] |
H A D | WebTestingSupport.cpp | 35 void WebTestingSupport::injectInternalsObject(WebLocalFrame* frame) argument 38 WebCoreTestSupport::injectInternalsObject(frame->mainWorldScriptContext()); 41 void WebTestingSupport::resetInternalsObject(WebLocalFrame* frame) argument 44 WebCoreTestSupport::resetInternalsObject(frame->mainWorldScriptContext());
|
H A D | OpenedFrameTracker.cpp | 26 void OpenedFrameTracker::add(WebFrame* frame) argument 28 m_openedFrames.add(frame); 31 void OpenedFrameTracker::remove(WebFrame* frame) argument 33 m_openedFrames.remove(frame); 36 void OpenedFrameTracker::updateOpener(WebFrame* frame) argument 40 (*it)->m_opener = frame;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | 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" [all...] |
/external/sonivox/jet_tools/JetCreator/ |
H A D | JetHelp.py | 28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600))
variable 29 html1 = wx.html.HtmlWindow(frame, -1)
31 frame.Center()
32 frame.Show()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
H A D | 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 { argument 76 frame.push(Type.UNINIT); 85 frame.push(Type.INTEGER); 89 frame.push(Type.LONG); 90 frame.push(Type.TOP); 95 frame 633 evalArrayLoad(Type expectedComponent, Frame frame) argument 661 evalArrayStore(Type expectedComponent, Frame frame) argument 694 evalBinaryMath(Type expected, Frame frame) argument 703 evalGetField(int opcode, int index, Frame frame) argument 715 evalInvokeIntfMethod(int opcode, int index, Frame frame) argument 732 evalInvokeMethod(int opcode, int index, Frame frame) argument 751 evalLDC(int index, Frame frame) argument 780 evalLoad(Type expected, int index, Frame frame, Subroutine subroutine) argument 789 evalNewArray(int pos, CodeIterator iter, Frame frame) argument 826 evalNewObjectArray(int pos, CodeIterator iter, Frame frame) argument 847 evalPutField(int opcode, int index, Frame frame) argument 859 evalShift(Type expected, Frame frame) argument 868 evalStore(Type expected, int index, Frame frame, Subroutine subroutine) argument 878 evalWide(int pos, CodeIterator iter, Frame frame, Subroutine subroutine) argument 964 simplePeek(Frame frame) argument 969 simplePop(Frame frame) argument 974 simplePush(Type type, Frame frame) argument 988 simpleSetLocal(int index, Type type, Frame frame) argument [all...] |
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/ |
H A D | 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) { argument 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 85 UpdateEmptyFrame(const VCMFrameBuffer* frame) argument 123 UpdateSyncState(const VCMFrameBuffer* frame) argument [all...] |
/external/chromium_org/content/browser/renderer_host/ |
H A D | renderer_frame_manager.cc | 20 void RendererFrameManager::AddFrame(RendererFrameManagerClient* frame, argument 22 RemoveFrame(frame); 24 locked_frames_[frame] = 1; 26 unlocked_frames_.push_front(frame); 30 void RendererFrameManager::RemoveFrame(RendererFrameManagerClient* frame) { argument 32 locked_frames_.find(frame); 35 unlocked_frames_.remove(frame); 38 void RendererFrameManager::LockFrame(RendererFrameManagerClient* frame) { argument 40 std::find(unlocked_frames_.begin(), unlocked_frames_.end(), frame); 42 DCHECK(locked_frames_.find(frame) 51 UnlockFrame(RendererFrameManagerClient* frame) argument [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
H A D | 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) argument 35 frame.provideSupplement(NotificationPermissionClient::supplementName(), client);
|
/external/chromium_org/v8/test/mjsunit/ |
H A D | debug-evaluate-locals.js | 44 function checkFrame0(frame) { 46 var count = frame.localCount(); 49 var name = frame.localName(i); 50 var value = frame.localValue(i).value(); 67 function checkFrame1(frame) { 69 var count = frame.localCount(); 72 var name = frame.localName(i); 73 var value = frame.localValue(i).value(); 91 function checkFrame2(frame) { 93 var count = frame [all...] |
H A D | debug-break-inline.js | 52 var frame = exec_state.frame(i); 54 // expect an optimized frame for f and g. 57 assertTrue(frame.isOptimizedFrame()); 58 assertTrue(frame.isInlinedFrame()); 59 assertEquals(4 - i, frame.inlinedFrameIndex()); 61 assertTrue(frame.isOptimizedFrame()); 62 assertFalse(frame.isInlinedFrame()); 64 assertFalse(frame.isOptimizedFrame()); 65 assertFalse(frame [all...] |
/external/chromium_org/ui/views/bubble/ |
H A D | 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 169 TestBubbleFrameView frame; local 179 TestBubbleFrameView frame; local 216 TestBubbleFrameView frame; local 231 TestBubbleFrameView frame; local [all...] |
/external/chromium_org/ppapi/c/ |
H A D | 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_TimeDelt [all...] |
/external/chromium_org/third_party/webrtc/modules/utility/interface/ |
H A D | 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/tests/ |
H A D | 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 90 LocalFrame* frame = webViewImpl->mainFrameImpl()->frame(); local [all...] |