/external/nanopb-c/ |
D | CHANGELOG.txt | 2 Fix bug with default values for extension fields (issue 111) 3 Fix some MISRA-C warnings (issue 91) 4 Implemented optional malloc() support (issue 80) 6 Add a "found" field to pb_extension_t (issue 112) 7 Add convenience function pb_get_encoded_size() (issue 16) 10 Fix generator error with bytes callback fields (issue 99) 11 Fix warnings about large integer constants (issue 102) 12 Add comments to where STATIC_ASSERT is used (issue 96) 13 Add warning about unknown field names on .options (issue 105) 14 Move descriptor.proto to google/protobuf subdirectory (issue 104) [all …]
|
/external/clang/www/ |
D | make_cxx_dr_status | 17 def __init__(self, section, issue, url, status, title): argument 18 self.section, self.issue, self.url, self.status, self.title = \ 19 section, issue, url, status, title 21 return '%s (%s): %s' % (self.issue, self.status, self.title) 28 _, url, issue = issue_link.split('"', 2) 30 issue = int(issue.split('>', 1)[1].split('<', 1)[0]) 32 return DR(section, issue, url, status, title) 48 key = lambda dr: dr.issue) 96 def availability(issue): argument 97 status = status_map.get(issue, 'unknown') [all …]
|
/external/autotest/contrib/ |
D | crbug_crawler.py | 185 def _get_autofiled_count(issue): argument 192 for label in issue.labels: 248 key=lambda issue: self._get_autofiled_count(issue)) 265 for issue in issues: 266 issue_labels = set(issue.labels) 268 matching_issues.add(issue) 273 def does_query_match(cls, issue, query): argument 281 if query in issue.title or query in issue.summary: 286 if any(query in comment for comment in issue.comments): 308 for issue in issues: [all …]
|
/external/v8/ |
D | ChangeLog | 8 [wasm] Be more lenient on the names section (issue 5632). 2005 [wasm] Master CL for Binary 0xC changes (Chromium issue 575167). 2172 [wasm] Master CL for Binary 0xC changes (Chromium issue 575167). 5734 Recognize HTMLCloseComment after multiline comment (issue 5142). 6171 [stubs] GetPropertyStub added (issue 4911). 6173 [wasm] Fix receiver conversion for WASM->JS calls (Chromium issue 6261 Allow trailing commas in function parameter lists (issue 5051). 6288 [stubs] Implementing CodeStubAssembler::GetOwnProperty() (issue 4911). 6496 SyntaxError (issue 4955). 6713 [es8] Unstage syntactic tail calls (issue 4915). [all …]
|
/external/autotest/server/cros/dynamic_suite/ |
D | reporting.py | 577 issue = self._format_issue_options(bug_template, title=bug.title(), 583 filed_bug = self._phapi_client.create_issue(issue) 590 issue.get('owner')) 701 all_issues = [issue for issue in issues 702 if clean_marker in re.sub('[0-9]+', '', issue.summary)] 705 issue_ids = [issue.id for issue in all_issues] 713 for issue in issues: 715 for comment in issue.comments): 716 return issue 727 issue = self._find_issue_by_marker(marker) [all …]
|
D | reporting_unittest.py | 126 issue = self.mox.CreateMock(phapi_lib.Issue) 127 issue.id = self._FAKE_ISSUE_ID 128 issue.labels = [] 129 issue.state = constants.ISSUE_OPEN 136 issue) 150 def check_suite_options(issue): argument 158 assert('autofiled' in issue.labels) 161 and all(item in getattr(issue, k) for item in v)): 163 if v and getattr(issue, k) is not v: 356 issue = self.mox.CreateMock(gdata_lib.Issue) [all …]
|
/external/hamcrest/ |
D | CHANGES.txt | 19 * Fix gh issue #69 - Iterable contains in order is null-safe 21 * Fix gh issue #59 - added equalToObject() (i.e. unchecked) method 23 * Fix gh issue #25 - arrayContaining(null, null) cause NullPointerException 25 * Fix gh issue #36 - string matching on regular expressions 27 * Fix gh issue #8 - isCloseTo() shows wrong delta in mismatch description 29 * Fix issue 131 - Implement IsEmptyMap, IsMapWithSize 31 * Fix issue 155 - Deprecated several matcher factory methods of the for "isXyz" 33 * Fix issue 187 - IsArray.describeMismatchSafely() should use Matcher.describeMismatch 35 * Fix issue 155 - Add Matcher implementation for files 37 * Fix issue 59 - add untyped version of equalTo, named equalToObject [all …]
|
/external/mockito/src/test/java/org/mockito/exceptions/base/ |
D | MockitoSerializationIssueTest.java | 23 … MockitoSerializationIssue issue = new MockitoSerializationIssue("msg", new Exception("cause")); in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true() local 26 …assertThat(Arrays.toString(issue.getUnfilteredStackTrace())).contains("MockitoSerializationIssueTe… in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true() 27 …assertThat(Arrays.toString(issue.getStackTrace())).doesNotContain("MockitoSerializationIssueTest"); in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true() 36 … MockitoSerializationIssue issue = new MockitoSerializationIssue("msg", new Exception("cause")); in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false() local 39 …assertThat(Arrays.toString(issue.getUnfilteredStackTrace())).contains("MockitoSerializationIssueTe… in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false() 40 … assertThat(Arrays.toString(issue.getStackTrace())).contains("MockitoSerializationIssueTest"); in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false()
|
/external/cmockery/cmockery_0_1_2/packages/ |
D | rpm.sh | 59 if [ -r /etc/issue ] 61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7 62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8 63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9 64 if grep Fedora /etc/issue >/dev/null; then 65 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
|
/external/lz4/ |
D | NEWS | 77 Fixed : Fuzzer + frametest compatibility with NetBSD (issue #48, reported by Thomas Klausner) 129 Added : pkg-config, thanks to Zbigniew Jędrzejewski-Szmek (issue 135) 130 Makefile : lz4-test only test native binaries, as suggested by Michał Górny (issue 136) 140 fix : support ppc64le platform (issue 131) 142 fix : Makefile : minor issue 130 : header files permissions 147 fix : block-dependency command line (issue 127) 148 fix : lz4fullbench (issue 128) 151 hotfix (issue 124 & 125) 154 Added : lz4cat utility, installed on POSX systems (issue 118) 155 OS-X compatible compilation of dynamic library (issue 115) [all …]
|
/external/skia/infra/bots/recipe_modules/upload_nano_results/ |
D | api.py | 36 issue = str(self.m.properties.get('issue', '')) 39 issue = str(self.m.properties['patch_issue']) 41 if issue and patchset: 42 gs_path = '/'.join(('trybot', gs_path, issue, patchset))
|
/external/protobuf/csharp/protos/ |
D | unittest_issues.proto | 3 // These proto descriptors have at one time been reported as an issue or defect. 4 // They are kept here to replicate the issue, and continue to verify the fix. 21 // Old issue 13: http://code.google.com/p/protobuf-csharp-port/issues/detail?id=13 22 // New issue 309: https://github.com/google/protobuf/issues/309 36 // Similar issue with numeric names 43 // issue 19 - negative enum values
|
/external/flatbuffers/.github/ |
D | ISSUE_TEMPLATE.md | 1 Thank you for submitting an issue! 3 …, compiler version(s), operating system version(s), and FlatBuffers version(s) in your issue title. 5 This helps us get the correct maintainers to look at your issue. Here are examples of good titles:
|
/external/skia/infra/bots/recipe_modules/upload_dm_results/ |
D | api.py | 78 issue = str(self.m.properties.get('issue', '')) 81 issue = str(self.m.properties['patch_issue']) 83 if issue and patchset: 85 'trybot', summary_dest_path, issue, patchset))
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue115/ |
D | ParameterizedTest.java | 38 Issue issue = new Issue(); in testAsJavaBeanProperty() local 41 issue.parm = parm; in testAsJavaBeanProperty() 42 String result = yaml.dump(issue); in testAsJavaBeanProperty()
|
D | ParameterizedJavaBeanTest.java | 42 IssueBean issue = new IssueBean(); in testAsJavaBeanProperty() local 46 issue.setBean(bean); in testAsJavaBeanProperty() 47 String result = yaml.dump(issue); in testAsJavaBeanProperty()
|
/external/shflags/doc/ |
D | CHANGES-1.0.md | 15 Fixed issue #10. Usage of `expr` under FreeBSD 7.2 (FreeNAS 0.7.1) and FreeBSD 18 Fixed issue where booleans were sometimes mis-configured to require additional 23 Fixed issue #11. When help is requested, the help flag is no longer prefixed 28 Fixed issue #12. Requesting help shouldn't be considered an error. 47 Fixed issue in `shflags_test_public.sh` where screens >80 columns were causing a 65 Fixed issue# 7 where long flags defined with '=' (e.g. `--abc=123`) made it 73 Due to above fix for issue# 7, there is now proper support for mixing flags
|
/external/v8/tools/release/ |
D | check_clusterfuzz.py | 216 for issue in issues: 217 if re.match(spec["crash_state"], issue["crash_state"]): 218 results.append(issue["id"])
|
/external/skia/site/dev/chrome/ |
D | multi_repo_trybots.md | 27 '--issue', '1873923002', 39 Modify the 'issue' and 'patchset' to the appropriate values. 45 has the form 'issue\<issue>_\<patchset>.diff'. 85 'COMMIT=false' to the issue description to avoid accidentally checking it in.
|
/external/skia/ |
D | PRESUBMIT.py | 287 self._issue = input_api.change.issue 292 issue=int(self._issue), messages=True) 344 if input_api.change.issue: 395 if input_api.change.issue: 475 issue = cl.issue 476 if issue: 503 new_description += '\nDOCS_PREVIEW= %s%s' % (DOCS_PREVIEW_URL, issue)
|
/external/ppp/pppd/plugins/radius/etc/ |
D | radiusclient.conf | 25 issue /usr/local/etc/radiusclient/issue
|
/external/skia/site/user/ |
D | issue-tracker.md | 10 When filing a new issue, please select the appropriate template, most likely 21 * To have an issue triaged by the Skia team, add `Component:Internals>Skia`. 25 * If the Sheriff cannot be assigned, cc them and assign the issue to hcm@.
|
/external/skia/infra/bots/recipe_modules/vars/ |
D | api.py | 130 self.issue = None 137 self.issue = self.m.properties['issue'] 142 self.issue = self.m.properties['patch_issue'] 148 self.issue = self.m.properties['patch_issue'] 151 self.issue = self.m.properties['issue']
|
/external/webrtc/tools/valgrind-webrtc/gtest_exclude/ |
D | rtc_unittests.gtest-memcheck.txt | 5 # TODO(wu): Reenable P2PTransportChannelTest after issue 2158 is resolved. 17 # Flaky; WebRTC issue 5136
|
/external/skia/tools/ |
D | add_codereview_message.py | 34 def add_codereview_message(issue, message): argument 46 my_rietveld.add_comment(issue, message)
|