Home | History | Annotate | Download | only in templates

Lines Matching refs:targetElement

911    * @param targetElement Element to check
918 XPathContext support, int targetElement, DTM dtm) throws TransformerException
923 targetElement, null, false, dtm);
933 * @param targetElement Element to check
940 XPathContext support, int targetElement) throws TransformerException
944 while(DTM.NULL != targetElement)
946 DTM dtm = support.getDTM(targetElement);
948 targetElement, null, false, dtm);
952 int parent = dtm.getParent(targetElement);
954 targetElement = parent;
956 targetElement = DTM.NULL;