/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.core.commands_3.6.0.I20100512-1500.jar | ... eclipse/core/
org/eclipse/core/commands/
org/eclipse/core/commands/AbstractHandler ... |
/external/autotest/client/common_lib/cros/fake_device_server/ |
D | commands_unittest.py | 14 from fake_device_server import commands 36 self.commands = commands.Commands(self.oauth, self.fail_control) 53 self.commands.new_device(DEVICE_ID) 54 new_command = self.commands.create_command(GOOD_COMMAND) 59 self.commands.device_commands[DEVICE_ID][command_id], 65 self.commands.create_command, bad_command) 71 self.commands.create_command, BAD_COMMAND) 79 self.commands.new_device(DEVICE_ID) 80 self.commands.device_commands[DEVICE_ID][COMMAND_ID] = COMMAND_RESOURCE 81 returned_json = self.commands.GET(COMMAND_ID, deviceId=DEVICE_ID) [all …]
|
D | devices_unittest.py | 13 from fake_device_server import commands 30 self.commands = commands.Commands(self.oauth, self.fail_control) 33 self.commands, 48 self.assertTrue(device_id in self.commands.device_commands) 83 self.commands.new_device(12345) 89 self.assertRaises(KeyError, self.commands.remove_device, 12345)
|
/external/autotest/server/self-test/ |
D | autotest_test.py | 32 self.commands = [] 41 self.commands.append(command) 57 self.commands = [] 65 self.commands.append(command) 68 self.commands.append("send_file: %s %s" % (src, 75 self.assertEqual(host.commands[0], 77 self.assertTrue(host.commands[1].startswith('send_file: /tmp/')) 78 self.assertTrue(host.commands[1].endswith( 87 self.commands = [] 95 self.commands.append(command) [all …]
|
/external/autotest/client/tests/iozone/ |
D | postprocessing.py | 389 commands = "" 390 commands += "set title 'Iozone performance: %s'\n" % label 391 commands += "set logscale x\n" 392 commands += "set xlabel 'File size (KB)'\n" 393 commands += "set ylabel 'Througput (MB/s)'\n" 394 commands += "set terminal png small size 450 350\n" 395 commands += "set output '%s'\n" % os.path.join(self.output_dir, 397 commands += ("plot '%s' using 1:%s title '%s' with lines \n" % 400 commands_file.write(commands) 417 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/skia/tools/skiaserve/urlhandlers/ |
D | CmdHandler.cpp | 24 SkTArray<SkString> commands; in handle() local 25 SkStrSplit(url, "/", &commands); in handle() 27 if (!request->hasPicture() || commands.count() > 3) { in handle() 34 if (commands.count() == 1) { in handle() 37 sscanf(commands[1].c_str(), "%d", &n); in handle() 45 if (commands.count() == 2 && 0 == strcmp(method, MHD_HTTP_METHOD_DELETE)) { in handle() 47 sscanf(commands[1].c_str(), "%d", &n); in handle() 53 if (commands.count() == 3 && 0 == strcmp(method, MHD_HTTP_METHOD_POST)) { in handle() 55 sscanf(commands[1].c_str(), "%d", &n); in handle() 56 sscanf(commands[2].c_str(), "%d", &toggle); in handle()
|
D | ImgHandler.cpp | 25 SkTArray<SkString> commands; in handle() local 26 SkStrSplit(url, "/", &commands); in handle() 28 if (!request->hasPicture() || commands.count() > 3) { in handle() 34 if (commands.count() == 1) { in handle() 36 } else if (commands.count() == 2) { in handle() 37 sscanf(commands[1].c_str(), "%d", &n); in handle() 39 sscanf(commands[1].c_str(), "%d", &n); in handle() 40 sscanf(commands[2].c_str(), "%d", &m); in handle()
|
D | InfoHandler.cpp | 25 SkTArray<SkString> commands; in handle() local 26 SkStrSplit(url, "/", &commands); in handle() 28 if (!request->hasPicture() || commands.count() > 2) { in handle() 34 if (commands.count() == 1) { in handle() 37 sscanf(commands[1].c_str(), "%d", &n); in handle()
|
/external/ltp/doc/testcases/ |
D | commands.txt | 14 ltp/testcases/commands/ade/ar/ar01 23 ltp/testcases/commands/ade/ld/ld01 32 ltp/testcases/commands/ade/ldd/ldd01 41 ltp/testcases/commands/ade/nm/nm01 50 ltp/testcases/commands/ade/objdump/objdump01 59 ltp/testcases/commands/ade/size/size01 68 ltp/testcases/commands/cpio/cpio_tests.sh 78 ltp/testcases/commands/cron/cron_tests.sh 87 ltp/testcases/commands/eject/eject-tests.sh 96 ltp/testcases/commands/fileutils/cp/cp_tests.sh [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
D | AbstractApplication.java | 58 protected void processCommandLine(List commands) { in processCommandLine() argument 66 protected String[] getArguments(List commands, String param) { in getArguments() argument 67 int index = commands.indexOf(param); in getArguments() 70 commands.remove(index); in getArguments() 71 if (index == commands.size()) // if this is the last command in getArguments() 73 List args = new ArrayList(commands.size()); in getArguments() 74 while (index < commands.size()) { // while not the last command in getArguments() 75 String command = (String) commands.get(index); in getArguments() 79 commands.remove(index); in getArguments()
|
/external/ltp/testcases/network/nfsv4/acl/ |
D | test_acl.py | 6 import commands 18 u = commands.getoutput('mkdir ' + path + "/" + testdir) 19 u = commands.getoutput('getfacl ' + path + "/" + testdir) 27 u = commands.getoutput('touch ' + path + "/" + testdir + testfile) 29 u = commands.getoutput('getfacl ' + path + "/" + testdir + testfile) 58 u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + test_file) 72 u = commands.getoutput('touch ' + path + "/" + testfile) 77 … u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + testfile) 88 u = commands.getoutput('rm ' + path + "/*") # clean directory 96 u = commands.getoutput('touch ' + path + "/" + testfile) [all …]
|
D | random_gen.py | 1 import commands 33 u = commands.getoutput('/usr/sbin/useradd '+ opts) 40 u = commands.getoutput('touch ' + path + '/'+ fName) 44 u = commands.getoutput('/usr/sbin/groupadd -g' + gid + " " + grpname) 64 u = commands.getoutput('/usr/sbin/userdel -r '+ name) 70 u = commands.getoutput('/usr/sbin/groupdel '+ name[0]) 89 u = commands.getoutput('ls ' + path) 214 u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + file) 218 u = commands.getoutput('setfacl -m g:' + group + ':' + mode + " " + path + "/" + file) 222 u = commands.getoutput('setfacl -x u:' + user + " " + path + "/" + file) [all …]
|
/external/ImageMagick/MagickCore/ |
D | delegate.c | 271 if (p->commands != (char *) NULL) in DestroyDelegate() 272 p->commands=DestroyString(p->commands); in DestroyDelegate() 1055 **commands; in GetDelegateCommand() local 1077 commands=StringToList(delegate_info->commands); in GetDelegateCommand() 1078 if (commands == (char **) NULL) in GetDelegateCommand() 1086 commands[0],exception); in GetDelegateCommand() 1089 "MemoryAllocationFailed","`%s'",commands[0]); in GetDelegateCommand() 1093 for (i=0; commands[i] != (char *) NULL; i++) in GetDelegateCommand() 1094 commands[i]=DestroyString(commands[i]); in GetDelegateCommand() 1095 commands=(char **) RelinquishMagickMemory(commands); in GetDelegateCommand() [all …]
|
/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/commands/ |
D | BrowserCommands.js | 22 this.commands={}; 26 if (name in this.commands) { 30 this.commands[name] = {help: help, runnable: runnable}; property 35 for (var command in this.commands) { 36 result+=command+'\t'+this.commands[command].help+"\n"; 50 if (! (name in this.commands)) { 54 return this.commands[name].runnable.call(context, args);
|
/external/tpm2/generator/ |
D | command_generator.py | 567 def _OutputCommandDispatcher(commands): argument 575 for command in commands: 579 for command in commands: 588 def _OutputHandleProcess(commands, typemap): argument 599 for command in commands: 617 def _OutputGetCommandCodeString(commands): argument 630 for command in commands: 637 def GenerateHeader(commands): argument 643 for command in commands: 656 def GenerateImplementation(commands, typemap): argument [all …]
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | ShCommands.py | 39 def __init__(self, commands, negate=False, pipe_err=False): argument 40 self.commands = commands 45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate, 52 return cmp((self.commands, self.negate, self.pipe_err), 53 (other.commands, other.negate, self.pipe_err)) 60 for cmd in self.commands: 62 if cmd is not self.commands[-1]:
|
/external/llvm/utils/lit/lit/ |
D | ShCommands.py | 39 def __init__(self, commands, negate=False, pipe_err=False): argument 40 self.commands = commands 45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate, 52 return ((self.commands, self.negate, self.pipe_err) == 53 (other.commands, other.negate, self.pipe_err)) 60 for cmd in self.commands: 62 if cmd is not self.commands[-1]:
|
/external/libedit/examples/ |
D | fileman.c | 57 COMMAND commands[] = { variable 187 for (i = 0; commands[i].name; i++) in find_command() 188 if (strcmp (name, commands[i].name) == 0) in find_command() 189 return (&commands[i]); in find_command() 282 while ((name = commands[list_index].name)) 391 for (i = 0; commands[i].name; i++) in com_help() 393 if (!*arg || (strcmp (arg, commands[i].name) == 0)) in com_help() 395 printf ("%s\t\t%s.\n", commands[i].name, commands[i].doc); in com_help() 404 for (i = 0; commands[i].name; i++) in com_help() 413 printf ("%s\t", commands[i].name); in com_help()
|
/external/chromium-trace/catapult/telemetry/third_party/mox3/ |
D | tox.ini | 8 commands = key 12 commands = python setup.py build_sphinx key 15 commands = flake8 key 18 commands = {posargs} key 22 commands = key
|
/external/skia/tools/flags/ |
D | SkCommonFlagsConfig.cpp | 302 SkTArray<SkString> commands; in parse_option_gpu_color() local 303 SkStrSplit(value.c_str(), "_", &commands); in parse_option_gpu_color() 304 if (commands.count() < 1 || commands.count() > 2) { in parse_option_gpu_color() 308 const bool linearGamma = commands[0].equals("f16"); in parse_option_gpu_color() 314 if (commands.count() == 2) { in parse_option_gpu_color() 315 if (commands[1].equals("srgb")) { in parse_option_gpu_color() 317 } else if (commands[1].equals("wide")) { in parse_option_gpu_color() 327 } else if (commands[1].equals("narrow")) { in parse_option_gpu_color() 345 if (commands[0].equals("f16")) { in parse_option_gpu_color() 349 if (commands[0].equals("srgb") || commands[0].equals("srgbnl")) { in parse_option_gpu_color()
|
/external/mmc-utils/ |
D | mmc.c | 49 static struct Command commands[] = { variable 220 for( cp = commands; cp->verb; cp++ ) in help() 228 static int split_command(char *cmd, char ***commands) in split_command() argument 233 for( *commands = 0, l = c = 0, p = s = cmd ; ; p++, l++ ){ in split_command() 238 (*commands) = realloc( (*commands), sizeof(char *)*(c + 2)); in split_command() 239 (*commands)[c] = strndup(s, l); in split_command() 246 (*commands)[c] = 0; in split_command() 259 for( match = 0, cp = commands; cp->verb; cp++ ){ in check_ambiguity() 360 for( cp = commands; cp->verb; cp++ ) in parse_args() 364 for( cp = commands; cp->verb; cp++ ){ in parse_args()
|
/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/vulkan-validation-layers/demos/smoke/ |
D | generate-dispatch-table.py | 72 def __init__(self, name, version, guard=None, commands=[]): argument 76 self.commands = commands[:] 79 self.commands.append(cmd) 86 for cmd in self.commands: 94 vk_core = Extension(name='VK_core', version=0, guard=None, commands=[ 233 vk_khr_surface = Extension(name='VK_KHR_surface', version=25, guard=None, commands=[ 241 vk_khr_swapchain = Extension(name='VK_KHR_swapchain', version=67, guard=None, commands=[ 249 vk_khr_display = Extension(name='VK_KHR_display', version=21, guard=None, commands=[ 259 …hr_display_swapchain = Extension(name='VK_KHR_display_swapchain', version=9, guard=None, commands=[ 263 …ace = Extension(name='VK_KHR_xlib_surface', version=6, guard='VK_USE_PLATFORM_XLIB_KHR', commands=[ [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/ |
D | benchmark_runner.py | 102 def __init__(self, commands): argument 103 self._all_commands = commands 107 commands = _MatchingCommands(args.positional_args[0], self._all_commands) 108 if len(commands) == 1: 109 command = commands[0] 252 def _MatchingCommands(string, commands): argument 253 return [command for command in commands 393 commands = _MatchingCommands(command_name, all_commands) 394 if len(commands) > 1: 397 for command in commands: [all …]
|