/haiku/src/apps/mediaplayer/support/ |
H A D | Command.cpp | 16 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 D | Command.h | 17 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 D | CommandStack.h | 17 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 D | Command.cpp | 16 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 D | Command.h | 17 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 D | CommandStack.h | 19 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 D | CompoundCommand.h | 14 class CompoundCommand : public Command { 16 CompoundCommand(Command** commands, 31 Command** fCommands;
|
/haiku/src/bin/pkgman/ |
H A D | Command.cpp | 17 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 D | Command.h | 18 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 D | fssh.h | 29 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 D | RTF.cpp | 112 } 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 D | RTF.h | 21 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 D | Commands.h | 58 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 D | Protocol.h | 33 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 D | Manipulator.h | 18 class Command; variable 32 virtual Command* MouseUp(); 39 Command** _command); 43 Command** _command); 45 Command** _command);
|
H A D | ViewState.h | 15 class Command; variable 39 Command** _command); 49 virtual Command* MouseUp(); 56 Command** _command); 58 Command** _command);
|
H A D | Manipulator.cpp | 51 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 D | ViewState.cpp | 64 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 D | MultipleManipulatorState.h | 29 Command** _command); 38 virtual Command* MouseUp(); 43 Command** _command); 45 Command** _command);
|
/haiku/src/add-ons/print/drivers/pcl5/ |
H A D | PCL5_Protocol.txt | 8 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 D | xres.cpp | 543 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 D | TransformBox.h | 21 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 D | PathManipulator.h | 44 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 D | be.catkeys | 10 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 D | sdhci.cpp | 181 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 …]
|