Searched refs:CaptureNames (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | regexp_test.cc | 66 TEST(Regexp, CaptureNames) { in TEST() argument 73 const std::map<int, std::string>* have = x->CaptureNames(); in TEST()
|
/external/rust/crates/regex/src/ |
D | re_unicode.rs | 720 pub fn capture_names(&self) -> CaptureNames { in capture_names() argument 721 CaptureNames(self.0.capture_names().iter()) in capture_names() 752 pub struct CaptureNames<'r>(::std::slice::Iter<'r, Option<String>>); struct 754 impl<'r> Iterator for CaptureNames<'r> { implementation 773 impl<'r> ExactSizeIterator for CaptureNames<'r> {} implementation 775 impl<'r> FusedIterator for CaptureNames<'r> {} implementation
|
D | re_bytes.rs | 661 pub fn capture_names(&self) -> CaptureNames { in capture_names() argument 662 CaptureNames(self.0.capture_names().iter()) in capture_names() 819 pub struct CaptureNames<'r>(::std::slice::Iter<'r, Option<String>>); struct 821 impl<'r> Iterator for CaptureNames<'r> { implementation 840 impl<'r> ExactSizeIterator for CaptureNames<'r> {} implementation 842 impl<'r> FusedIterator for CaptureNames<'r> {} implementation
|
D | lib.rs | 649 escape, CaptureLocations, CaptureMatches, CaptureNames, Captures,
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | regexp.h | 385 std::map<int, std::string>* CaptureNames();
|
D | regexp.cc | 652 std::map<int, std::string>* Regexp::CaptureNames() { in CaptureNames() function in re2::Regexp
|
D | re2.cc | 362 re->group_names_ = re->suffix_regexp_->CaptureNames(); in CapturingGroupNames()
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 915 llvm::SmallSet<IdentifierInfo*, 8> CaptureNames; in ActOnStartOfLambdaDefinition() local 1054 if (!CaptureNames.insert(C->Id).second) { in ActOnStartOfLambdaDefinition()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaLambda.cpp | 1029 llvm::SmallSet<IdentifierInfo*, 8> CaptureNames; in ActOnStartOfLambdaDefinition() local 1171 if (!CaptureNames.insert(C->Id).second) { in ActOnStartOfLambdaDefinition()
|