HomeSort by relevance Sort by last modified time
    Searched full:mycmd (Results 1 - 17 of 17) sorted by null

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cmd.py 18 >>> mycmd = samplecmdclass()
21 >>> mycmd.parseline("")
23 >>> mycmd.parseline("?")
25 >>> mycmd.parseline("?help")
27 >>> mycmd.parseline("!")
29 >>> mycmd.parseline("!command")
31 >>> mycmd.parseline("func")
33 >>> mycmd.parseline("func arg1")
38 >>> mycmd.onecmd("")
39 >>> mycmd.onecmd("add 4 5"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cmd.py 18 >>> mycmd = samplecmdclass()
21 >>> mycmd.parseline("")
23 >>> mycmd.parseline("?")
25 >>> mycmd.parseline("?help")
27 >>> mycmd.parseline("!")
29 >>> mycmd.parseline("!command")
31 >>> mycmd.parseline("func")
33 >>> mycmd.parseline("func arg1")
38 >>> mycmd.onecmd("")
39 >>> mycmd.onecmd("add 4 5"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmd.py 18 >>> mycmd = samplecmdclass()
21 >>> mycmd.parseline("")
23 >>> mycmd.parseline("?")
25 >>> mycmd.parseline("?help")
27 >>> mycmd.parseline("!")
29 >>> mycmd.parseline("!command")
31 >>> mycmd.parseline("func")
33 >>> mycmd.parseline("func arg1")
38 >>> mycmd.onecmd("")
39 >>> mycmd.onecmd("add 4 5"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmd.py 18 >>> mycmd = samplecmdclass()
21 >>> mycmd.parseline("")
23 >>> mycmd.parseline("?")
25 >>> mycmd.parseline("?help")
27 >>> mycmd.parseline("!")
29 >>> mycmd.parseline("!command")
31 >>> mycmd.parseline("func")
33 >>> mycmd.parseline("func arg1")
38 >>> mycmd.onecmd("")
39 >>> mycmd.onecmd("add 4 5"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 11 class MyCmd(Command):
19 self.cmd = MyCmd(dist)
64 wanted = ["command options for 'MyCmd':", ' option1 = 1',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 11 class MyCmd(Command):
19 self.cmd = MyCmd(dist)
64 wanted = ["command options for 'MyCmd':", ' option1 = 1',
  /prebuilts/go/darwin-x86/src/cmd/go/
go_test.go 690 tg.tempFile("src/mycmd/main.go", `package main; func main(){}`)
692 tg.cd(tg.path("src/mycmd"))
703 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary")
705 doesNotExist("mycmd"+exeSuffix, "testgo install did not remove command binary")
707 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary (second time)")
710 tg.run("install", "mycmd")
711 tg.wantExecutable("mycmd"+exeSuffix, "testgo install mycmd removed command binary when run in mycmd")
713 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary (third time)"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
go_test.go 690 tg.tempFile("src/mycmd/main.go", `package main; func main(){}`)
692 tg.cd(tg.path("src/mycmd"))
703 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary")
705 doesNotExist("mycmd"+exeSuffix, "testgo install did not remove command binary")
707 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary (second time)")
710 tg.run("install", "mycmd")
711 tg.wantExecutable("mycmd"+exeSuffix, "testgo install mycmd removed command binary when run in mycmd")
713 tg.wantExecutable("mycmd"+exeSuffix, "testgo build did not write command binary (third time)"
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 425 enum commands mycmd = CMD_HELP; local
429 mycmd = CMD_NEXT;
434 mycmd = ctp->cmd;
441 switch (mycmd) {
464 switch (mycmd) {
  /external/curl/lib/
mk-ca-bundle.vbs 147 Dim myCmd, myRval, myTmpIn, myTmpOut
153 myCmd = myOpenssl & " x509 -md5 -fingerprint -text -inform PEM" & _
155 myRval = objShell.Run (myCmd, 0, TRUE)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py 230 output=`mycmd myarg`
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
246 sts = os.system("mycmd" + " myarg")
248 p = Popen("mycmd" + " myarg", shell=True)
261 retcode = call("mycmd" + " myarg", shell=True)
274 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
276 pid = Popen(["/bin/mycmd", "myarg"]).pid
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py 230 output=`mycmd myarg`
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
246 sts = os.system("mycmd" + " myarg")
248 p = Popen("mycmd" + " myarg", shell=True)
261 retcode = call("mycmd" + " myarg", shell=True)
274 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
276 pid = Popen(["/bin/mycmd", "myarg"]).pid
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 230 output=`mycmd myarg`
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
246 sts = os.system("mycmd" + " myarg")
248 p = Popen("mycmd" + " myarg", shell=True)
261 retcode = call("mycmd" + " myarg", shell=True)
274 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
276 pid = Popen(["/bin/mycmd", "myarg"]).pid
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 230 output=`mycmd myarg`
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
246 sts = os.system("mycmd" + " myarg")
248 p = Popen("mycmd" + " myarg", shell=True)
261 retcode = call("mycmd" + " myarg", shell=True)
274 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
276 pid = Popen(["/bin/mycmd", "myarg"]).pid
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg"
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/
test_connection.py 254 resp = conn.make_request('myCmd',
276 resp = conn.make_request('myCmd',
292 resp = conn.make_request('myCmd',
  /prebuilts/go/darwin-x86/doc/articles/
race_detector.html 44 $ go build -race mycmd // to build the command
  /prebuilts/go/linux-x86/doc/articles/
race_detector.html 44 $ go build -race mycmd // to build the command

Completed in 743 milliseconds