Home
last modified time | relevance | path

Searched refs:Command (Results 1 – 25 of 167) sorted by relevance

1234567

/haiku/src/apps/mediaplayer/support/
H A DCommand.cpp16 Command::Command() in Command() function in Command
22 Command::~Command() in ~Command()
28 Command::InitCheck() in InitCheck()
35 Command::Perform() in Perform()
42 Command::Undo() in Undo()
49 Command::Redo() in Redo()
56 Command::GetName(BString& name) in GetName()
63 Command::UndoesPrevious(const Command* previous) in UndoesPrevious()
70 Command::CombineWithNext(const Command* next) in CombineWithNext()
77 Command::CombineWithPrevious(const Command* previous) in CombineWithPrevious()
[all …]
H A DCommand.h17 class Command {
19 Command();
20 virtual ~Command();
30 virtual bool UndoesPrevious(const Command* previous);
31 virtual bool CombineWithNext(const Command* next);
32 virtual bool CombineWithPrevious(const Command* previous);
H A DCommandStack.h17 class Command; variable
24 status_t Perform(Command* command);
37 status_t _AddCommand(Command* command);
41 typedef std::stack<Command*> command_stack;
45 Command* fSavedCommand;
/haiku/src/apps/icon-o-matic/generic/command/
H A DCommand.cpp16 Command::Command() in Command() function in Command
22 Command::~Command() in ~Command()
28 Command::InitCheck() in InitCheck()
35 Command::Perform() in Perform()
42 Command::Undo() in Undo()
49 Command::Redo() in Redo()
56 Command::GetName(BString& name) in GetName()
63 Command::UndoesPrevious(const Command* previous) in UndoesPrevious()
70 Command::CombineWithNext(const Command* next) in CombineWithNext()
77 Command::CombineWithPrevious(const Command* previous) in CombineWithPrevious()
H A DCommand.h17 class Command {
19 Command();
20 virtual ~Command();
30 virtual bool UndoesPrevious(const Command* previous);
31 virtual bool CombineWithNext(const Command* next);
32 virtual bool CombineWithPrevious(const Command* previous);
H A DCommandStack.h19 class Command; variable
27 status_t Perform(Command* command);
40 status_t _AddCommand(Command* command);
42 typedef std::stack<Command*> command_stack;
46 Command* fSavedCommand;
H A DCompoundCommand.h14 class CompoundCommand : public Command {
16 CompoundCommand(Command** commands,
31 Command** fCommands;
/haiku/src/bin/pkgman/
H A DCommand.cpp17 compare_commands_by_name(const Command* a, const Command* b) in compare_commands_by_name()
26 Command::Command(const BString& name, const BString& shortUsage, in Command() function in Command
40 Command::~Command() in ~Command()
46 Command::Init(const char* programName) in Init()
54 Command::PrintUsage(bool error) const in PrintUsage()
61 Command::PrintUsageAndExit(bool error) const in PrintUsageAndExit()
80 CommandManager::RegisterCommand(Command* command) in RegisterCommand()
89 for (int32 i = 0; Command* command = fCommands.ItemAt(i); i++) in InitCommands()
99 for (int32 i = 0; Command* command = fCommands.ItemAt(i); i++) { in GetCommands()
110 for (int32 i = 0; Command* command = fCommands.ItemAt(i); i++) { in GetCommandsForCategory()
H A DCommand.h18 class Command {
20 Command(const BString& name,
24 virtual ~Command();
49 typedef BObjectList<Command> CommandList;
56 void RegisterCommand(Command* command);
84 struct className : Command { \
87 Command(name, shortUsage, longUsage, category) \
/haiku/src/tools/fs_shell/
H A Dfssh.h29 class Command {
31 Command(const char* name,
33 Command(command_function* function,
35 virtual ~Command();
57 void AddCommand(Command* command);
63 Command* FindCommand(const char* name) const;
67 typedef std::map<std::string, Command*> CommandMap;
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp112 } else if (RTF::Command *command = dynamic_cast<RTF::Command *>(&element)) { in dump()
188 parent->AddElement(element = new Command()); in Parse()
358 Command *
370 if (Command *command = dynamic_cast<Command *>(element)) { in FindDefinition()
389 Command *command = dynamic_cast<Command *>(group->ElementAt(0)); in FindGroup()
401 Command *command = dynamic_cast<Command *>(ElementAt(0)); in Name()
463 Command *command = new Command(); in Parse()
481 Command *command = dynamic_cast<Command *>(ElementAt(1)); in Charset()
497 if (Command *gun = colorTable->FindDefinition("red", index)) in Color()
499 if (Command *gun = colorTable->FindDefinition("green", index)) in Color()
[all …]
H A DRTF.h21 class Command; variable
74 Command *FindDefinition(const char *name, int32 index = 0) const;
122 class Command : public Element {
124 Command();
125 virtual ~Command();
171 virtual void Command(RTF::Command *command);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.h58 class Command {
60 virtual ~Command();
67 class RawCommand : public Command {
78 class LoginCommand : public Command, public Handler {
95 class SelectCommand : public Command, public Handler {
114 class CapabilityHandler : public Command, public Handler {
126 class FetchMessageEntriesCommand : public Command, public Handler {
160 class FetchCommand : public Command, public Handler,
184 class SetFlagsCommand : public Command, public Handler {
240 class ExpungeCommand : public Command {
[all …]
H A DProtocol.h33 class Command; variable
38 typedef std::map<int32, Command*> CommandIDMap;
82 status_t ProcessCommand(Command& command,
91 status_t HandleResponse(Command* command,
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DManipulator.h18 class Command; variable
32 virtual Command* MouseUp();
39 Command** _command);
43 Command** _command);
45 Command** _command);
H A DViewState.h15 class Command; variable
39 Command** _command);
49 virtual Command* MouseUp();
56 Command** _command);
58 Command** _command);
H A DManipulator.cpp51 Command*
81 Manipulator::MessageReceived(BMessage* message, Command** _command) in MessageReceived()
96 Manipulator::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command) in HandleKeyDown()
103 Manipulator::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command) in HandleKeyUp()
H A DViewState.cpp64 ViewState::MessageReceived(BMessage* message, Command** _command) in MessageReceived()
84 Command*
100 ViewState::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command) in HandleKeyDown()
107 ViewState::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command) in HandleKeyUp()
H A DMultipleManipulatorState.h29 Command** _command);
38 virtual Command* MouseUp();
43 Command** _command);
45 Command** _command);
/haiku/src/add-ons/print/drivers/pcl5/
H A DPCL5_Protocol.txt8 Page Size Command
12 Logical Page Size Command
16 Clear Horizontal Margins Command
19 Top Margin Command
26 Horizontal Cursor Positioning (PCL Units) Command
29 Vertical Cursor Positioning (PCL Units) Command
32 Perforation Skip Command
39 Print Direction Command
42 Job Separation Command
47 Simple Color Command
/haiku/src/bin/
H A Dxres.cpp543 struct Command { struct
544 Command() in Command() function
548 virtual ~Command() in ~Command() argument
557 struct SetOutputCommand : Command {
560 Command(), in SetOutputCommand()
576 struct ProcessInputCommand : Command {
579 Command(), in ProcessInputCommand()
595 struct SetResourcePatternCommand : Command {
598 Command(), in SetResourcePatternCommand()
619 struct AddResourceCommand : Command {
[all …]
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.h21 class Command; variable
47 virtual Command* MouseUp();
56 uint32 modifiers, Command** _command);
58 uint32 modifiers, Command** _command);
74 Command* FinishTransaction();
79 Command* FinishNudging();
/haiku/src/apps/icon-o-matic/shape/
H A DPathManipulator.h44 virtual Command* MouseUp();
54 Command** _command);
58 Command** _command);
60 Command** _command);
113 Command* _Delete();
140 Command* _FinishNudging();
/haiku/data/catalogs/preferences/keymap/
H A Dbe.catkeys10 Win/Cmd key Modifier keys window Label of the \"Windows\" key (PC)/Command key (Mac) Клавіша Win/Cmd
11 Command: Modifier keys window Command key role name Command:
43 Command Keyboard Layout View Command key Каманда:
/haiku/src/add-ons/kernel/busses/mmc/
H A Dsdhci.cpp181 replyType = Command::kNoReplyType; in ExecuteCommand()
185 replyType = Command::kR2Type; in ExecuteCommand()
188 replyType = Command::kR6Type; in ExecuteCommand()
192 replyType = Command::kR1bType; in ExecuteCommand()
195 replyType = Command::kR7Type; in ExecuteCommand()
201 replyType = Command::kR1Type | Command::kDataPresent; in ExecuteCommand()
207 replyType = Command::kR1Type; in ExecuteCommand()
210 replyType = Command::kR3Type; in ExecuteCommand()
218 if ((replyType & Command::k32BitResponseCheckBusy) != 0 in ExecuteCommand()
229 if (replyType == Command::kR1bType) in ExecuteCommand()
[all …]

1234567