Home
last modified time | relevance | path

Searched refs:commands (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DAndroidNature.java177 ICommand[] commands = desc.getBuildSpec(); in configureResourceManagerBuilder() local
180 for (int i = 0; i < commands.length; ++i) { in configureResourceManagerBuilder()
181 if (ResourceManagerBuilder.ID.equals(commands[i].getBuilderName())) { in configureResourceManagerBuilder()
187 ICommand[] newCommands = new ICommand[commands.length + 1]; in configureResourceManagerBuilder()
188 System.arraycopy(commands, 0, newCommands, 1, commands.length); in configureResourceManagerBuilder()
206 ICommand[] commands = desc.getBuildSpec(); in configurePreBuilder() local
209 for (int i = 0; i < commands.length; ++i) { in configurePreBuilder()
210 if (PreCompilerBuilder.ID.equals(commands[i].getBuilderName())) { in configurePreBuilder()
218 for (int i = 0; i < commands.length; ++i) { in configurePreBuilder()
219 if (ResourceManagerBuilder.ID.equals(commands[i].getBuilderName())) { in configurePreBuilder()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DMessageQueue.java46 private ArrayList<Message> commands = new ArrayList<Message>(); // synchronized field in MessageQueue
75 synchronized (commands) { in sendCommands()
76 for (int i = 0; i < commands.size(); i++) { in sendCommands()
77 Message command = commands.get(i); in sendCommands()
79 sendMessage(commands.remove(i)); in sendCommands()
87 synchronized (commands) { in addCommand()
88 commands.add(command); in addCommand()