Home
last modified time | relevance | path

Searched refs:Captures (Results 1 – 22 of 22) sorted by relevance

/third_party/rust/crates/regex/src/
Dre_unicode.rs311 pub fn captures<'t>(&self, text: &'t str) -> Option<Captures<'t>> { in captures()
313 self.captures_read_at(&mut locs, text, 0).map(move |_| Captures { in captures()
922 pub struct Captures<'t> { struct
928 impl<'t> Captures<'t> { argument
1002 impl<'t> fmt::Debug for Captures<'t> { implementation
1008 struct CapturesDebug<'c, 't>(&'c Captures<'t>);
1040 impl<'t> Index<usize> for Captures<'t> { implementation
1062 impl<'t, 'i> Index<&'i str> for Captures<'t> { implementation
1083 caps: &'c Captures<'t>,
1122 type Item = Captures<'t>;
[all …]
Dre_bytes.rs255 pub fn captures<'t>(&self, text: &'t [u8]) -> Option<Captures<'t>> { in captures()
257 self.captures_read_at(&mut locs, text, 0).map(move |_| Captures { in captures()
721 type Item = Captures<'t>;
723 fn next(&mut self) -> Option<Captures<'t>> { in next()
724 self.0.next().map(|locs| Captures { in next()
912 pub struct Captures<'t> { struct
918 impl<'t> Captures<'t> { implementation
992 impl<'t> fmt::Debug for Captures<'t> { implementation
998 struct CapturesDebug<'c, 't>(&'c Captures<'t>);
1045 impl<'t> Index<usize> for Captures<'t> { implementation
[all …]
Dexpand.rs9 caps: &re_unicode::Captures<'_>, in expand_str()
51 caps: &re_bytes::Captures<'_>, in expand_bytes()
Dlib.rs635 escape, CaptureLocations, CaptureMatches, CaptureNames, Captures,
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DEGLInitializePerf.cpp21 struct Captures final : private angle::NonCopyable struct
31 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_currentTime()
42 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_histogramCustomCounts()
74 Captures mCaptures;
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/
DEGLInitializePerf.cpp21 struct Captures final : private angle::NonCopyable struct
31 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_currentTime()
42 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_histogramCustomCounts()
74 Captures mCaptures;
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs44 pub struct Captures(bytes::Locations); struct
196 captures: *mut Captures,
369 captures: *mut Captures,
401 fn rure_captures_new(re: *const Regex) -> *mut Captures {
403 let captures = Captures(re.locations());
409 fn rure_captures_free(captures: *const Captures) {
410 unsafe { drop(Box::from_raw(captures as *mut Captures)); }
416 captures: *const Captures,
437 fn rure_captures_len(captures: *const Captures) -> size_t {
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dplugin_registrar.cc105 struct Captures { in Send() struct
108 auto captures = new Captures(); in Send()
113 auto captures = reinterpret_cast<Captures*>(user_data); in Send()
/third_party/rust/crates/regex/tests/
Dreplace.rs91 use_!(Captures);
97 |captures: &Captures<'_>| {
107 |_captures: &Captures<'_>| t!("Z").to_owned(),
/third_party/flutter/engine/flutter/shell/platform/darwin/macos/framework/Source/
DFlutterEngine.mm343 struct Captures {
346 auto captures = std::make_unique<Captures>();
349 auto captures = reinterpret_cast<Captures*>(user_data);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp481 bool Captures = true; in determinePointerReadAttrs() local
484 Captures = false; in determinePointerReadAttrs()
487 if (Captures) in determinePointerReadAttrs()
529 Captures &= !CS.doesNotCapture(UseIndex); in determinePointerReadAttrs()
/third_party/rust/crates/regex/
DCHANGELOG.md34 Clarify that `Captures::len` includes all groups, not just matching groups.
841 Add example that uses `Captures::get` to API documentation.
908 * The `Captures` type now only provides a single iterator over all capturing
911 * The `at` method on the `Captures` type has been renamed to `get`, and it
912 now returns a `Match`. Similarly, the `name` method on `Captures` now returns
932 * The `is_empty` method on `Captures` has been removed. This always returns
953 Iterators produced by `Captures` now have the correct lifetime parameters.
959 Remove `is_empty` from `Captures` since it always returns false.
961 Position of named capture can now be retrieved from a `Captures`.
1095 `Captures` now has a `Debug` impl.
/third_party/flutter/engine/flutter/shell/platform/embedder/tests/
Dembedder_unittests.cc303 struct Captures { in TEST_F() struct
307 Captures captures; in TEST_F()
333 auto captures = reinterpret_cast<Captures*>(user_data); in TEST_F()
/third_party/flutter/engine/flutter/shell/platform/embedder/
Dace_embedder.cc383 struct Captures { in MakeSkSurfaceFromBackingStore() struct
387 auto captures = std::make_unique<Captures>(); in MakeSkSurfaceFromBackingStore()
391 auto captures = reinterpret_cast<Captures*>(context); in MakeSkSurfaceFromBackingStore()
Dembedder.cc366 struct Captures { in MakeSkSurfaceFromBackingStore() struct
370 auto captures = std::make_unique<Captures>(); in MakeSkSurfaceFromBackingStore()
374 auto captures = reinterpret_cast<Captures*>(context); in MakeSkSurfaceFromBackingStore()
/third_party/rust/crates/clap/src/builder/
Dcommand.rs4366 pub(crate) trait Captures<'a> {} interface
4367 impl<'a, T> Captures<'a> for T {}
4457 pub(crate) fn all_subcommand_names(&self) -> impl Iterator<Item = &str> + Captures { in all_subcommand_names()
/third_party/flutter/flutter/dev/devicelab/lib/framework/
Dutils.dart509 /// Captures asynchronous stack traces thrown by [callback].
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ios/
Dmac.dart249 /// Captures a screenshot to the specified outputFile.
/third_party/flutter/flutter/packages/flutter_tools/lib/src/runner/
Dflutter_command_runner.dart102 help: 'Captures a bug report file to submit to the Flutter team.\n'
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dwidget_inspector.dart508 /// Captures an image of the current state of [renderObject] and its children.
1658 /// Captures an image of the current state of an [object] that is a
/third_party/ffmpeg/doc/
Dindevs.texi896 Captures the KMS scanout framebuffer associated with a specified CRTC or plane as a
/third_party/pcre2/pcre2/
DChangeLog1219 (d) Captures in negative assertions that were used as conditions were not