Searched refs:capture_size (Results 1 - 9 of 9) sorted by relevance

/external/qemu/android/
H A Dqemu-tcpdump.c21 static uint64_t capture_size; variable
105 capture_size = 0;
138 capture_size += len2;
145 *psize = capture_size;
/external/chromium_org/ui/views/controls/webview/
H A Dwebview.cc159 const gfx::Size capture_size = web_contents()->GetPreferredSize(); local
160 if (capture_size.width() <= holder_bounds.width() &&
161 capture_size.height() <= holder_bounds.height()) {
163 holder_bounds.ClampToCenteredSize(capture_size);
169 const int64 x = static_cast<int64>(capture_size.width()) *
171 const int64 y = static_cast<int64>(capture_size.height()) *
175 holder_bounds.width(), static_cast<int>(y / capture_size.width())));
178 static_cast<int>(x / capture_size.height()), holder_bounds.height()));
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dreport.c118 int capture_size = XRayFrameGetTraceCount(capture, frame); local
127 capture_size,
133 total_capture += capture_size;
155 int capture_size = XRayFrameGetTraceCount(capture, frame); local
162 capture_size,
/external/chromium_org/content/public/browser/
H A Dweb_contents.h301 // of decrement calls. |capture_size| specifies the capturer's video
303 // capturer that provides a non-empty |capture_size| will override the value
305 virtual void IncrementCapturerCount(const gfx::Size& capture_size) = 0;
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc2411 const gfx::Size capture_size(1280, 720);
2412 contents()->IncrementCapturerCount(capture_size);
2414 EXPECT_EQ(capture_size, contents()->GetPreferredSize());
2421 EXPECT_EQ(capture_size, contents()->GetPreferredSize());
2428 EXPECT_EQ(capture_size, contents()->GetPreferredSize());
H A Dweb_contents_impl.h247 virtual void IncrementCapturerCount(const gfx::Size& capture_size) OVERRIDE;
H A Dweb_contents_impl.cc952 void WebContentsImpl::IncrementCapturerCount(const gfx::Size& capture_size) { argument
960 if (!capture_size.IsEmpty() && preferred_size_for_capture_.IsEmpty()) {
961 preferred_size_for_capture_ = capture_size;
/external/clang/include/clang/AST/
H A DExprCXX.h1443 unsigned capture_size() const { return NumCaptures; } function in class:clang::LambdaExpr
H A DStmt.h2131 unsigned capture_size() const { return NumCaptures; } function in class:clang::CapturedStmt

Completed in 178 milliseconds