Lines Matching full:para
11160 * location path .//para is short for
11161 * self::node()/descendant-or-self::node()/child::para
11162 * and so will select all para descendant elements of the context
11366 * //para is short for /descendant-or-self::node()/child::para and
11367 * so will select any para element in the document (even a para element
11368 * that is a document element will be selected by //para since the
11369 * document element node is a child of the root node); div//para is
11370 * short for div/descendant-or-self::node()/child::para and so will
11371 * select all para descendants of div children.