| /external/vulkan-validation-layers/layers/generated/ |
| D | vk_layer_dispatch_table.h | 34 // ---- Core 1_0 commands 52 // ---- Core 1_1 commands 66 // ---- VK_KHR_surface extension commands 73 // ---- VK_KHR_swapchain extension commands 76 // ---- VK_KHR_display extension commands 85 // ---- VK_KHR_xlib_surface extension commands 93 // ---- VK_KHR_xcb_surface extension commands 101 // ---- VK_KHR_wayland_surface extension commands 109 // ---- VK_KHR_android_surface extension commands 114 // ---- VK_KHR_win32_surface extension commands [all …]
|
| /external/deqp/external/vulkancts/modules/vulkan/binding_model/ |
| D | vktBindingDescriptorCopyTests.cpp | 591 DescriptorCopyTestInstance(Context &context, DescriptorCommandsSp commands); 602 …DescriptorCopyTestCase(tcu::TestContext &context, const char *name, DescriptorCommandsSp commands); 2515 …riptorCopyTestInstance::DescriptorCopyTestInstance(Context &context, DescriptorCommandsSp commands) in DescriptorCopyTestInstance() argument 2517 , m_commands(commands) in DescriptorCopyTestInstance() 2526 DescriptorCommandsSp commands) in DescriptorCopyTestCase() argument 2528 , m_commands(commands) in DescriptorCopyTestCase() 2610 DescriptorCommandsSp commands(new DescriptorCommands(pipelineType, useUpdateAfterBind)); in addDescriptorCopyTests() local 2611 commands->addDescriptor(DescriptorSp(new T(1u, 0u, 1u, 3u)), 0u); in addDescriptorCopyTests() 2612 commands->addDescriptor(DescriptorSp(new T(1u, 0u, 1u, 2u)), 0u); in addDescriptorCopyTests() 2614 commands->copyDescriptor(0u, 0u, // from in addDescriptorCopyTests() [all …]
|
| /external/fonttools/Lib/fontTools/cffLib/ |
| D | specializer.py | 40 """Takes a T2CharString program list and returns list of commands. 67 commands = [] 117 commands.append(("", [width])) 121 commands.append(("", stack)) 122 commands.append((token, [])) 123 commands.append(("", [next(it)])) 125 commands.append((token, stack)) 128 commands.append(("", stack)) 129 return commands 143 def commandsToProgram(commands): argument [all …]
|
| /external/ltp/testcases/ |
| D | Android.bp | 40 src: "commands/ld/datafiles/d1.c", 49 src: "commands/unzip/datafiles/dir.out", 58 src: "commands/ld/datafiles/f1.c", 103 src: "commands/ar/datafiles/file1.in", 112 src: "commands/ar/datafiles/file10.in", 121 src: "commands/ar/datafiles/file2.in", 130 src: "commands/ar/datafiles/file3.in", 139 src: "commands/ar/datafiles/file4.in", 148 src: "commands/file/datafiles/in.ar", 157 src: "commands/file/datafiles/in.bash", [all …]
|
| /external/python/cpython3/Doc/distutils/ |
| D | extending.rst | 10 commands or replacements for existing commands. New commands may be written to 12 replacements for existing commands may be made to modify details of how the 16 want to modify existing commands; many simply add a few file extensions that 21 :class:`distutils.cmd.Command` class. New commands may directly inherit from 23 indirectly, directly subclassing the command they are replacing. Commands are 26 .. % \section{Extending existing commands} 29 .. % \section{Writing new commands} 30 .. % \label{new-commands} 34 Integrating new commands 62 commands to be added which can support existing :file:`setup.py` scripts without [all …]
|
| /external/python/setuptools/docs/deprecated/distutils/ |
| D | extending.rst | 10 commands or replacements for existing commands. New commands may be written to 12 replacements for existing commands may be made to modify details of how the 16 want to modify existing commands; many simply add a few file extensions that 21 :class:`distutils.cmd.Command` class. New commands may directly inherit from 23 indirectly, directly subclassing the command they are replacing. Commands are 26 .. % \section{Extending existing commands} 29 .. % \section{Writing new commands} 30 .. % \label{new-commands} 34 Integrating new commands 62 commands to be added which can support existing :file:`setup.py` scripts without [all …]
|
| /external/python/cpython2/Doc/distutils/ |
| D | extending.rst | 8 commands or replacements for existing commands. New commands may be written to 10 replacements for existing commands may be made to modify details of how the 14 want to modify existing commands; many simply add a few file extensions that 19 :class:`distutils.cmd.Command` class. New commands may directly inherit from 21 indirectly, directly subclassing the command they are replacing. Commands are 24 .. % \section{Extending existing commands} 27 .. % \section{Writing new commands} 28 .. % \label{new-commands} 32 Integrating new commands 60 commands to be added which can support existing :file:`setup.py` scripts without [all …]
|
| /external/pigweed/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci/ |
| D | sequential_command_runner.h | 27 // A SequentialCommandRunner can be used to chain HCI commands such that 28 // commands in the sequence are sent to the controller only after previous 29 // commands have completed successfully. 33 // error status is reported back to the caller. Already sent commands will 36 // Commands are always sent in the order that they are queued. If any command 37 // fails, unsent commands are abandoned. 40 // of QueueCommand. If |wait| is true, all commands queued before that command 66 // If |wait| is true, then all previously queued commands must complete 90 // Runs all the queued commands. This method will return before queued 91 // commands have been run. |status_callback| is called with the status of the [all …]
|
| /external/mesa3d/src/gfxstream/scripts/print_gfx_logs/ |
| D | print_gfx_logs_test.py | 38 def create_command_data(commands: List[Command]) -> bytearray: 40 for command in commands: 50 data = create_command_data(stream.commands) 71 capture_id=8261, commands=[command], error_message=None) 85 self.assertEqual(len(streams[0].commands), 1) 86 self.assertEqual(streams[0].commands[0].opcode, command.opcode) 87 self.assertEqual(streams[0].commands[0].original_size, command.original_size) 88 self.assertEqual(len(streams[0].commands[0].data), len(command.data)) 89 self.assertEqual(streams[0].commands[0].data, command.data) 92 commands = [create_vk_destroy_instance_command( [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | commands.rst | 2 :mod:`commands` --- Utilities for running commands 5 .. module:: commands 7 :synopsis: Utility functions for running external commands. 11 The :mod:`commands` module has been removed in Python 3. Use the 17 The :mod:`commands` module contains wrapper functions for :func:`os.popen` which 23 preferable to using the :mod:`commands` module. 32 The :mod:`commands` module defines the following functions: 63 >>> import commands 64 >>> commands.getstatusoutput('ls /bin/ls') 66 >>> commands.getstatusoutput('cat /bin/junk') [all …]
|
| /external/fonttools/Tests/pens/ |
| D | utils.py | 28 """Base class for pens that record the commands they are called with.""" 31 self.commands = [] 34 """Return the pen commands as a string of python code.""" 35 return _repr_pen_commands(self.commands) 38 self.commands.append(("addComponent", (glyphName, transformation), kwargs)) 42 """A SegmentPen that records the commands it's called with.""" 45 self.commands.append(("moveTo", (pt,), {})) 48 self.commands.append(("lineTo", (pt,), {})) 51 self.commands.append(("curveTo", points, {})) 54 self.commands.append(("qCurveTo", points, {})) [all …]
|
| /external/deqp/external/vulkancts/modules/vulkan/draw/ |
| D | vktDrawScissorTests.cpp | 282 vector<TestCommandSp> commands; member 294 for (size_t commandIdx = 0; commandIdx < params.commands.size(); commandIdx++) in countScissors() 295 numScissors = de::max(numScissors, params.commands[commandIdx]->getMaxScissor()); in countScissors() 352 for (size_t commandIdx = 0; commandIdx < m_params.commands.size(); commandIdx++) in ScissorTestCase() 353 if (m_params.commands[commandIdx]->getMaxScissor() > 1) in ScissorTestCase() 490 for (size_t commandIdx = 0; commandIdx < m_params.commands.size(); commandIdx++) in iterate() 493 m_params.commands[commandIdx]->getVertices((uint32_t)vertices.size()); in iterate() 577 // Queue commands and read results. in iterate() 672 for (size_t commandIdx = 0; commandIdx < m_params.commands.size(); commandIdx++) in iterate() 674 scissors = m_params.commands[commandIdx]->updateScissors(scissors); in iterate() [all …]
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/ |
| D | Player.Commands.Builder.html | 5 <title>Player.Commands.Builder (ExoPlayer library)</title> 22 parent.document.title="Player.Commands.Builder (ExoPlayer library)"; 117 <h2 title="Class Player.Commands.Builder" class="title">Class Player.Commands.Builder</h2> 124 <li>com.google.android.exoplayer2.Player.Commands.Builder</li> 133 <dd><a href="Player.Commands.html" title="class in com.google.android.exoplayer2">Player.Commands</… 136 <pre>public static final class <span class="typeNameLabel">Player.Commands.Builder</span> 138 …ock">A builder for <a href="Player.Commands.html" title="class in com.google.android.exoplayer2"><… 183 …="colFirst"><code><a href="Player.Commands.Builder.html" title="class in com.google.android.exopla… 190 …="colFirst"><code><a href="Player.Commands.Builder.html" title="class in com.google.android.exopla… 191 …l</a></span>​(@com.google.android.exoplayer2.Player.Command int... commands)</code></th> [all …]
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/ |
| D | Player.Commands.Builder.html | 5 <title>Player.Commands.Builder (ExoPlayer library)</title> 22 parent.document.title="Player.Commands.Builder (ExoPlayer library)"; 117 <h2 title="Class Player.Commands.Builder" class="title">Class Player.Commands.Builder</h2> 124 <li>com.google.android.exoplayer2.Player.Commands.Builder</li> 133 <dd><a href="Player.Commands.html" title="class in com.google.android.exoplayer2">Player.Commands</… 136 <pre>public static final class <span class="typeNameLabel">Player.Commands.Builder</span> 138 …ock">A builder for <a href="Player.Commands.html" title="class in com.google.android.exoplayer2"><… 183 …="colFirst"><code><a href="Player.Commands.Builder.html" title="class in com.google.android.exopla… 190 …="colFirst"><code><a href="Player.Commands.Builder.html" title="class in com.google.android.exopla… 191 …l</a></span>​(@com.google.android.exoplayer2.Player.Command int... commands)</code></th> [all …]
|
| /external/lzma/DOC/ |
| D | 7zip.hhp | 24 cmdline\commands\add.htm 25 cmdline\commands\bench.htm 26 cmdline\commands\delete.htm 27 cmdline\commands\extract.htm 28 cmdline\commands\extract_full.htm 29 cmdline\commands\update.htm 30 cmdline\commands\hash.htm 31 cmdline\commands\index.htm 32 cmdline\commands\list.htm 33 cmdline\commands\rename.htm [all …]
|
| /external/brotli/c/enc/ |
| D | compress_fragment_two_pass.c | 119 uint32_t insertlen, uint32_t** commands) { in EmitInsertLen() argument 121 **commands = insertlen; in EmitInsertLen() 128 **commands = inscode | (extra << 8); in EmitInsertLen() 134 **commands = code | (extra << 8); in EmitInsertLen() 137 **commands = 21 | (extra << 8); in EmitInsertLen() 140 **commands = 22 | (extra << 8); in EmitInsertLen() 143 **commands = 23 | (extra << 8); in EmitInsertLen() 145 ++(*commands); in EmitInsertLen() 148 static BROTLI_INLINE void EmitCopyLen(size_t copylen, uint32_t** commands) { in EmitCopyLen() argument 150 **commands = (uint32_t)(copylen + 38); in EmitCopyLen() [all …]
|
| /external/kernel-headers/original/uapi/linux/ |
| D | cxl_mem.h | 14 * Not all of the commands that the driver supports are available for use by 16 * to determine the live set of commands. Alternatively, it can issue the 143 * struct cxl_mem_query_commands - Query supported commands. 146 * is 0, driver will return the number of total supported commands. 148 * @commands: Output array of supported commands. This array must be allocated 151 * Allow userspace to query the available commands supported by both the driver, 152 * and the hardware. Commands that aren't supported by either the driver, or the 157 * - { .n_commands = 0 } // Get number of supported commands 158 * - { .n_commands = 15, .commands = buf } // Return first 15 (or less) 159 * supported commands [all …]
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
| D | AOptimizedMultipleCommand.java | 18 private final PCommand[] commands; field in AOptimizedMultipleCommand 22 commands = new PCommand[originalChildCommands.size()]; in AOptimizedMultipleCommand() 23 originalChildCommands.toArray(commands); in AOptimizedMultipleCommand() 24 for (int i = 0; i < commands.length; i++) { in AOptimizedMultipleCommand() 25 commands[i].parent(this); // set parent. in AOptimizedMultipleCommand() 45 for (int i = 0; i < commands.length; i++) { in replaceChild() 46 if (commands[i] == oldChild) { in replaceChild() 47 commands[i] = (PCommand) newChild; in replaceChild() 58 for (int i = 0; i < commands.length; i++) { in apply() 59 commands[i].apply(sw); in apply()
|
| /external/python/oauth2client/ |
| D | tox.ini | 21 commands = nosetests --ignore-files=test_appengine\.py --ignore-files=test__appengine_ndb\.py {posa… key 25 commands = key 56 commands = key 70 commands = key 86 commands = key 87 {[coverbase]commands} 94 commands = key 95 {[coverbase]commands} 112 commands = {toxinidir}/scripts/build_docs.sh key 118 commands = key [all …]
|
| /external/cronet/third_party/brotli/enc/ |
| D | compress_fragment_two_pass.c | 118 uint32_t insertlen, uint32_t** commands) { in EmitInsertLen() argument 120 **commands = insertlen; in EmitInsertLen() 127 **commands = inscode | (extra << 8); in EmitInsertLen() 133 **commands = code | (extra << 8); in EmitInsertLen() 136 **commands = 21 | (extra << 8); in EmitInsertLen() 139 **commands = 22 | (extra << 8); in EmitInsertLen() 142 **commands = 23 | (extra << 8); in EmitInsertLen() 144 ++(*commands); in EmitInsertLen() 147 static BROTLI_INLINE void EmitCopyLen(size_t copylen, uint32_t** commands) { in EmitCopyLen() argument 149 **commands = (uint32_t)(copylen + 38); in EmitCopyLen() [all …]
|
| /external/ltp/doc/man1/ |
| D | ltp-pan.1 | 41 commands from a command-file. By default ltp-pan runs one command, choosing it at 42 random from the whole set of commands available to it. The ltp-pan's name in the 45 signaled it will kill any active commands and, again, clean up any orphans. 51 Pan will not terminate until all the active commands and everything in their 56 file and begins scheduling commands. After a command is started ltp-pan puts an 85 A file containing the tagnames, pids, and commands being run. If this is 92 The file to which all failed test commands will be saved. You can use it later with \fI-f\fP optio… 98 Pan will exit non-zero if any of its commands exited non-zero. By default 102 The file that has a collection of commands that ltp-pan will execute. 109 commands (tags) that are run. This log file may not be shared with other Zoo [all …]
|
| /external/python/cpython2/Lib/distutils/ |
| D | dist.py | 37 to the Distutils commands specified on the command line. 50 # supplied to the setup script prior to any actual commands. 54 # don't want to pollute the commands with too many options that they 68 Common commands: (see '--help-commands' for more) 74 # options that are not propagated to the commands 76 ('help-commands', None, 77 "list all available commands"), 162 # 'command_packages' is a list of packages in which commands 184 # have been created by any dist commands run so far. This is 194 # These options are really the business of various commands, rather [all …]
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
| D | jsilver.sablecc | 175 = commands 176 {->commands.command} 179 commands {->command} 236 commands 242 commands.command)} 245 commands 251 commands.command)} 254 commands 261 commands.command)} 264 commands [all …]
|
| /external/skia/infra/bots/task_drivers/codesize/ |
| D | codesize_test.go | 141 // "ls" and any other commands directly executed by the task driver produce no mock outputs. 194 // Filter out all Git commands. 195 var commands []*exec.Command 196 for _, c := range commandCollector.Commands() { 198 commands = append(commands, c) 202 // We expect the following sequence of commands: "cp", "strip", "ls", "bloaty", 204 require.Len(t, commands, 8) 207 assertCommandEqual(t, commands[0], "cp", "build/dm", "build/dm_stripped") 208 assertCommandEqual(t, commands[1], "/path/to/strip", "build/dm_stripped") 210 assertCommandEqual(t, commands[2], "ls", "-al", "build") [all …]
|
| /external/python/setuptools/setuptools/_distutils/ |
| D | dist.py | 48 to the Distutils commands specified on the command line. 60 # supplied to the setup script prior to any actual commands. 64 # don't want to pollute the commands with too many options that they 79 Common commands: (see '--help-commands' for more) 85 # options that are not propagated to the commands 87 ('help-commands', None, 88 "list all available commands"), 171 # 'command_packages' is a list of packages in which commands 193 # have been created by any dist commands run so far. This is 203 # These options are really the business of various commands, rather [all …]
|