/external/perfetto/src/tracing/core/ |
D | patch_list.h | 35 class Patch { 38 Patch(ChunkID c, uint16_t o) : chunk_id(c), offset(o) {} in Patch() function 39 Patch(const Patch&) = default; // For tests. 52 bool operator==(const Patch& o) const { 58 Patch& operator=(const Patch&) = delete; 67 using ListType = std::forward_list<Patch>; 73 Patch* emplace_back(ChunkID chunk_id, uint16_t offset) { in emplace_back() 75 offset >= last_->offset + sizeof(Patch::PatchContent)); in emplace_back() 87 const Patch& front() const { in front() 92 const Patch& back() const { in back()
|
D | patch_list_unittest.cc | 28 std::ostream& operator<<(std::ostream& o, const Patch& p); 29 std::ostream& operator<<(std::ostream& o, const Patch& p) { in operator <<() 44 ASSERT_THAT(pl, ElementsAre(Patch(ChunkID(5), 50))); in TEST() 47 ASSERT_THAT(pl, ElementsAre(Patch(ChunkID(5), 50), Patch(ChunkID(6), 60))); in TEST() 49 ASSERT_EQ(pl.front(), Patch(ChunkID(5), 50)); in TEST() 50 ASSERT_EQ(pl.back(), Patch(ChunkID(6), 60)); in TEST() 53 ASSERT_EQ(pl.front(), Patch(ChunkID(6), 60)); in TEST() 57 ASSERT_EQ(pl.front(), Patch(ChunkID(7), 70)); in TEST() 58 ASSERT_EQ(pl.back(), Patch(ChunkID(7), 70)); in TEST() 67 ASSERT_THAT(pl, ElementsAre(Patch(ChunkID(8), 80), Patch(ChunkID(9), 90))); in TEST()
|
D | commit_data_request.cc | 221 CommitDataRequest::ChunkToPatch::Patch::Patch() = default; 222 CommitDataRequest::ChunkToPatch::Patch::~Patch() = default; 223 CommitDataRequest::ChunkToPatch::Patch::Patch( 224 const CommitDataRequest::ChunkToPatch::Patch&) = default; 225 CommitDataRequest::ChunkToPatch::Patch& CommitDataRequest::ChunkToPatch::Patch:: 226 operator=(const CommitDataRequest::ChunkToPatch::Patch&) = default; 227 CommitDataRequest::ChunkToPatch::Patch::Patch( 228 CommitDataRequest::ChunkToPatch::Patch&&) noexcept = default; 229 CommitDataRequest::ChunkToPatch::Patch& CommitDataRequest::ChunkToPatch::Patch:: 230 operator=(CommitDataRequest::ChunkToPatch::Patch&&) = default; [all …]
|
/external/perfetto/include/perfetto/tracing/core/ |
D | commit_data_request.h | 90 class PERFETTO_EXPORT Patch { 92 Patch(); 93 ~Patch(); 94 Patch(Patch&&) noexcept; 95 Patch& operator=(Patch&&); 96 Patch(const Patch&); 97 Patch& operator=(const Patch&); 98 bool operator==(const Patch&) const; 99 bool operator!=(const Patch& other) const { return !(*this == other); } 150 const std::vector<Patch>& patches() const { return patches_; } in patches() [all …]
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTFixedPoint.cpp | 114 new_mesh->Patch.nType = mesh->Patch.nType; in CreateFixedObjectMesh() 115 new_mesh->Patch.nNumPatches = mesh->Patch.nNumPatches; in CreateFixedObjectMesh() 116 new_mesh->Patch.nNumVertices = mesh->Patch.nNumVertices; in CreateFixedObjectMesh() 117 new_mesh->Patch.nNumSubdivisions = mesh->Patch.nNumSubdivisions; in CreateFixedObjectMesh() 118 new_mesh->Patch.pControlPoints = mesh->Patch.pControlPoints; in CreateFixedObjectMesh() 119 new_mesh->Patch.pUVs = mesh->Patch.pUVs; in CreateFixedObjectMesh()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0rc1.rst | 44 Better testing and documentation of binary operators. Patch by Martin 73 Handle fractional time in cookie expiry. Patch by ssh. 83 the Linux Standard Base, which do not include some EPOLL macros. Patch by 93 Fix timezones in email.utils.formatdate. Patch from Dmitry Shachnev. 102 imaplib raises TypeError if authenticator tries to abort. Patch from Craig 112 Fix ctypes.BigEndianStructure, swap correctly bytes. Patch written by 122 Document how to close the TCPServer listening socket. Patch from Martin 141 Add PATCH to wsgiref.validator. Patch from Luca Sbardella. 159 Allow Idle to edit and run files with astral chars in name. Patch by Mohd 172 entries from [Editor Window]. Patch by Mark Roseman. [all …]
|
D | 3.6.0b2.rst | 25 Added sanity checks and tests for PyUnicode_CopyCharacters(). Patch by Xiang 35 The type of long range iterator is now registered as Iterator. Patch by Oren 46 deprecated. Patch by Oren Milman. 55 The constructor of range_iterator now checks that step is not 0. Patch by 141 Fix incorrect type in complex(1.0, {2:3}) error message. Patch by Soumya 219 (Not yet inserted in split-table). Patch by Xiang Zhang. 238 Fixed bytes path support in os.scandir() on Windows. Patch by Eryk Sun. 313 gzip now supports pathlib. Patch by Ethan Furman. 383 POSIX localtime_r, but available on all platforms. Patch by Ed Schouten. 415 invalid string-like object as a name. Patch by Xiang Zhang. [all …]
|
D | 3.6.2rc1.rst | 68 code struct and sizes of objects which it references. Patch by Dong-hee Na. 145 no longer ignored. Patch by Mircea Cosbuc. 164 Patch by Nathaniel Smith. 193 wrapped with partialmethod. Patch by Dong-hee Na. 203 package is only shipped with bytecodes. Patch by Alexandru Ardelean. 212 Fixed comparison check for ipaddress.ip_interface objects. Patch by Sanjay 223 with misplaced inline modifier. Patch by Roy Williams. 284 implementation. Patch by Michaël Sghaïer. 293 Closing transport during handshake process leaks open socket. Patch by 303 Fix waiter cancellation in asyncio.Lock. Patch by Mathieu Sornay. [all …]
|
D | 3.5.2rc1.rst | 17 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye. 44 Fixed bytearray.remove() for values greater than 127. Patch by Joe Jevnik. 438 responses that don't have a body. Patch by Susumu Koshiba. 460 entropy pool is not initialized yet. Patch written by Colm Buckley. 491 Add ``__all__`` to :mod:`string`. Patch by Emanuel Barry. 541 with EACCESS. The function now falls back to fcntl(). Patch written by 583 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by 594 stdout is not redirected. Patch by Akira Li. 603 mock_open 'files' no longer error on readline at end of file. Patch from 651 weakref.ref() no longer silently ignores keyword arguments. Patch by Georg [all …]
|
D | 3.6.3rc1.rst | 28 argument has a bad keys() method. Patch by Oren Milman. 38 exception with a bad ``__module__`` attribute. Patch by Oren Milman. 48 warnings.defaultaction. Patch by Oren Milman. 58 not a dictionary. Patch by Oren Milman. 100 Patch by Oren Milman. 110 the encoder doesn't return a bytes object. Patch by Oren Milman. 120 is invalid. Patch by Oren Milman. 130 syntax. Patch by Sanyam Khurana. 223 SyntaxError, not to subclasses. Patch by Martijn Pieters. 242 Python 2 statement. Patch by Sanyam Khurana. [all …]
|
D | 3.5.3rc1.rst | 75 astral characters. Patch by Xiang Zhang. 113 Added sanity checks and tests for PyUnicode_CopyCharacters(). Patch by Xiang 123 The type of long range iterator is now registered as Iterator. Patch by Oren 133 The constructor of range_iterator now checks that step is not 0. Patch by 209 Fix incorrect type in error message from ``complex(1.0, {2:3})``. Patch by 259 dictitems_contains no longer swallows compare errors. (Patch by Xiang Zhang) 309 types returned from ``Py_create_mod``. Patch by Xiang Zhang. 342 Patch written by Xiang Zhang. 382 Patch by Xiang Zhang. 391 Add integer overflow check in bytearray.extend(). Patch by Xiang Zhang. [all …]
|
D | 3.7.0a2.rst | 69 `zlib.decompress()`. Patch by Oren Milman. 79 `unicodedata.normalize()`. Patch by Oren Milman. 89 due to a metaclass with a bad ``__prepare__()`` method. Patch by Oren 109 global. Patch by Oren Milman. 128 a bad `encoder()` argument. Patch by Oren Milman. 139 such a module. Patch by Oren Milman. 149 a bad ``__abs__()`` method. Patch by Oren Milman. 159 special method lookups. Patch by Stefan Behnel. 212 string. Patch by Oren Milman. 222 a bad ``__dict__``. Patch by Oren Milman. [all …]
|
D | 3.5.0a1.rst | 59 platforms other than Windows. Patch written by Campbell Barton. 109 access if available. Patch written by Vitor de Lima and Gustavo Temple. 311 Fix inspect.getsource() to support decorated functions. Patch by Claudiu 402 be weakref'ed. Patch by Wei Wu. 422 Apply Argument Clinic to bytes and bytearray. Patch by Tal Einat. 536 has a reference count of 1. Patch by Nikolaus Rath. 546 environment variable. Patch by Arfrever. 583 Patch by Josh Rosenberg. 611 Fix PyUnicode_DATA() alignment under m68k. Patch by Andreas Schwab. 630 Patch by Serhiy Storchaka. [all …]
|
D | 3.6.4rc1.rst | 90 Patch by Zane Bitter. 101 expected. Previously, the call was incorrectly non-blocking. Patch by Pablo 142 `unicodedata.normalize()`. Patch by Oren Milman. 152 due to a metaclass with a bad ``__prepare__()`` method. Patch by Oren 163 global. Patch by Oren Milman. 173 a bad `encoder()` argument. Patch by Oren Milman. 184 such a module. Patch by Oren Milman. 195 ``_fields_``. Patch by Oren Milman. 205 a bad ``__abs__()`` method. Patch by Oren Milman. 215 string. Patch by Oren Milman. [all …]
|
D | 3.7.0a1.rst | 91 ``_fields_``. Patch by Oren Milman. 101 argument has a bad keys() method. Patch by Oren Milman. 111 exception with a bad ``__module__`` attribute. Patch by Oren Milman. 121 warnings.defaultaction. Patch by Oren Milman. 155 not a dictionary. Patch by Oren Milman. 229 Patch by Oren Milman. 239 the encoder doesn't return a bytes object. Patch by Oren Milman. 249 is invalid. Patch by Oren Milman. 259 syntax. Patch by Sanyam Khurana. 362 SyntaxError, not to subclasses. Patch by Martijn Pieters. [all …]
|
D | 3.5.4rc1.rst | 133 that they may contain. Patch by Petr Viktorin, Serhiy Storchaka, and Nick 144 Patch by Martijn Pieters. 154 subclasses and for inputs having a __complex__ method. Patch by Serhiy 203 no longer ignored. Patch by Mircea Cosbuc. 213 functions. Patch by Aaron Gallagher. 242 Fix segfault in readline when using readline's history-size option. Patch 324 package is only shipped with bytecodes. Patch by Alexandru Ardelean. 344 wrapped with partialmethod. Patch by Dong-hee Na. 353 Fixed comparison check for ipaddress.ip_interface objects. Patch by Sanjay 403 implementation. Patch by Michaël Sghaïer. [all …]
|
D | 3.6.0a1.rst | 7 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye. 109 positional argument, no keyword): avoid copying the tuple. Patch written by 178 Patch written by Josh Snider. 320 PendingDeprecationWarning to DeprecationWarning. Patch by Anish Shah. 731 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch 776 Patch from Mark Dickinson. 787 time. Given x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith. 854 with EACCESS. The function now falls back to fcntl(). Patch written by 936 well as for extracting data. Patch by Thomas Kluyver. 945 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | spv.450.tesc.out | 56 Decorate 32(patchOut) Patch 58 MemberDecorate 34(TheBlock) 0 Patch 59 MemberDecorate 34(TheBlock) 1 Patch 60 MemberDecorate 34(TheBlock) 2 Patch 63 MemberDecorate 39(SingleBlock) 0 Patch 64 MemberDecorate 39(SingleBlock) 1 Patch 65 MemberDecorate 39(SingleBlock) 2 Patch 68 MemberDecorate 42(bn) 0 Patch 70 MemberDecorate 42(bn) 1 Patch 72 MemberDecorate 42(bn) 2 Patch
|
/external/python/mock/ |
D | NEWS | 5 methods to unittest.mock. Patch written by Amit Saha. 8 original values after patching. Patch contributed by Sean McCully. 11 boolean result instead of raising an exception. Patch by A Kaptur. 20 Patch from Nicola Palumbo and Laurent De Buyst. 23 was a regression vs Python 3.4. Patch from Ignacio Rossi 26 like configure_mock(). Patch by Kasia Jachim. 29 Patch by Håkan Lövdahl. 31 - Issue #23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl. 55 create_autospec now works. Patch by Kushal Das. 58 create_autospec now works. Patch by Kushal Das. [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | NEWS.txt | 12 Patch by Roger Serwy, updated by Bayard Randel. 33 of warnings was emitted. Patch by Serhiy Storchaka. 89 Patch by Mark Roseman. 97 list. Patch by Mark Roseman. 125 now work on Mac Aqua. Patch by Mark Roseman. 128 Patch by Mark Roseman. 131 For Mac OSX, make them a 'sheet'. Patch by Mark Roseman. 167 Patch by Mohd Sanad Zaki Rizvi. 172 and remove 'fontxxx' entries from [Editor Window]. Patch by Mark Roseman. 177 - Issue #13884: Idle menus. Remove tearoff lines. Patch by Roger Serwy. [all …]
|
/external/clang/test/CodeGenCXX/ |
D | pr12104.h | 1 template <int dimm> struct Patch { struct 5 const unsigned int Patch<dim>::no_neighbor; argument 8 f(Patch<1>::no_neighbor); in g()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.4rc1.rst | 204 passed to the interpreter. Patch by Hieu Nguyen. 214 (already working as unicode strings). Patch by Serhiy Storchaka. 242 fix segfault on "del sys.modules['__main__']". Patch by Victor Stinner. 372 Patch by Serhiy Storchaka. 381 Fix error handling bug in the utf-16 decoder. Patch by Serhiy Storchaka. 400 zipimport.c doesn't check return value of fseek(). Patch by Felipe Cruz. 419 proper failure return value (1). Patch contributed by Jeff Knupp. 480 the default behavior in 3.0 instead of 2.7. Patch by Sven Marnach. 567 Fix potential reference leaks in bytearray.extend(). Patch by Suman Saha. 627 "atomic" for many purposes. Patch by Filip Gruszczyński. [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 122 Patch by Kevin Walzer. 203 Coverage is 100%. Patch by Cheryl Sabella. 251 as when event handling is driven by user code. Patch based on 258 Patch mostly by Cheryl Sabella. 262 Patch by Serhiy Storchake and Terry Jan Reedy. 268 Patch by Terry Jan Reedy. 272 Patch by Zane Bitter. 282 Patch by Terry Jan Reedy 300 Patch by Cheryl Sabella. 307 This affects all dialogs. Patch by Serhiy Storchaka. [all …]
|
D | NEWS2x.txt | 12 accessed Patch 5783 Guilherme Polo 16 Patch 1529142 Weeble. 75 '/' char on Windows. issue2061 Patch by Tal Einat. 79 were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat. 81 - ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat 88 - Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat. 91 of tabs. Patch 1612746 Tal Einat. 93 - Add confirmation dialog before printing. Patch 1717170 Tal Einat. 95 - Show paste position if > 80 col. Patch 1659326 Tal Einat. 97 - Update cursor color without restarting. Patch 1725576 Tal Einat. [all …]
|
/external/perfetto/ui/src/controller/ |
D | globals.ts | 15 import {Patch, produce} from 'immer'; 76 const patches: Patch[] = []; 117 applyAction(action: DeferredAction): Patch[] { 119 const patches: Patch[] = [];
|