The DelayWithFeedback Sound has both feedforward and feedback paths around the delay.
When Comb is selected, the feedforward coefficient is set to zero and the feedback coefficient is set to the value in the Feedback parameter; this means that the output of the Comb first occurs after the input has passed through the delay. The output of the delay is scaled by Feedback on the way back into the delay, resulting in an exponentially decreasing set of echos. For example, if Feedback is 0.5, the output echoes will have amplitude levels of 0.5, 0.25, 0.125, 0.0625... If Feedback is 0.9, the output echoes have amplitude levels of 0.9, 0.81, 0.729, 0.6561...
When Allpass is selected, the feedback coefficient is set to the value in the Feedback parameter and the feedforward coefficent is set to negative the value of the Feedback parameter; this means that the output of the Allpass occurs simultaneous with its input. The output of the delay is scaled by Feedback on its way back into the delay (exactly like in the Comb case), that value is scaled by -Feedback and combined with the original output of the delay to make up the output of the DelayWithFeedback. This means that the echos are quieter since they are scaled by (1 - Feedback**2). For example, if Feedback is 0.5, there will be an immediate output of the input scaled by -0.5, followed by echoes with amplitude levels of 0.75, 0.375, 0.1875, 0.09375... If Feedback is 0.9, there will be an immediate output of the input scaled by -0.9, followed by echoes with amplitude levels of 0.19, 0.171, 0.1539, 0.13851...