Searched defs:commands (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js3 * subset of the IRC commands are implemented. To be functional, IRCConnection
33 sendCommand(commands.JOIN, [channel], "");
37 sendCommand(commands.PRIVMSG, [recipient], message);
41 sendCommand(commands.PART, [channel], "");
45 sendCommand(commands.QUIT, [], message);
56 sendCommand(commands.NICK, [this.nick], "");
57 sendCommand(commands.USER,
71 if (parsed.command == commands.PING) {
72 sendCommand(commands.PONG, [], parsed.body);
77 if (parsed.command == commands
[all...]
/external/smack/src/org/jivesoftware/smackx/commands/
H A DLocalCommandFactory.java20 package org.jivesoftware.smackx.commands;
23 * A factory for creating local commands. It's useful in cases where instantiation
H A DAdHocCommandNote.java21 package org.jivesoftware.smackx.commands;
H A DLocalCommand.java21 package org.jivesoftware.smackx.commands;
H A DRemoteCommand.java21 package org.jivesoftware.smackx.commands;
183 * should be adjusted for commands that can take a long time to execute.
194 * should be adjusted for commands that can take a long time to execute.
H A DAdHocCommandManager.java21 package org.jivesoftware.smackx.commands;
34 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
35 import org.jivesoftware.smackx.commands.AdHocCommand.Status;
51 * commands offered by a service and for processing commands requests.
61 private static final String DISCO_NAMESPACE = "http://jabber.org/protocol/commands";
116 private Map<String, AdHocCommandInfo> commands = Collections field in class:AdHocCommandManager
167 commands.put(node, commandInfo);
202 * Discover the commands of an specific JID. The <code>jid</code> is a
205 * @param jid the full JID to retrieve the commands fo
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jar ... properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/commands/ org/eclipse/core/commands/AbstractHandler.class AbstractHandler.java ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java58 protected void processCommandLine(List commands) { argument
66 protected String[] getArguments(List commands, String param) { argument
67 int index = commands.indexOf(param);
70 commands.remove(index);
71 if (index == commands.size()) // if this is the last command
73 List args = new ArrayList(commands.size());
74 while (index < commands.size()) { // while not the last command
75 String command = (String) commands.get(index);
79 commands.remove(index);
/external/skia/tools/
H A Dsanitize_source_files.py9 import commands namespace
128 output = commands.getoutput(
H A Dfiltermain.cpp60 const SkTDArray<SkDrawCommand*>& commands = debugCanvas.getDrawCommands(); local
62 for (int i = 0; i < commands.count(); ++i) {
68 if (SAVE_LAYER == commands[i]->getType() && commands.count() > i+2) {
69 if (DRAW_BITMAP_RECT_TO_RECT == commands[i+1]->getType() &&
70 RESTORE == commands[i+2]->getType()) {
71 SaveLayer* sl = (SaveLayer*) commands[i];
72 DrawBitmapRect* dbmr = (DrawBitmapRect*) commands[i+1];
78 commands[i]->setVisible(false);
79 commands[
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp39 // First try to interpret the command in the UI and get the commands.
47 Vector<Editor::Command> commands; local
53 commands.append(command);
56 for (size_t i = 0; i < commands.size(); i++) {
57 if (!commands.at(i).execute())
89 // Only allow text insertion commands if the current node is editable.
/external/chromium/chrome/browser/sessions/
H A Dsession_backend_unittest.cc57 std::vector<SessionCommand*> commands; local
58 commands.push_back(CreateCommandFromData(data));
59 backend->AppendCommands(new SessionCommands(commands), false);
60 commands.clear();
65 backend->ReadLastSessionCommandsImpl(&commands);
67 ASSERT_EQ(1U, commands.size());
68 AssertCommandEqualsData(data, commands[0]);
70 STLDeleteElements(&commands);
74 backend->ReadLastSessionCommandsImpl(&commands);
76 ASSERT_EQ(0U, commands
104 std::vector<SessionCommand*> commands; local
129 std::vector<SessionCommand*> commands; local
169 std::vector<SessionCommand*> commands; local
182 std::vector<SessionCommand*> commands; local
[all...]
H A Dbase_session_service.h68 // The commands. The backend fills this in for us.
69 std::vector<SessionCommand*> commands; member in class:BaseSessionService::InternalGetCommandsRequest
89 // Returns the set of commands that needed to be scheduled. The commands
91 // on the backend at which point the backend owns the commands.
100 // Returns the number of commands sent down since the last reset.
111 // Saves pending commands to the backend. This is invoked from the timer
184 // over the commands.
187 // The number of commands sent to the backend before doing a reset.
H A Dsession_service_test_helper.cc24 const std::vector<SessionCommand*>& commands,
26 service()->RestoreSessionFromCommands(commands, valid_windows);
23 RestoreSessionFromCommands( const std::vector<SessionCommand*>& commands, std::vector<SessionWindow*>* valid_windows) argument
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAOptimizedMultipleCommand.java18 private final PCommand[] commands; field in class:AOptimizedMultipleCommand
22 commands = new PCommand[originalChildCommands.size()];
23 originalChildCommands.toArray(commands);
24 for (int i = 0; i < commands.length; i++) {
25 commands[i].parent(this); // set parent.
45 for (int i = 0; i < commands.length; i++) {
46 if (commands[i] == oldChild) {
47 commands[i] = (PCommand) newChild;
58 for (int i = 0; i < commands.length; i++) {
59 commands[
[all...]
/external/webkit/Tools/wx/packaging/
H A Dbuild-win-installer.py29 import commands namespace
/external/chromium/chrome/browser/ui/webui/options/
H A Dadvanced_options_utils_gtk.cc39 // Search $PATH to find one of the commands. Store the full path to
41 bool SearchPATH(ProxyConfigCommand* commands, size_t ncommands, size_t* index) { argument
48 // Search $PATH looking for the commands in order.
51 bin_path = FilePath(tk.token()).Append(commands[i].argv[0]);
53 commands[i].binary = bin_path.value();
105 ProxyConfigCommand commands[2]; local
106 commands[0].argv = kGNOMEProxyConfigCommand;
107 commands[1].argv = kOldGNOMEProxyConfigCommand;
108 found_command = SearchPATH(commands, 2, &index);
110 command = commands[inde
[all...]
/external/chromium/net/base/
H A Dcookie_monster_store_test.h36 // received commands and saves them to a list.
50 const CommandList& commands() const { function in class:net::MockPersistentCookieStore
/external/clang/tools/scan-view/
H A Dstartfile.py110 import commands namespace
125 info = commands.getoutput('kde-config --version')
158 info = commands.getoutput('xprop -root _DT_SAVE_MODE')
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_parser.y135 commands: label
137 commands command SEMICOLON
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dirc_command.py103 return "%s: Available commands: %s" % (nick, ", ".join(commands.keys()))
139 commands = { variable
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmain.py47 from webkitpy.tool import commands namespace
78 # FIXME: This may be unnecessary since we pass global options to all commands during execute() as well.
/external/webkit/Tools/wx/build/
H A Dbuild_utils.py26 import commands namespace
44 return commands.getoutput(command)
160 branches = commands.getoutput("git branch --no-color")
180 info = commands.getoutput("git-svn info ../..")
182 info = commands.getoutput("svn info")
H A Dsettings.py26 import commands namespace
49 wx_root = commands.getoutput('wx-config --prefix')
312 min_version = commands.getoutput('sw_vers -productVersion')[:4]
/external/chromium/chrome/browser/ui/gtk/
H A Dglobal_menu_bar.cc55 // TODO(erg): Need to add support for undo/redo/other editing commands that
192 GlobalMenuBarCommand* commands) {
194 for (int i = 0; commands[i].str_id != MENU_END; ++i) {
196 if (commands[i].str_id == MENU_SEPARATOR) {
199 int command_id = commands[i].command;
202 l10n_util::GetStringUTF8(commands[i].str_id));
190 BuildGtkMenuFrom(int menu_str_id, std::map<int, GtkWidget*>* id_to_menu_item, GlobalMenuBarCommand* commands) argument

Completed in 1812 milliseconds

123