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

1 2 3 4 5 67 8 910

  /external/llvm/test/MC/MachO/ARM/
darwin-Thumb-reloc.s 117 @ CHECK: Cmd: LC_SEGMENT
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
Driver.h 245 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /hardware/intel/common/wrs_omxil_core/base/src/
componentbase.cpp 74 OMX_ERRORTYPE CmdProcessWork::PushCmdQueue(struct cmd_s *cmd)
79 ret = queue_push_tail(&q, cmd);
93 struct cmd_s *cmd; local
96 cmd = (struct cmd_s *)queue_pop_head(&q);
99 return cmd;
104 struct cmd_s *cmd; local
106 cmd = PopCmdQueue();
107 if (cmd) {
108 ci->CmdHandler(cmd);
109 free(cmd);
380 struct cmd_s *cmd; local
    [all...]
  /prebuilts/go/darwin-x86/src/debug/macho/
file.go 44 Cmd LoadCmd
240 cmd, siz := LoadCmd(bo.Uint32(dat[0:4])), bo.Uint32(dat[4:8])
248 switch cmd {
325 s.Cmd = cmd
363 s.Cmd = cmd
  /prebuilts/go/linux-x86/src/debug/macho/
file.go 44 Cmd LoadCmd
240 cmd, siz := LoadCmd(bo.Uint32(dat[0:4])), bo.Uint32(dat[4:8])
248 switch cmd {
325 s.Cmd = cmd
363 s.Cmd = cmd
  /external/autotest/client/cros/nfc/
console.py 7 import cmd
440 class NfcConsole(cmd.Cmd):
446 cmd.Cmd.__init__(self)
  /external/clang/utils/analyzer/
SATestBuild.py 162 BuildScript = "run_static_analyzer.cmd"
339 Cmd = "xcrun --sdk " + SDKName + " --show-sdk-path"
340 return check_output(Cmd, shell=True).rstrip()
  /external/v8/tools/vim/
ninja-build.vim 5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to
  /prebuilts/go/darwin-x86/src/cmd/go/
tool.go 59 fmt.Fprintf(os.Stderr, "go tool: no such tool %q; to install:\n\tgo get golang.org/x/tools/cmd/%s\n", toolName, toolName)
73 func runTool(cmd *Command, args []string) {
94 cmd := toolPath
96 cmd += " " + strings.Join(args[1:], " ")
98 fmt.Printf("%s\n", cmd)
101 args[0] = toolPath // in case the tool wants to re-exec itself, e.g. cmd/dist
102 toolCmd := &exec.Cmd{
  /prebuilts/go/darwin-x86/src/cmd/vet/
vet_test.go 58 cmd := exec.Command(testenv.GoToolPath(t), "build", "-o", binary)
59 output, err := cmd.CombinedOutput()
76 cmd := exec.Command(errchk, append(flags, files...)...)
77 if !run(cmd, t) {
160 func run(c *exec.Cmd, t *testing.T) bool {
193 cmd := exec.Command("./"+binary, args...)
194 output, err := cmd.CombinedOutput()
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix_test.go 22 proc *exec.Cmd
69 cmd := create(t)
71 cmd.Start()
72 defer cmd.Stop()
74 cpid, cpgrp := cmd.Info()
88 cmd := create(t)
90 cmd.proc.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
91 cmd.Start()
92 defer cmd.Stop()
94 cpid, cpgrp := cmd.Info(
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
tool.go 59 fmt.Fprintf(os.Stderr, "go tool: no such tool %q; to install:\n\tgo get golang.org/x/tools/cmd/%s\n", toolName, toolName)
73 func runTool(cmd *Command, args []string) {
94 cmd := toolPath
96 cmd += " " + strings.Join(args[1:], " ")
98 fmt.Printf("%s\n", cmd)
101 args[0] = toolPath // in case the tool wants to re-exec itself, e.g. cmd/dist
102 toolCmd := &exec.Cmd{
  /prebuilts/go/linux-x86/src/cmd/vet/
vet_test.go 58 cmd := exec.Command(testenv.GoToolPath(t), "build", "-o", binary)
59 output, err := cmd.CombinedOutput()
76 cmd := exec.Command(errchk, append(flags, files...)...)
77 if !run(cmd, t) {
160 func run(c *exec.Cmd, t *testing.T) bool {
193 cmd := exec.Command("./"+binary, args...)
194 output, err := cmd.CombinedOutput()
  /prebuilts/go/linux-x86/src/syscall/
exec_unix_test.go 22 proc *exec.Cmd
69 cmd := create(t)
71 cmd.Start()
72 defer cmd.Stop()
74 cpid, cpgrp := cmd.Info()
88 cmd := create(t)
90 cmd.proc.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
91 cmd.Start()
92 defer cmd.Stop()
94 cpid, cpgrp := cmd.Info(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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...]
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...]
  /external/python/cpython2/Lib/
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...]
  /frameworks/native/headers/media_plugin/media/openmax/
OMX_Component.h 366 OMX_IN OMX_COMMANDTYPE Cmd,

Completed in 735 milliseconds

1 2 3 4 5 67 8 910