/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/v8/ |
D | ChangeLog | 123 Disable concurrent osr (issue 4650). 150 [wasm] Rename the WASM object to _WASMEXP_ (Chromium issue 575167). 174 Gracefully handle proxies in AllCanWrite() (issue 1543, Chromium issue 182 [wasm] Fix double to int conversions (Chromium issue 576560). 216 Add @@species/better subclassing support to Promises (issue 4633, 217 Chromium issue 575314). 219 TypedArray and ArrayBuffer support for @@species (issue 4093). 236 Ship ES2015 sloppy-mode const semantics (issue 3305). 243 Partial rollback of Promise error checking (issue 4633). 260 [wasm] Fix set_local appearing in unreachable code (Chromium issue [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/chromium-trace/catapult/third_party/coverage/ |
D | CHANGES.rst | 13 hanging the process (`issue 420`_), sometimes making database connections 14 fail (`issue 445`_). 18 `issue 439`_. Thanks, Arcady Ivanov. 21 `issue 443`_. 25 this closes `issue 438`_. 37 - More work on supporting unusually encoded source. Fixed `issue 431`_. 40 fixing `issue 432`_. 43 as reported in `issue 436`_. This is now fixed. 59 Prompted by `issue 418`_. 64 fixed, closing `issue 423`_. [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/autotest/server/cros/dynamic_suite/ |
D | reporting.py | 529 issue = self._format_issue_options(bug_template, title=bug.title(), 535 filed_bug = self._phapi_client.create_issue(issue) 542 issue.get('owner')) 653 all_issues = [issue for issue in issues 654 if clean_marker in re.sub('[0-9]+', '', issue.summary)] 657 issue_ids = [issue.id for issue in all_issues] 665 for issue in issues: 667 for comment in issue.comments): 668 return issue 679 issue = self.find_issue_by_marker(marker) [all …]
|
D | reporting_unittest.py | 122 issue = self.mox.CreateMock(phapi_lib.Issue) 123 issue.id = self._FAKE_ISSUE_ID 124 issue.labels = [] 125 issue.state = constants.ISSUE_OPEN 131 issue) 145 def check_suite_options(issue): argument 153 assert('autofiled' in issue.labels) 156 and all(item in getattr(issue, k) for item in v)): 158 if v and getattr(issue, k) is not v: 336 issue = self.mox.CreateMock(gdata_lib.Issue) [all …]
|
/external/autotest/site_utils/ |
D | test_push_unittest.py | 127 issue = self.mox.CreateMock(phapi_lib.Issue) 128 issue.id = 100 129 issue.labels = [] 130 issue.state = constants.ISSUE_OPEN 134 issue) 136 issue) 167 issue = self.mox.CreateMock(phapi_lib.Issue) 168 issue.id = id 169 issue.labels = labels 170 issue.state = constants.ISSUE_OPEN [all …]
|
D | test_push.py | 433 issue = reporter.find_issue_by_marker(BUG_ANCHOR) 434 if not issue: 436 if issue.id in old_issue_ids: 437 raise TestPushException('Failed to close issue %d' % issue.id) 438 old_issue_ids.append(issue.id) 439 reporter.modify_bug_report(issue.id, 454 issue = reporter.find_issue_by_marker(BUG_ANCHOR) 455 if not issue: 458 if old_issue_ids and issue.id in old_issue_ids: 460 'id of the old issue found is %d.' % issue.id) [all …]
|
/external/lz4/ |
D | NEWS | 46 Added : pkg-config, thanks to Zbigniew Jędrzejewski-Szmek (issue 135) 47 Makefile : lz4-test only test native binaries, as suggested by Michał Górny (issue 136) 57 fix : support ppc64le platform (issue 131) 59 fix : Makefile : minor issue 130 : header files permissions 64 fix : block-dependency command line (issue 127) 65 fix : lz4fullbench (issue 128) 68 hotfix (issue 124 & 125) 71 Added : lz4cat utility, installed on POSX systems (issue 118) 72 OS-X compatible compilation of dynamic library (issue 115) 75 Makefile : library correctly compiled with -O3 switch (issue 114) [all …]
|
/external/skia/ |
D | PRESUBMIT.py | 249 issue = input_api.change.issue 250 if issue and input_api.rietveld: 252 issue=int(issue), messages=False) 302 issue = input_api.change.issue 303 if issue and input_api.rietveld: 305 issue=int(issue), messages=True) 378 issue = cl.issue 380 if issue and rietveld_obj: 381 original_description = rietveld_obj.get_description(issue) 386 new_description += '\nGOLD_TRYBOT_URL= %s%s' % (GOLD_TRYBOT_URL, issue) [all …]
|
/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/ |
D | git-release-notes.py | 53 for issue in ISSUE.findall(message): 54 if issue not in issues: 55 append.append(':issue:`{issue}`'.format(issue=issue)) 56 issues.add(issue)
|
/external/chromium-trace/catapult/third_party/flot/ |
D | NEWS.md | 13 (reported by Josh Pigford and andig, issue #1212, pull request #1290) 17 (reported by Elite Gamer, issue #1283) 21 (reported by tommie, issue #1277, pull request #1289) 24 (reported by EGLadona and dmfalke, issue #1250, pull request #1285) 27 (reported by ngavard, issue #1240, pull request #1286) 30 (reported by tleish, issue #1265, pull request #1289) 33 (patch by Neil Katin, issue #1204, pull request #1205) 36 (reported by btccointicker and Rouillard, issue #1210) 42 (reported by jorese, issue #1228, pull request #1284) 55 (patch by Thodoris Greasidis, issue #1129, pull request #1130) [all …]
|
/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 | 198 for issue in issues: 199 if re.match(spec["crash_state"], issue["crash_state"]): 200 results.append(issue["id"])
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/docs/ |
D | contributing.rst | 22 Before writing code, file an issue 25 Use the `issue tracker <https://github.com/google/oauth2client/issues>`_ to 28 already. The ticket you file in the issue tracker will be used to hash that 49 repository. Be sure to reference the original issue in the pull request.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
D | CHANGELOG | 20 Fix proxy socks for SSL connections. Fixes issue #199. 63 Fixes issue 72. Always lowercase authorization header. 64 Fix issue 47. Redirects that become a GET should not have a body. 65 Fixes issue 19. Set Content-location on redirected HEAD requests 66 Fixes issue 139. Redirect with a GET on 302 regardless of the originating method. 67 …Fixes issue 138. Handle unicode in headers when writing and retrieving cache entries. Who says hea… 69 Set a version number. Fixes issue # 135. 74 Fixes issue 126. IPv6 under various conditions would fail. 75 Fixes issue 131. Handle socket.timeout's that occur during send.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/ |
D | CONTRIBUTING | 29 * Check to see if there's an existing issue/pull request for the 32 * If there isn't an existing issue there, please file an issue. The ideal
|
/external/ppp/pppd/plugins/radius/etc/ |
D | radiusclient.conf | 25 issue /usr/local/etc/radiusclient/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)
|
/external/google-breakpad/ |
D | README | 35 5. At http://breakpad.appspot.com you'll find your issue listed; click on it, 40 upload.py again and pass the issue number so it updates the existing issue,
|