Home | History | Annotate | Download | only in generators

Lines Matching refs:platforms

184 			//Retrieve the different platforms and their info
633 PlatformStatus[] platforms = anErrorTracker.getPlatforms(types[i]);
634 String replaceString = processDropRows(platforms);
653 PlatformStatus[] platforms = anErrorTracker.getPlatforms(types[i]);
655 String replaceString = processPlatformDropRows(platforms, desiredPlatform);
671 //Process drop rows specific to each of the platforms
672 protected String processPlatformDropRows(PlatformStatus[] platforms, String name) {
676 for (int i = 0; i < platforms.length; i++) {
679 if(platforms[i].getName().startsWith(name.substring(0, 3)) || platforms[i].getName().equals("All")) {
680 result = result + processDropRow(platforms[i]);
683 //If the platform description indicates "All Other Platforms", process
685 else if(platforms[i].getName().equals("All Other Platforms") && !found)
689 if (platforms[i].hasErrors()) {
709 result = result + "<td><?php genLinks($_SERVER[\"SERVER_NAME\"],\"@buildlabel@\",\"" + platforms[i].getFileName() +"\"); ?></td>\n";
717 protected String processDropRows(PlatformStatus[] platforms) {
720 for (int i = 0; i < platforms.length; i++) {
721 result = result + processDropRow(platforms[i]);