Searched refs:newCommands (Results 1 – 1 of 1) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
D | AndroidNature.java | 195 ICommand[] newCommands = new ICommand[commands.length + 1]; in configureResourceManagerBuilder() local 196 System.arraycopy(commands, 0, newCommands, 1, commands.length); in configureResourceManagerBuilder() 199 newCommands[0] = command; in configureResourceManagerBuilder() 200 desc.setBuildSpec(newCommands); in configureResourceManagerBuilder() 239 ICommand[] newCommands = new ICommand[commands.length + 1]; in configurePreBuilder() local 240 System.arraycopy(commands, 0, newCommands, 0, index); in configurePreBuilder() 245 newCommands[index] = command; in configurePreBuilder() 248 System.arraycopy(commands, index, newCommands, index + 1, commands.length-index); in configurePreBuilder() 251 desc.setBuildSpec(newCommands); in configurePreBuilder() 267 ICommand[] newCommands = new ICommand[commands.length + 1]; in configureApkBuilder() local [all …]
|