/third_party/python/Tools/c-analyzer/c_analyzer/ |
D | match.py | 5 match as _match, unknown 87 elif _match._is_funcptr(abstract): 112 elif _match.is_type_decl(decl): 113 return not _match.is_forward_decl(decl) 115 return _match.is_external_reference(decl) 123 elif _match.is_type_decl(decl): 124 return _match.is_forward_decl(decl) 126 return _match.is_external_reference(decl) 134 elif _match.is_type_decl(decl): 135 return not _match.is_forward_decl(decl) [all …]
|
D | datafiles.py | 6 import c_parser.match as _match namespace 48 collated = _match.group_by_kinds(known)
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
D | upgrade_test.dart | 143 bool _match(String line) => UpgradeCommandRunner.matchesGitLine(line); 146 expect(_match(' .../flutter_gallery/lib/demo/buttons_demo.dart | 10 +--'), true); 147 expect(_match(' dev/benchmarks/complex_layout/lib/main.dart | 24 +-'), true); 149 expect(_match(' rename {packages/flutter/doc => dev/docs}/styles.html (92%)'), true); 150 expect(_match(' delete mode 100644 doc/index.html'), true); 151 expect(_match(' create mode 100644 examples/flutter_gallery/lib/gallery/demo.dart'), true); 153 expect(_match('Fast-forward'), true); 157 expect(_match('Updating 79cfe1e..5046107'), false); 158 expect(_match('229 files changed, 6179 insertions(+), 3065 deletions(-)'), false);
|
/third_party/python/Parser/ |
D | asdl.py | 278 name = self._match(self._id_kinds) 279 self._match(TokenKind.LBrace) 281 self._match(TokenKind.RBrace) 288 self._match(TokenKind.Equals) 299 sumlist = [Constructor(self._match(TokenKind.ConstructorId), 305 self._match(TokenKind.ConstructorId), 314 self._match(TokenKind.LParen) 325 self._match(TokenKind.RParen) 364 def _match(self, kind): member in ASDLParser
|
/third_party/flutter/skia/tools/skpbench/ |
D | _benchresult.py | 54 self._match = match 57 return self._match.group(name) 61 return self._match.group(0)
|
/third_party/skia/tools/skpbench/ |
D | _benchresult.py | 54 self._match = match 57 return self._match.group(name) 61 return self._match.group(0)
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/ |
D | Makefile.in | 135 $(CPP) match.S > _match.s 136 $(CC) -c _match.s 137 mv _match.o match.o 138 rm -f _match.s 141 $(CPP) match.S > _match.s 142 $(CC) -c -fPIC _match.s 143 mv _match.o match.lo 144 rm -f _match.s 373 _match.s maketree contrib/infback9/*.o
|
/third_party/zlib/ |
D | Makefile.in | 135 $(CPP) match.S > _match.s 136 $(CC) -c _match.s 137 mv _match.o match.o 138 rm -f _match.s 141 $(CPP) match.S > _match.s 142 $(CC) -c -fPIC _match.s 143 mv _match.o match.lo 144 rm -f _match.s 373 _match.s maketree contrib/infback9/*.o
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/ |
D | Makefile.in | 135 $(CPP) match.S > _match.s 136 $(CC) -c _match.s 137 mv _match.o match.o 138 rm -f _match.s 141 $(CPP) match.S > _match.s 142 $(CC) -c -fPIC _match.s 143 mv _match.o match.lo 144 rm -f _match.s 373 _match.s maketree contrib/infback9/*.o
|
/third_party/boost/libs/metaparse/tools/benchmark/ |
D | generate.py | 145 match = self._match(in_comment( 163 def _match(self, regex): member in Template 177 return self._match(regex).group(1)
|
/third_party/python/Lib/ |
D | tracemalloc.py | 349 def _match(self, trace): member in BaseFilter 390 def _match(self, trace): member in Filter 410 def _match(self, trace): member in DomainFilter 443 if not any(trace_filter._match(trace) 447 if any(not trace_filter._match(trace)
|
D | imaplib.py | 1079 if self._match(self.tagre, resp): 1093 if not self._match(Untagged_response, resp): 1094 if self._match(self.Untagged_status, resp): 1100 if self._match(Continuation, resp): 1114 while self._match(self.Literal, dat): 1136 if typ in ('OK', 'NO', 'BAD') and self._match(Response_code, dat): 1200 def _match(self, cre, s): member in IMAP4
|
/third_party/gstreamer/gstplugins_bad/ext/webrtc/ |
D | gstwebrtcice.c | 211 _match (struct NiceStreamItem *item, struct NiceStreamItem *m) in _match() function 233 return _nice_stream_item_find (ice, (NiceStreamItemFindFunc) _match, &m); in _find_item() 424 item = _nice_stream_item_find (ice, (NiceStreamItemFindFunc) _match, &m); in gst_webrtc_ice_add_stream()
|
/third_party/flutter/engine/flutter/tools/licenses/lib/ |
D | licenses.dart | 638 …_PartialLicenseMatch(this._body, this.start, this.split, this.end, this._match, { this.hasCopyrigh… 645 final Match _match; 646 String group(int index) => _match.group(index);
|
/third_party/grpc/third_party/upb/generated_for_cmake/upb/json/ |
D | parser.c | 2896 goto _match; in parse() 2919 goto _match; in parse() 2925 _match: in parse()
|
/third_party/grpc/third_party/upb/cmake/upb/json/ |
D | parser.c | 2896 goto _match; in parse() 2919 goto _match; in parse() 2925 _match: in parse()
|
/third_party/pcre2/pcre2/src/ |
D | pcre2.h.in | 358 /* Miscellaneous error codes for pcre2[_dfa]_match(), substring extraction
|
D | pcre2.h.generic | 358 /* Miscellaneous error codes for pcre2[_dfa]_match(), substring extraction
|
/third_party/python/Doc/reference/ |
D | compound_stmts.rst | 493 .. _match:
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 11849 goto _match; in parse() 11872 goto _match; in parse() 11878 _match: in parse()
|
/third_party/python/Doc/library/ |
D | re.rst | 1139 .. _match-objects:
|
/third_party/typescript/src/compiler/ |
D | utilities.ts | 6003 …return text.replace(/{(\d+)}/g, (_match, index: string) => "" + Debug.checkDefined(args[+index + b…
|
/third_party/boost/libs/parameter/doc/ |
D | reference.rst | 729 .. _match:
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | compilation_trace.txt | 1766 dart:core,_RegExpMatch,get:_match
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 18727 …return text.replace(/{(\d+)}/g, function (_match, index) { return "" + ts.Debug.checkDefined(args[… argument
|