capabilities.php code details below
//Build $allcaps from role caps, overlay user’s $caps
$this->allcaps = array();
foreach($this->roles as $role => $value) {
$role = $wp_roles->get_role($role);
$this->allcaps = array_merge($this->allcaps, $role->capabilities);
}
$this->allcaps = array_merge($this->allcaps, $this->caps);
}