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

1 2 3 4 5 6 7

  /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/linux-tools-perf/src/tools/perf/util/
help.c 8 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len)
16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
20 static void clean_cmdnames(struct cmdnames *cmds)
24 for (i = 0; i < cmds->cnt; ++i)
25 free(cmds->names[i]);
26 free(cmds->names)
    [all...]
help.h 22 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
24 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
  /external/vboot_reference/cgpt/
cgpt.c 30 } cmds[] = { variable in typeref:struct:__anon21120
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/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/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...]
  /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...]
commands.h 39 extern void print_commands PARAMS ((struct commands *cmds));
41 extern void chop_commands PARAMS ((struct commands *cmds));
  /external/linux-tools-perf/src/tools/perf/
bash_completion 44 cmds=$($cmd --list-cmds)
45 COMPREPLY=( $( compgen -W '$cmds' -- "$cur" ) )
  /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...]
  /frameworks/native/opengl/tools/glgen2/
glgen.py 145 self.cmds = []
152 self.cmds.append({'rtype': rtype, 'name': fname, 'params': params})
188 self.cmds.sort(key=itemgetter('name'))
189 cmds = []
190 for cmd in self.cmds:
191 if len(cmds) == 0 or cmd != cmds[-1]:
192 cmds.append(cmd)
193 self.cmds = cmds
    [all...]
  /build/core/
process_wrapper_gdb.sh 17 gdb -q -x $2/process_wrapper_gdb.cmds --args "$@"
  /device/asus/deb/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/asus/flo/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/asus/fugu/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/htc/flounder/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/lge/hammerhead/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /device/moto/shamu/dumpstate/
Android.mk 18 LOCAL_C_INCLUDES := frameworks/native/cmds/dumpstate
  /frameworks/native/cmds/installd/tests/
Android.mk 20 frameworks/native/cmds/installd
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
  /external/toybox/toys/other/
blockdev.c 41 int cmds[] = {BLKRRPART, BLKFLSBUF, BLKGETSIZE64, BLKGETSIZE, BLKGETSIZE64, local
63 xioctl(fd, cmds[i], &val);

Completed in 1544 milliseconds

1 2 3 4 5 6 7