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

<<11121314151617181920>>

  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper.cc 76 void ExecuteScript(blink::WebFrame* frame,
82 frame->executeScript(blink::WebString(base::UTF8ToUTF16(script)));
104 blink::WebFrame* frame,
129 if (frame) {
130 frame->pageSizeAndMarginsInPixels(page_index,
145 CHECK(frame != NULL);
159 // Printing frame doesn't have any page size css. Pixels to dpi conversion
287 blink::WebPlugin* GetPlugin(const blink::WebFrame* frame) {
288 return frame->document().isPluginDocument() ?
289 frame->document().to<blink::WebPluginDocument>().plugin() : NULL
470 blink::WebLocalFrame* frame = blink::WebLocalFrame::create(NULL); local
552 blink::WebLocalFrame* frame() { function in class:printing::__anon10460::PrepareFrameAndViewForPrint
728 blink::WebFrame* frame = blink::WebLocalFrame::create(this); local
753 blink::WebLocalFrame* frame = frame_.GetFrame(); local
954 blink::WebLocalFrame* frame; local
960 blink::WebLocalFrame* frame = print_preview_context_.source_frame(); local
1205 blink::WebLocalFrame* frame = NULL; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
window_capturer_win.cc 176 // Return a 1x1 black frame if the window is minimized, to match the behavior
179 BasicDesktopFrame* frame = new BasicDesktopFrame(DesktopSize(1, 1)); local
180 memset(frame->data(), 0, frame->stride() * frame->size().height());
182 previous_size_ = frame->size();
183 callback_->OnCaptureCompleted(frame);
202 scoped_ptr<DesktopFrameWin> frame(DesktopFrameWin::Create(
204 if (!frame.get()) {
211 HGDIOBJ previous_object = SelectObject(mem_dc, frame->bitmap())
    [all...]
  /system/core/libbacktrace/
BacktraceImpl.cpp 100 std::string Backtrace::FormatFrameData(const backtrace_frame_data_t* frame) {
102 if (frame->map && !frame->map->name.empty()) {
103 map_name = frame->map->name.c_str();
109 if (frame->map) {
110 relative_pc = frame->pc - frame->map->start;
112 relative_pc = frame->pc;
116 if (!frame->func_name.empty() && frame->func_offset)
    [all...]
  /external/chromium_org/chrome/renderer/net/
net_error_helper.cc 58 NetErrorHelperCore::PageType GetLoadingPageType(const blink::WebFrame* frame) {
59 GURL url = frame->provisionalDataSource()->request().url();
65 NetErrorHelperCore::FrameType GetFrameType(const blink::WebFrame* frame) {
66 if (!frame->parent())
105 blink::WebFrame* frame = render_frame()->GetWebFrame(); local
106 core_->OnStartLoad(GetFrameType(frame), GetLoadingPageType(frame));
110 blink::WebFrame* frame = render_frame()->GetWebFrame(); local
111 core_->OnCommitLoad(GetFrameType(frame), frame->document().url())
115 blink::WebFrame* frame = render_frame()->GetWebFrame(); local
    [all...]
  /external/lldb/examples/python/
diagnose_unwind.py 14 # Print the frame number, pc, frame pointer, module UUID and function name
51 # A simple stack walk algorithm that follows the frame chain.
102 # Clear the 0th bit for arm frames - this indicates it is a thumb frame
120 outline = "Stack frame from $fp-%d: " % (2 * addr_size)
180 for frame in thread.frames:
181 if not frame.IsInlined():
182 this_module = backtrace_print_frame (target, frame_num, frame.GetPC(), frame.GetFP())
183 print_stack_frame (process, frame.GetFP()
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
web_test_proxy.cc 96 void PrintFrameDescription(WebTestDelegate* delegate, blink::WebFrame* frame) {
97 std::string name8 = frame->uniqueName().utf8();
98 if (frame == frame->view()->mainFrame()) {
100 delegate->PrintMessage("main frame");
103 delegate->PrintMessage(std::string("main frame \"") + name8 + "\"");
107 delegate->PrintMessage("frame (anonymous)");
110 delegate->PrintMessage(std::string("frame \"") + name8 + "\"");
114 blink::WebFrame* frame,
118 delegate->PrintMessage(std::string("Frame with user gesture \"")
423 blink::WebFrame* frame = GetWebView()->mainFrame(); local
    [all...]
  /external/chromium_org/android_webview/renderer/
print_web_view_helper.cc 75 void ExecuteScript(blink::WebFrame* frame,
81 frame->executeScript(blink::WebString(base::UTF8ToUTF16(script)));
103 blink::WebFrame* frame,
128 if (frame) {
129 frame->pageSizeAndMarginsInPixels(page_index,
144 CHECK(frame);
158 // Printing frame doesn't have any page size css. Pixels to dpi conversion
286 blink::WebPlugin* GetPlugin(const blink::WebFrame* frame) {
287 return frame->document().isPluginDocument() ?
288 frame->document().to<blink::WebPluginDocument>().plugin() : NULL
519 blink::WebLocalFrame* frame() { function in class:printing::__anon6460::PrepareFrameAndViewForPrint
695 blink::WebFrame* frame = blink::WebLocalFrame::create(this); local
726 blink::WebLocalFrame* frame = frame_.GetFrame(); local
910 blink::WebLocalFrame* frame; local
916 blink::WebLocalFrame* frame = print_preview_context_.source_frame(); local
1179 blink::WebLocalFrame* frame = NULL; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTraceEvents.cpp 12 #include "core/frame/FrameView.h"
13 #include "core/frame/LocalFrame.h"
66 LocalFrame& frame = frameView->frame(); local
67 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
73 value->setString("frame", toHexString(&frame));
122 value->setString("frame", toHexString(renderer->frame()));
133 value->setString("frame", toHexString(renderer->frame()))
188 LocalFrame* frame = 0; local
277 LocalFrame* frame = renderer.frame(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
RemoteDebugger.py 19 barrier, in particular frame and traceback objects.
41 def wrap_frame(frame):
42 fid = id(frame)
43 frametable[fid] = frame
64 def interaction(self, message, frame, info=None):
66 # pass frame and traceback object IDs instead of the objects themselves
68 (message, wrap_frame(frame), wrap_info(info)),
88 frame = frametable[fid]
89 self.idb.set_next(frame)
92 frame = frametable[fid
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
RemoteDebugger.py 19 barrier, in particular frame and traceback objects.
41 def wrap_frame(frame):
42 fid = id(frame)
43 frametable[fid] = frame
64 def interaction(self, message, frame, info=None):
66 # pass frame and traceback object IDs instead of the objects themselves
68 (message, wrap_frame(frame), wrap_info(info)),
88 frame = frametable[fid]
89 self.idb.set_next(frame)
92 frame = frametable[fid
    [all...]
  /external/chromium_org/content/renderer/
render_frame_impl.cc 239 // frame was loaded by loadData, the original url will be ds->unreachableURL()
241 // WebDataSource has unreachable URL means that the frame is loaded through
326 static bool IsTopLevelNavigation(WebFrame* frame) {
327 return frame->parent() == NULL;
332 WebFrame* frame,
335 if (!IsTopLevelNavigation(frame))
353 blink::WebFrame* opener = frame->opener();
391 // top level frame is created when the RenderView is created through the
744 // to this method. This happens for a top-level remote frame, where a
872 WebFrame* frame = frame_; local
    [all...]
  /art/runtime/arch/mips/
portable_entrypoints_mips.S 25 # Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
54 sw $a0, 0($sp) # place proxy method at bottom of frame
60 addiu $sp, $sp, 64 # pop frame
91 addiu $t0, $a2, 16 # create space for method pointer in frame
92 srl $t0, $t0, 3 # shift the frame size right 3
93 sll $t0, $t0, 3 # shift the frame size left 3 to align to 16 bytes
105 sw $zero, 0($sp) # store NULL for method* at bottom of frame
  /cts/suite/cts/deviceTests/opengl/jni/reference/
ReferenceRenderer.h 28 bool update(int frame);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 60 public static string getMethodName(StackFrame frame) {
61 return frame.GetMethod().Name;
65 public static string getClassName(StackFrame frame) {
66 return frame.GetMethod().DeclaringType.Name;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 65 public static string getMethodName( this StackFrame frame )
67 return frame.GetMethod().Name;
71 public static string getClassName( this StackFrame frame )
73 return frame.GetMethod().DeclaringType.Name;
  /external/chromium_org/cc/layers/
video_frame_provider.h 47 // This function places a lock on the current frame and returns a pointer to
53 // This function releases the lock on the video frame. It should always be
58 const scoped_refptr<media::VideoFrame>& frame) = 0;
  /external/chromium_org/chrome/browser/download/
download_status_updater_win.cc 47 HWND frame = views::HWNDForNativeWindow(window->GetNativeWindow()); local
49 taskbar->SetProgressState(frame, TBPF_NOPROGRESS);
51 taskbar->SetProgressState(frame, TBPF_INDETERMINATE);
53 taskbar->SetProgressValue(frame, static_cast<int>(progress * 100), 100);
  /external/chromium_org/chrome/browser/ui/cocoa/
bubble_combobox.h 20 - (id)initWithFrame:(NSRect)frame
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
mic_search_decoration.h 23 virtual bool OnMousePressed(NSRect frame, NSPoint location) OVERRIDE;
page_action_decoration.h 59 virtual bool OnMousePressed(NSRect frame, NSPoint location) OVERRIDE;
62 virtual NSPoint GetBubblePointInFrame(NSRect frame) OVERRIDE;
64 // Activates the page action in its default frame, and, if |grant_active_tab|
70 // Activate the page action in the given |frame|.
71 bool ActivatePageAction(NSRect frame, bool grant_active_tab);
73 // Show the popup in the frame, with the given URL.
74 void ShowPopup(const NSRect& frame, const GURL& popup_url);
  /external/chromium_org/chrome/renderer/extensions/
chrome_v8_context.h 35 blink::WebFrame* frame,
  /external/chromium_org/chrome/renderer/
web_apps.h 33 void ParseWebAppFromWebDocument(blink::WebFrame* frame,
  /external/chromium_org/content/browser/compositor/
gpu_surfaceless_browser_compositor_output_surface.cc 38 cc::CompositorFrame* frame) {
42 output_surface_->SwapBuffers(frame->gl_frame_data->sub_buffer_rect);
43 const gfx::Size& size = frame->gl_frame_data->size;
56 GpuBrowserCompositorOutputSurface::SwapBuffers(frame);
  /external/chromium_org/content/renderer/media/
native_handle_impl.h 16 // Wraps a video frame in the handle.
17 explicit NativeHandleImpl(scoped_refptr<media::VideoFrame> frame);
20 // Retrieves the video frame in the handle. The frame is still ref-counted by
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.cc 85 const scoped_refptr<media::VideoFrame>& frame) {
88 if (!(media::VideoFrame::I420 == frame->format() ||
89 media::VideoFrame::YV12 == frame->format())) {
98 first_frame_timestamp_ = frame->timestamp();
101 captured_frame.width = frame->natural_size().width();
102 captured_frame.height = frame->natural_size().height();
105 (frame->timestamp() - first_frame_timestamp_).InMicroseconds() *
107 captured_frame.time_stamp = frame->timestamp().InMicroseconds() *
116 if (frame->format() != media::VideoFrame::I420 ||
117 frame->coded_size() != frame->natural_size())
    [all...]

Completed in 5230 milliseconds

<<11121314151617181920>>