/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 30 # 'sub_commands' formalizes the notion of a "family" of commands, 31 # eg. "install" as the parent with sub-commands "install_lib", 32 # "install_headers", etc. The parent of a family of commands 68 # commands fall back on the Distribution's behaviour. None means 80 # Some commands define a 'self.force' option to ignore file 82 # 'self.force' exists for all commands. So define it here 128 commands, by the setup script, by config files, or by the 141 assignments from the command-line or from other commands have been 170 'initialize_options()', customized by other commands, the setup 272 # -- Convenience methods for commands ----------------------------- [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 30 # 'sub_commands' formalizes the notion of a "family" of commands, 31 # eg. "install" as the parent with sub-commands "install_lib", 32 # "install_headers", etc. The parent of a family of commands 68 # commands fall back on the Distribution's behaviour. None means 80 # Some commands define a 'self.force' option to ignore file 82 # 'self.force' exists for all commands. So define it here 128 commands, by the setup script, by config files, or by the 141 assignments from the command-line or from other commands have been 170 'initialize_options()', customized by other commands, the setup 272 # -- Convenience methods for commands ----------------------------- [all...] |
/bionic/libc/tools/ |
bionic_utils.py | 3 import sys, os, commands, string namespace
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyGetAppFrameRateEvent.java | 17 package com.android.commands.monkey;
|
MonkeyGetFrameRateEvent.java | 17 package com.android.commands.monkey;
|
MonkeyMotionEvent.java | 17 package com.android.commands.monkey;
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_manager_commands.js | 37 * Utility for commands. 252 var commands = fileManager.document.querySelectorAll('command'); 253 for (var i = 0; i < commands.length; i++) { 254 cr.ui.Command.decorate(commands[i]); 255 this.commands_[commands[i].id] = commands[i]; 267 * Updates the availability of all commands. 283 // Do not handle commands, when a dialog is shown. 343 * Commands.
|
/external/chromium_org/chrome/test/chromedriver/server/ |
http_handler.cc | 85 CommandMapping commands[] = { local 506 // Custom Chrome commands: 525 new CommandMap(commands, commands + arraysize(commands)));
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/ |
vmwgfx_drm.h | 261 * @commands: User-space address of a command buffer cast to an uint64_t. 279 uint64_t commands; member in struct:drm_vmw_execbuf_arg 566 * DRM_VMW_FENCE_FLAG_EXEC: All commands ahead of the fence in the command 570 * commands
|
/external/chromium_org/tools/gn/ |
command_args.cc | 9 #include "tools/gn/commands.h" 16 namespace commands { namespace 162 } // namespace commands
|
/external/libvorbis/doc/ |
Vorbis_I_spec.tex | 34 % unlike the built-in "verbatim", allows embedding TeX commands, as 53 % Custom commands
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmwgfx_drm.h | 261 * @commands: User-space address of a command buffer cast to an uint64_t. 279 uint64_t commands; member in struct:drm_vmw_execbuf_arg 566 * DRM_VMW_FENCE_FLAG_EXEC: All commands ahead of the fence in the command 570 * commands
|
/frameworks/base/cmds/wm/src/com/android/commands/wm/ |
Wm.java | 19 package com.android.commands.wm;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gdb.py | 94 Support injecting commands after the breakpoint is reached 98 cmds_after_breakpoint: if provided, a list of strings: gdb commands 113 # Generate a list of commands in gdb's language: 114 commands = ['set breakpoint pending yes', 118 commands += cmds_after_breakpoint 120 commands += ['backtrace'] 122 # print commands 124 # Use "commands" to generate the arguments with which to invoke "gdb": 126 args += ['--eval-command=%s' % cmd for cmd in commands] 637 @unittest.skipUnless(HAS_PYUP_PYDOWN, "test requires py-up/py-down commands") [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gdb.py | 94 Support injecting commands after the breakpoint is reached 98 cmds_after_breakpoint: if provided, a list of strings: gdb commands 113 # Generate a list of commands in gdb's language: 114 commands = ['set breakpoint pending yes', 118 commands += cmds_after_breakpoint 120 commands += ['backtrace'] 122 # print commands 124 # Use "commands" to generate the arguments with which to invoke "gdb": 126 args += ['--eval-command=%s' % cmd for cmd in commands] 637 @unittest.skipUnless(HAS_PYUP_PYDOWN, "test requires py-up/py-down commands") [all...] |
/system/netd/ |
BandwidthController.h | 139 int runCommands(int numCommands, const char *commands[], RunCmdErrHandling cmdErrHandling);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
android.py | 192 # The AndroidCommands class encapsulates commands to communicate with an attached device. 259 # We limit the length to avoid outputting too verbose commands, such as "adb logcat". 278 assert AndroidCommands._adb_command_path_options, 'No commands paths have been set to look for the "adb" command.' 361 commands = AndroidCommands(executive, device_serial, self._debug_logging) 362 if self._battery_level_for_device(commands) < AndroidDevices.MINIMUM_BATTERY_PERCENTAGE: 364 % (commands.get_serial(), AndroidDevices.MINIMUM_BATTERY_PERCENTAGE)) 367 if not self._is_device_screen_on(commands): 368 _log.warning('Device with serial "%s" skipped because the screen must be on.' % commands.get_serial()) 371 self._usable_devices.append(commands) 389 def _battery_level_for_device(self, commands) [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorCtsHelper.java | 205 String commands[] = new String[] { local 224 for(String command : commands) {
|
/external/chromium_org/chrome/browser/resources/safe_browsing/ |
malware_block_v2.js | 87 // All the links are handled by javascript sending commands back to the C++
|
/external/v8/tools/ |
presubmit.py | 242 commands = join([command + [file] for file in files]) 246 results = pool.map_async(CppLintWorker, commands).get(999999)
|
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
main.js | 354 * Returns the nodes (non recursive) to use for the open commands. 370 * and the nested bookmarks for use with the open commands. 384 * commands. 584 // Update canExecute for the commands when the list is the active element. 590 // Update canExecute for the commands when the tree is the active element. 636 * Update the canExecute state of the commands when the selection changes. [all...] |
/system/core/init/ |
init_parser.c | 576 list_init(&act->commands); 582 list_add_tail(&act->commands, &cmd->clist); 643 list_init(&svc->onrestart.commands); 752 list_add_tail(&svc->onrestart.commands, &cmd->clist); 834 list_init(&act->commands); 868 list_add_tail(&act->commands, &cmd->clist);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/ |
background.js | 55 chrome.commands.onCommand.addListener(function(command) {
|
/external/chromium_org/v8/tools/ |
presubmit.py | 259 commands = join([command + [file] for file in files]) 263 results = pool.map_async(CppLintWorker, commands).get(999999)
|
/external/mdnsresponder/mDNSShared/ |
dnsextd_parser.y | 135 commands: label 137 commands command SEMICOLON
|