HomeSort by relevance Sort by last modified time
    Searched refs:Cmd (Results 176 - 200 of 230) sorted by null

1 2 3 4 5 6 78 910

  /hardware/qcom/media/msm8974/mm-core/inc/
OMX_Component.h 349 OMX_IN OMX_COMMANDTYPE Cmd,
  /hardware/qcom/media/msm8974/mm-core/omxcore/inc/
OMX_Component.h 349 OMX_IN OMX_COMMANDTYPE Cmd,
  /hardware/qcom/media/msm8996/mm-core/inc/
OMX_Component.h 349 OMX_IN OMX_COMMANDTYPE Cmd,
  /hardware/qcom/media/msm8998/mm-core/inc/
OMX_Component.h 349 OMX_IN OMX_COMMANDTYPE Cmd,
  /hardware/qcom/media/sdm845/mm-core/inc/
OMX_Component.h 349 OMX_IN OMX_COMMANDTYPE Cmd,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line
    [all...]
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
pstats.py 543 import cmd
549 class ProfileBrowser(cmd.Cmd):
551 cmd.Cmd.__init__(self)
  /prebuilts/gdb/linux-x86/lib/python2.7/
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line
    [all...]
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
pstats.py 543 import cmd
549 class ProfileBrowser(cmd.Cmd):
551 cmd.Cmd.__init__(self)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line
    [all...]
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line
    [all...]
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None:
    [all...]
  /external/python/cpython2/Lib/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
pstats.py 543 import cmd
549 class ProfileBrowser(cmd.Cmd):
551 cmd.Cmd.__init__(self)
  /prebuilts/go/darwin-x86/src/runtime/
crash_test.go 35 func testEnv(cmd *exec.Cmd) *exec.Cmd {
36 if cmd.Env != nil {
49 cmd.Env = append(cmd.Env, env)
51 return cmd
73 cmd := testEnv(exec.Command(exe, name))
75 cmd.Stdout = &b
76 cmd.Stderr = &
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
crash_test.go 35 func testEnv(cmd *exec.Cmd) *exec.Cmd {
36 if cmd.Env != nil {
49 cmd.Env = append(cmd.Env, env)
51 return cmd
73 cmd := testEnv(exec.Command(exe, name))
75 cmd.Stdout = &b
76 cmd.Stderr = &
    [all...]
  /build/kati/
evalcmd.go 194 cmd string
201 cmd := r.cmd
203 cmd = "@" + cmd
206 cmd = "-" + cmd
208 return cmd
231 r.cmd = s
237 if strings.IndexByte(r.cmd, '$') < 0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pstats.py 551 import cmd
557 class ProfileBrowser(cmd.Cmd):
559 cmd.Cmd.__init__(self)
  /external/clang/lib/Driver/
Driver.cpp 636 Command Cmd = FailingCommand;
762 Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
763 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
775 void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) {
779 if (Cmd.getCreator().getResponseFilesSupport() == Tool::RF_None ||
780 llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(), Cmd.getArguments()))
784 Cmd.setResponseFile(
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
test.go 76 cmd *exec.Cmd
123 cmd := exec.Command("go", "install", "-a", "-v", "std", "cmd")
124 cmd.Stdout = os.Stdout
125 cmd.Stderr = os.Stderr
126 if err := cmd.Run(); err != nil {
137 cmd := exec.Command("go", "install", "-a", "-tags", "lldb", "runtime/cgo")
138 cmd.Stdout = os.Stdout
139 cmd.Stderr = os.Stder
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
test.go 76 cmd *exec.Cmd
123 cmd := exec.Command("go", "install", "-a", "-v", "std", "cmd")
124 cmd.Stdout = os.Stdout
125 cmd.Stderr = os.Stderr
126 if err := cmd.Run(); err != nil {
137 cmd := exec.Command("go", "install", "-a", "-tags", "lldb", "runtime/cgo")
138 cmd.Stdout = os.Stdout
139 cmd.Stderr = os.Stder
    [all...]

Completed in 4618 milliseconds

1 2 3 4 5 6 78 910