<?php
$myquery[\'tax_query\'] = array(
    \'relation\' => \'OR\',
        array(
            \'taxonomy\' => \'brands\',
            \'terms\' => array(\'ALL\'),
            \'field\' => \'slug\',
            \'operator\' => \'NOT_IN\'
            ),
        array(
            \'taxonomy\' => \'media\',
            \'terms\' => array(\'news\', \'events\'),
            \'field\' => \'slug\',
            \'operator\' => \'NOT_IN\'
            ),
        );
                                        query_posts($myquery);
if ( have_posts() ) : while ( have_posts() ) : the_post();?>
<div>
<php the-title(); ?>
</div>
<php endwhile; else: endif; ?>