Searched defs:Command (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A D2005-02-19-BitfieldStructCrash.cpp5 struct Command { struct
6 Command(QChar c) : c(c) {} function in struct:Command
11 Command X(QChar('c'));
/external/bison/doc/
H A Drefcard.tex317 \section{Command Line Options}
/external/llvm/utils/lit/lit/
H A DShCommands.py1 class Command: class in inherits:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
H A DShUtil.py4 from ShCommands import Command, Pipeline, Seq namespace
218 return Command(args, redirects)
290 Pipeline([Command(['echo', 'hello'], [])], False))
292 Pipeline([Command(['echo', ''], [])], False))
294 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
296 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
300 Pipeline([Command(['echo', 'hello'],
303 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'),
306 Pipeline([Command(['a'], [(('>&',2), '1')])], False))
310 Pipeline([Command(['
[all...]
H A DTclUtil.py3 from ShCommands import Command, Pipeline namespace
123 raise NotImplementedError, ('Command substitution is '
202 commands = [Command([],[])]
208 commands.append(Command([],[]))
213 commands.append(Command([],[]))
301 Pipeline([Command(['echo', 'hello'], [])],
305 Pipeline([Command(['echo', 'hello'], []),
306 Command(['grep', 'hello'], [])],
312 Pipeline([Command(['echo', 'hello'],
318 Command(['
[all...]
/external/webkit/Source/WebKit/android/wds/
H A DCommand.h46 // Command identifier length
68 class Command { class in namespace:android::WDS
70 Command(const char* name, const char* desc, const DispatchFunction func, function in class:android::WDS::Command
76 Command(const Command& comm) function in class:android::WDS::Command
81 virtual ~Command() {}
87 static Command* Find(const Connection* conn);
101 static Vector<const Command*>* s_commands;
/external/clang/lib/Driver/
H A DJob.cpp1 //===--- Job.cpp - Command to Execute -------------------------------------===//
19 void Command::anchor() {}
21 Command::Command(const Action &_Source, const Tool &_Creator, function in class:Command
39 void Job::addCommand(Command *C) {
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py10 from distutils.cmd import Command namespace
65 class unittest(Command):
150 class functest(Command):
/external/chromium/chrome/browser/
H A Dcommand_updater.cc16 class CommandUpdater::Command { class in class:CommandUpdater
21 Command() : enabled(true) {} function in class:CommandUpdater::Command
52 Command* command = GetCommand(id, true);
60 CommandUpdater::Command* CommandUpdater::GetCommand(int id, bool create) {
65 Command* command = new Command;
82 Command* command = it->second;
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp95 StringRef Command("/path/to/compiler and some arguments");
100 "\"command\":\"" + Command + "\","
113 "\"command\":\"" + Command + "\","
123 StringRef Command("\\\"/path to compiler\\\" \\\"and an argument\\\"");
128 "\"command\":\"" + Command + "\","
139 StringRef Command("a command");
144 "\"command\":\"" + Command + "\","
153 StringRef Command("command");
159 "\"command\":\"" + Command + Twine(I) + "\","
171 static std::vector<std::string> unescapeJsonCommandLine(StringRef Command) { argument
[all...]
/external/icu4c/test/perf/unisetperf/
H A Dunisetperf.cpp25 // Command-line options specific to unisetperf.
133 class Command : public UPerfFunction { class in inherits:UPerfFunction
135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} function in class:Command
138 virtual ~Command() {}
155 class Contains : public Command {
157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
205 class SpanUTF16 : public Command {
207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
256 class SpanBackUTF16 : public Command {
258 SpanBackUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcas
[all...]
/external/icu4c/test/perf/utrie2perf/
H A Dutrie2perf.cpp95 class Command : public UPerfFunction { class in inherits:UPerfFunction
97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} function in class:Command
100 virtual ~Command() {}
115 class CheckFCD : public Command {
117 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {}
135 class CheckFCDAlwaysGet : public Command {
137 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
156 class CheckFCDUTF8 : public Command {
158 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
173 class ToNFC : public Command {
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dhelper.h115 // Command tag for buttons on the lock screen.
116 enum Command { enum in namespace:chromeos::login
/external/clang/include/clang/Driver/
H A DJob.h19 class Command;
41 void addCommand(Command *C);
46 /// Command - An executable path/name and argument vector to
48 class Command : public Job { class in namespace:clang::driver
65 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
81 static bool classof(const Command *) { return true; }
/external/llvm/include/llvm/Object/
H A DMachOObject.h49 macho::LoadCommand Command; member in struct:llvm::object::MachOObject::LoadCommandInfo
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool_unittest.py35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain namespace
38 class TrivialCommand(Command):
42 Command.__init__(self, "help text", **kwargs)
53 class LikesToRetry(Command):
58 Command.__init__(self, "help text", **kwargs)
76 self.assertEqual(Command._parse_required_arguments("ARG1 ARG2"), ["ARG1", "ARG2"])
77 self.assertEqual(Command._parse_required_arguments("[ARG1] [ARG2]"), [])
78 self.assertEqual(Command._parse_required_arguments("[ARG1] ARG2"), ["ARG2"])
80 self.assertRaises(Exception, Command._parse_required_arguments, "[ARG1 ARG2]")
119 # This also tests Command aut
[all...]
H A Dmulticommandtool.py46 class Command(object): class in inherits:object
63 # before it knows what Command to run.
73 # The tool calls bind_to_tool on each Command after adding it to its list.
75 # Command instances can only be bound to one tool at a time.
77 raise Exception("Command already bound to tool!")
137 # FIXME: This should just be rolled into Command. help_text and argument_names do not need to be instance variables.
138 class AbstractDeclarativeCommand(Command):
143 Command.__init__(self, self.help_text, self.argument_names, options=options, long_help=self.long_help, **kwargs)
237 cls._add_all_subclasses(Command, commands)
/external/icu4c/test/perf/utfperf/
H A Dutfperf.cpp43 // Command-line options specific to utfperf.
120 class Command : public UPerfFunction { class in inherits:UPerfFunction
122 Command(const UtfPerformanceTest &testcase) function in class:Command
133 virtual ~Command(){
151 class Roundtrip : public Command {
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {}
218 class FromUnicode : public Command {
220 FromUnicode(const UtfPerformanceTest &testcase) : Command(testcase) {}
263 class FromUTF8 : public Command {
266 : Command(testcas
[all...]
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp226 llvm::yaml::ScalarNode *Command = NULL; local
252 Command = ValueString;
265 if (!Command) {
277 CompileCommandRef(Directory, Command));
/external/emma/core/java12/com/vladium/emma/
H A DCommand.java7 * $Id: Command.java,v 1.1.1.1.2.1 2004/07/16 23:32:03 vlad_r Exp $
31 abstract class Command class
36 public static Command create (final String name, final String usageName, final String [] args)
38 final Command tool;
63 protected Command (final String usageToolName, final String [] args) method in class:Command
/external/webkit/Source/WebCore/editing/
H A DEditor.h177 class Command { class in class:WebCore::Editor
179 Command();
180 Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtr<Frame>);
198 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
199 Command command(const String& commandName, EditorCommandSource);
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dqueues.py54 from webkitpy.tool.multicommandtool import Command, TryAgain namespace
57 class AbstractQueue(Command, QueueEngineDelegate):
71 Command.__init__(self, "Run the %s" % self.name, options=options_list)
139 # Command methods
142 self._options = options # FIXME: This code is wrong. Command.options is a list, this assumes an Options element!
143 self._tool = tool # FIXME: This code is wrong too! Command.bind_to_tool handles this!
/external/chromium/net/ftp/
H A Dftp_network_transaction.h50 enum Command { enum in class:net::FtpNetworkTransaction
131 int SendFtpCommand(const std::string& command, Command cmd);
187 Command command_sent_;
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp383 std::string Command = ""; local
391 if (Command == "")
392 Command = token;
401 CmdPath = sys::Program::FindProgramByName(Command).str();
404 std::string("Cannot find '") + Command +
/external/clang/lib/AST/
H A DCommentSema.cpp51 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, argument
53 Command->setArgs(Args);
56 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, argument
58 Command->setParagraph(Paragraph);
59 checkBlockCommandEmptyParagraph(Command);
60 checkBlockCommandDuplicate(Command);
61 checkReturnsCommand(Command);
67 ParamCommandComment *Command = local
71 Diag(Command->getLocation(),
73 << Command
78 actOnParamCommandDirectionArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
133 actOnParamCommandParamNameArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
151 actOnParamCommandFinish(ParamCommandComment *Command, ParagraphComment *Paragraph) argument
160 TParamCommandComment *Command = local
171 actOnTParamCommandParamNameArg(TParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
234 actOnTParamCommandFinish(TParamCommandComment *Command, ParagraphComment *Paragraph) argument
411 checkBlockCommandEmptyParagraph(BlockCommandComment *Command) argument
425 checkReturnsCommand(const BlockCommandComment *Command) argument
459 checkBlockCommandDuplicate(const BlockCommandComment *Command) argument
[all...]

Completed in 571 milliseconds

12