/third_party/rust/crates/regex/src/ |
D | re_unicode.rs | 311 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> { implementation 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 …]
|
D | re_bytes.rs | 255 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> { impl 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 …]
|
D | expand.rs | 9 caps: &re_unicode::Captures<'_>, in expand_str() 51 caps: &re_bytes::Captures<'_>, in expand_bytes()
|
D | lib.rs | 635 escape, CaptureLocations, CaptureMatches, CaptureNames, Captures,
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | EGLInitializePerf.cpp | 21 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/ |
D | rure.rs | 44 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/rust/crates/regex/tests/ |
D | replace.rs | 91 use_!(Captures); 97 |captures: &Captures<'_>| { 107 |_captures: &Captures<'_>| t!("Z").to_owned(),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 481 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/ |
D | CHANGELOG.md | 34 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/rust/crates/clap/src/builder/ |
D | command.rs | 4366 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/node/doc/api/ |
D | async_context.md | 162 Captures the current execution context and returns a function that accepts a
|
/third_party/ffmpeg/doc/ |
D | indevs.texi | 916 Captures the KMS scanout framebuffer associated with a specified CRTC or plane as a
|
/third_party/pcre2/pcre2/ |
D | ChangeLog | 1332 (d) Captures in negative assertions that were used as conditions were not
|