HomeSort by relevance Sort by last modified time
    Searched full:cmds (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/buildcmds/
.gitignore 2 cxx.cmds
3 link.cmds
buildcmdscc 10 | perl -ne 's/\S+\.o\b/%OUT%/; print' > $DIR/cxx.cmds
13 | perl -ne 's/-o\s+\S+\b/-o %OUT%/; print' > $DIR/link.cmds
  /external/autotest/client/profilers/cmdprofile/
cmdprofile.py 15 def initialize(self, cmds=['ps'], interval=60, outputfile='cmdprofile',
23 elif outputfiles and len(outputfiles) != len(cmds):
25 'cmdprofile paramter outputfiles has length %d and cmds has '
27 (len(outputfiles), len(cmds)))
30 self.cmds = cmds
35 self.outputfiles = [outputfile] * len(cmds)
44 for cmd, outputfile in zip(self.cmds, self.outputfiles):
  /external/vboot_reference/cgpt/
cgpt.c 30 } cmds[] = { variable in typeref:struct:__anon25945
49 for (i = 0; i < sizeof(cmds)/sizeof(cmds[0]); ++i) {
50 printf(" %-15s %s\n", cmds[i].name, cmds[i].comment);
76 for (i = 0; command && i < sizeof(cmds)/sizeof(cmds[0]); ++i) {
78 if (0 == strcmp(cmds[i].name, command)) {
84 else if (0 == strncmp(cmds[i].name, command, strlen(command))) {
91 return cmds[match_index].fp(argc, argv)
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
33 assert len(cmds) != 0
38 cmds = cdb.getAllCompileCommands()
39 assert len(cmds) == 3
51 for i in range(len(cmds)):
52 assert cmds[i].directory == expected[i]['wd']
53 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
59 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
60 assert len(cmds) == 1
61 assert cmds[0].directory == '/home/john.doe/MyProject
    [all...]
  /external/vboot_reference/tests/futility/
test_load_fmap.sh 24 CMDS=""
29 CMDS="$CMDS $a:$a.rand"
33 ${FUTILITY} load_fmap ${BIOS} ${CMDS}
  /external/mesa3d/src/gallium/state_trackers/vega/
vgu.c 42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds, i, coords, 2*i)
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
    [all...]
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 72 clang_CompileCommands_dispose(CXCompileCommands Cmds)
74 delete static_cast<AllocatedCXCompileCommands *>(Cmds);
78 clang_CompileCommands_getSize(CXCompileCommands Cmds)
80 if (!Cmds)
84 static_cast<AllocatedCXCompileCommands *>(Cmds);
90 clang_CompileCommands_getCommand(CXCompileCommands Cmds, unsigned I)
92 if (!Cmds)
96 static_cast<AllocatedCXCompileCommands *>(Cmds);
  /external/iproute2/tipc/
peer.c 67 const struct cmd cmds[] = { local
72 return run_cmd(nlh, cmd, cmds, cmdl, NULL);
87 const struct cmd cmds[] = { local
92 return run_cmd(nlh, cmd, cmds, cmdl, NULL);
cmdl.h 42 const struct cmd *cmds, struct cmdl *cmdl, void *data);
44 const struct cmd *find_cmd(const struct cmd *cmds, char *str);
  /ndk/sources/host-tools/make-3.81/
commands.c 122 if (file->cmds == default_file->cmds)
267 /* Chop CMDS up into individual command lines if necessary.
271 chop_commands (struct commands *cmds)
280 if (!cmds || cmds->command_lines != 0)
283 /* Chop CMDS->commands up into lines in CMDS->command_lines.
284 Also set the corresponding CMDS->lines_flags elements,
285 and the CMDS->any_recurse flag. *
    [all...]
  /build/kati/
command.cc 195 for (Value* v : n->cmds) {
197 StringPiece cmds = cmds_buf; local
200 ParseCommandPrefixes(&cmds, &global_echo, &global_ignore_error);
201 if (cmds == "")
205 size_t index = FindEndOfLine(cmds, 0, &lf_cnt);
206 if (index == cmds.size())
208 StringPiece cmd = TrimLeftSpace(cmds.substr(0, index));
209 cmds = cmds.substr(index + 1);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
UndoDelegator.py 87 # around a sequence of editing cmds to be treated as a unit by
89 # then act like nops. OK too if no editing cmds, or only one
90 # editing cmd, is issued in between: if no cmds, the whole
110 # this blk of cmds, or single cmd, has already
302 # Wrapper for a sequence of undoable cmds to be undone/redone
306 self.cmds = []
312 for cmd in self.cmds:
317 return len(self.cmds)
320 self.cmds.append(cmd)
323 return self.cmds[i
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
UndoDelegator.py 87 # around a sequence of editing cmds to be treated as a unit by
89 # then act like nops. OK too if no editing cmds, or only one
90 # editing cmd, is issued in between: if no cmds, the whole
110 # this blk of cmds, or single cmd, has already
302 # Wrapper for a sequence of undoable cmds to be undone/redone
306 self.cmds = []
312 for cmd in self.cmds:
317 return len(self.cmds)
320 self.cmds.append(cmd)
323 return self.cmds[i
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 87 # around a sequence of editing cmds to be treated as a unit by
89 # then act like nops. OK too if no editing cmds, or only one
90 # editing cmd, is issued in between: if no cmds, the whole
110 # this blk of cmds, or single cmd, has already
302 # Wrapper for a sequence of undoable cmds to be undone/redone
306 self.cmds = []
312 for cmd in self.cmds:
317 return len(self.cmds)
320 self.cmds.append(cmd)
323 return self.cmds[i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 87 # around a sequence of editing cmds to be treated as a unit by
89 # then act like nops. OK too if no editing cmds, or only one
90 # editing cmd, is issued in between: if no cmds, the whole
110 # this blk of cmds, or single cmd, has already
302 # Wrapper for a sequence of undoable cmds to be undone/redone
306 self.cmds = []
312 for cmd in self.cmds:
317 return len(self.cmds)
320 self.cmds.append(cmd)
323 return self.cmds[i
    [all...]
  /external/autotest/client/site_tests/network_3GModemControl/
network_3GModemControl.py 141 cmds = self.PickRandomCommands()
142 logging.info('Enable with %s' % cmds)
143 cmds.Enable()
146 cmds = self.PickRandomCommands()
147 logging.info('Disable with %s' % cmds)
148 cmds.Disable()
151 cmds = self.PickRandomCommands()
152 logging.info('Connect with %s' % cmds)
153 cmds.Connect(**kwargs)
156 cmds = self.PickRandomCommands(
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/
commands.go 87 var cmds []string
89 cmds = append(cmds, exe)
93 cmds = append(cmds, "/usr/bin/open")
95 cmds = append(cmds, "cmd /c start")
97 cmds = append(cmds, "xdg-open")
99 cmds = append(cmds, "chrome", "google-chrome", "firefox"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/
commands.go 87 var cmds []string
89 cmds = append(cmds, exe)
93 cmds = append(cmds, "/usr/bin/open")
95 cmds = append(cmds, "cmd /c start")
97 cmds = append(cmds, "xdg-open")
99 cmds = append(cmds, "chrome", "google-chrome", "firefox"
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
fastboot.py 19 def exe_cmd(*cmds):
26 cmds: A sequence of commands and arguments.
34 cmd = ' '.join(cmds)
  /build/core/
process_wrapper_gdb.sh 17 gdb -q -x $2/process_wrapper_gdb.cmds --args "$@"
  /device/asus/fugu/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/google/dragon/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/google/marlin/dumpstate/
Android.mk 20 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/htc/flounder/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate

Completed in 3090 milliseconds

1 2 3 4 5 6 7 8 91011>>