A loop would not be required if you linked them all to the same xml node. However, the code to loop would look something like this
Code:
Sub CCLoader()
Dim aCC As ContentControl
For Each aCC In ActiveDocument.ContentControls
If aCC.Title = "AccountName" Then
aCC.Range.Text = "hi mum"
End If
Next
End Sub