Home
last modified time | relevance | path

Searched refs:std (Results 12026 - 12050 of 20229) sorted by relevance

1...<<481482483484485486487488489490>>...810

/third_party/skia/experimental/graphite/src/
H A DDrawList.cpp21 , fShader(std::move(shader)) { in PaintParams()
106 fRenderer.steps()[renderStep]->writeVertices(std::move(vertexWriter), in writeVertices()
107 std::move(indexWriter), in writeVertices()
/third_party/skia/gm/
H A Dfillrect_gradient.cpp51 void drawGradient(SkCanvas* canvas, std::initializer_list<GradientStop> stops) { in drawGradient()
52 std::vector<SkColor> colors; in drawGradient()
53 std::vector<SkScalar> positions; in drawGradient()
H A Daarecteffect.cpp86 grPaint.setCoverageFragmentProcessor(std::move(fp));
88 auto op = sk_gpu_test::test_ops::MakeRect(rContext, std::move(grPaint), drawRect);
89 sdc->addDrawOp(std::move(op));
H A Dbigtileimagefilter.cpp74 std::move(imageSource)));
76 p.setImageFilter(std::move(tif));
92 p2.setImageFilter(std::move(tif));
/third_party/skia/include/core/
H A DSkImageGenerator.h156 static std::unique_ptr<SkImageGenerator> MakeFromEncoded(sk_sp<SkData>);
163 static std::unique_ptr<SkImageGenerator> MakeFromPicture(const SkISize&, sk_sp<SkPicture>,
195 static std::unique_ptr<SkImageGenerator> MakeFromEncodedImpl(sk_sp<SkData>);
/third_party/skia/modules/skottie/src/
H A DCamera.cpp39 const auto view_size = std::max(viewport_size.width(), viewport_size.height()), in ComputeCameraMatrix()
41 view_angle = std::atan(sk_ieee_float_divide(view_size * 0.5f, view_distance)); in ComputeCameraMatrix()
130 return sksg::Transform::MakeConcat(adapter->node(), std::move(parent)); in attachCamera()
/third_party/skia/modules/skottie/src/effects/
H A DGradientEffect.cpp26 std::move(layer), in Make()
36 : fShaderEffect(sksg::ShaderEffect::Make(std::move(layer))) { in GradientRampEffectAdapter()
132 std::move(layer), in attachGradientEffect()
/third_party/skia/modules/skottie/src/text/
H A DTextAdapter.h90 std::vector<sk_sp<TextAnimator>> fAnimators;
91 std::vector<FragmentRec> fFragments;
117 std::unique_ptr<PathInfo> fPathInfo;
/third_party/skia/modules/sksg/include/
H A DSkSGColorFilter.h102 std::vector<sk_sp<Color>>);
110 GradientColorFilter(sk_sp<RenderNode>, std::vector<sk_sp<Color>>);
112 const std::vector<sk_sp<Color>> fColors;
/third_party/rust/crates/regex/examples/
H A Dshootout-regex-dna-cheat.rs13 use std::io::{self, Read};
14 use std::sync::Arc;
15 use std::thread;
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dmd.rs14 use std::ffi::CString;
16 use std::ptr;
21 use std::ops::{Deref, DerefMut};
/third_party/rust/crates/syn/src/
H A Dlifetime.rs2 use std::cmp::Ordering;
3 use std::fmt::{self, Display};
4 use std::hash::{Hash, Hasher};
/third_party/skia/bench/
H A DRectanizerBench.cpp79 fRectanizer = std::make_unique<GrRectanizerPow2>(kWidth, kHeight);
82 fRectanizer = std::make_unique<GrRectanizerSkyline>(kWidth, kHeight);
118 std::unique_ptr<GrRectanizer> fRectanizer;
H A DPathTextBench.cpp62 float glyphSize = std::max(bounds.width(), bounds.height());
65 float size = (1 - t0) * std::min(kScreenWidth, kScreenHeight) / 50 +
66 t0 * std::min(kScreenWidth, kScreenHeight) / 3;
/third_party/rust/crates/nix/src/sys/
H A Depoll.rs4 use std::mem;
5 use std::os::unix::io::RawFd;
6 use std::ptr;
H A Dsignalfd.rs24 use std::mem;
25 use std::os::unix::io::{AsRawFd, RawFd};
123 if !std::thread::panicking() && e == Err(Errno::EBADF) { in drop()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
H A Dserver.rs1 use std::io::{Read, Write};
2 use std::net::{SocketAddr, TcpListener, TcpStream};
3 use std::thread::{self, JoinHandle};
/third_party/rust/crates/rustix/src/backend/libc/
H A Dmod.rs24 #[cfg(not(feature = "std"))]
34 #[cfg(feature = "std")]
43 pub(crate) use std::os::unix::io::RawFd as LibcFd;
45 pub use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
47 pub use std::os::wasi::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
/third_party/rust/crates/rustix/tests/net/
H A Daddr.rs11 let mut encoded = std::mem::MaybeUninit::<SocketAddrStorage>::uninit(); in encode_decode()
17 let mut encoded = std::mem::MaybeUninit::<SocketAddrStorage>::uninit(); in encode_decode()
25 let mut encoded = std::mem::MaybeUninit::<SocketAddrStorage>::uninit(); in encode_decode()
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/
H A Dcode_points.rs1 use std::iter::FusedIterator;
2 use std::iter::Peekable;
3 use std::mem;
/third_party/rust/crates/proc-macro-error/proc-macro-error-attr/src/
H A Dlib.rs17 type Result<T> = std::result::Result<T, Error>;
90 quote!(::std::panic::AssertUnwindSafe(|| #block )) in gen_body()
105 let closure = quote!(::std::panic::AssertUnwindSafe(|| #block )); in gen_body()
/third_party/skia/docs/examples/
H A DBlendModes.cpp16 auto comp = SkShaders::Blend(SkBlendMode::kModulate, std::move(rad), std::move(sweep)); in REG_FIDDLE()
18 p.setShader(std::move(comp)); in REG_FIDDLE()
/third_party/rust/crates/nom/fuzz/fuzz_targets/
H A Dfuzz_arithmetic.rs3 use std::str;
18 use std::str::FromStr;
19 use std::cell::RefCell;
/third_party/rust/crates/regex/bench/src/ffi/
H A Dpcre1.rs3 use std::ffi::{CStr, CString};
4 use std::fmt;
5 use std::ptr;
/third_party/rust/crates/syn/tests/macros/
H A Dmod.rs6 use std::str::FromStr;
11 use ::std::io::Write;
12 let stderr = ::std::io::stderr();

Completed in 15 milliseconds

1...<<481482483484485486487488489490>>...810