Searched refs:mCommands (Results 1 – 6 of 6) sorted by relevance
84 private final Queue<Command> mCommands = new ArrayDeque<>(); field in StateMachine161 final Command[] commands = new Command[mCommands.size()]; in getCommands()162 mCommands.toArray(commands); in getCommands()242 mCommands.add(Command.newCommit(newState)); in transit()244 mCommands.add(Command.newExit(newState)); in transit()245 mCommands.add(Command.newEnter(newState)); in transit()249 mCommands.add(Command.newExit(s)); in transit()257 mCommands.add(Command.newEnter(mTmp.get(i))); in transit()261 while (!mCommands.isEmpty()) { in transit()262 final Command cmd = mCommands.remove(); in transit()
38 private final TreeMap<String, ShellCommandActionHandler> mCommands = new TreeMap<>(); field in ShellCommandHandler79 mCommands.put(commandClass, actions); in addCommandCallback()105 if (!mCommands.containsKey(cmdClass)) { in handleCommand()110 final ShellCommandActionHandler actions = mCommands.get(args[1]); in handleCommand()118 for (String commandClass : mCommands.keySet()) { in runHelp()120 mCommands.get(commandClass).printShellCommandHelp(pw, " "); in runHelp()
41 private ArrayList<Command> mCommands = new ArrayList<Command>(); field in TextGraphReader163 mCommands.clear(); in reset()235 mCommands.add(new ImportPackageCommand(packageName)); in parseString()242 mCommands.add(new AddLibraryCommand(libraryName)); in parseString()254 mCommands.add(new AllocateFilterCommand(curClassName, curFilterName)); in parseString()266 mCommands.add(new InitFilterCommand(params)); in parseString()301 mCommands.add(new ConnectCommand(curSourceFilterName, in parseString()485 for (Command command : mCommands) { in executeCommands()
91 mCommands.push_back(cmd); in registerCmd()192 for (auto* c : mCommands) { in dispatchCommand()
36 std::vector<FrameworkCommand*> mCommands; variable
46 private ArrayList<Command> mCommands = new ArrayList<Command>(); field in GraphReader.CommandStack58 for (Command command : mCommands) { in execute()64 mCommands.add(command); in append()