Searched defs:el (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DElementChecker.java16 public boolean isNamespaceElement(Node el, String type, String ns); argument
H A DElementCheckerImpl.java8 public boolean isNamespaceElement(Node el, String type, String ns) { argument
9 if ((el == null) ||
10 ns!=el.getNamespaceURI() || !el.getLocalName().equals(type)){
H A DIdResolver.java237 public static int isElement(Element el, String id,Element[] els) { argument
238 if (!el.hasAttributes()) {
241 NamedNodeMap ns=el.getAttributes();
242 int elementIndex=names.indexOf(el.getNamespaceURI());
259 els[index]=el;
267 els[index]=el;
273 els[index]=el;
278 el.getAttribute("OriginalRequestID").equals(id) ||
279 el.getAttribute("RequestID").equals(id) ||
280 el
[all...]
H A DXMLUtils.java95 public static Element getNextElement(Node el) { argument
96 while ((el!=null) && (el.getNodeType()!=Node.ELEMENT_NODE)) {
97 el=el.getNextSibling();
99 return (Element)el;
126 Element el=(Element)rootNode;
127 if (el.hasAttributes()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPath.java56 LivenessPathElement el = get(j);
58 if (el.getObj() != null) {
59 Oop.printOopValueOn(el.getObj(), tty);
61 if (el.getField() != null) {
62 if (el.getObj() != null) {
65 tty.print(el.getField().getName());
85 void push(LivenessPathElement el) { argument
86 stack.push(el);
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLDecoder.java154 * @param el the exception handler for the parser,
161 private XMLDecoder(InputSource is, Object owner, ExceptionListener el, ClassLoader cl) { argument
164 setExceptionListener(el);
291 * @param el the exception handler for the parser,
299 public static DefaultHandler createHandler(Object owner, ExceptionListener el, ClassLoader cl) { argument
302 handler.setExceptionListener(el);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DJCEMapper.java284 * @param el
286 public Algorithm(Element el) { argument
287 requiredKey = el.getAttribute("RequiredKey");
288 jceName = el.getAttribute("JCEName");
289 algorithmClass = el.getAttribute("AlgorithmClass");
290 if (el.hasAttribute("KeyLength")) {
291 keyLength = Integer.parseInt(el.getAttribute("KeyLength"));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementImpl.java1131 // @param el The element from which to take the attributes
1132 void moveSpecifiedAttributes(ElementImpl el) { argument
1136 if (el.hasAttributes()) {
1140 attributes.moveSpecifiedAttributes(el.attributes);
H A DNodeImpl.java1607 String lookupNamespacePrefix(String namespaceURI, ElementImpl el){ argument
1615 String foundNamespace = el.lookupNamespaceURI(prefix);
1637 String foundNamespace = el.lookupNamespaceURI(localname);
1650 return ancestor.lookupNamespacePrefix(namespaceURI, el);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizerBase.java587 * Adds to ns the definitons from the parent elements of el
588 * @param el
591 final void getParentNameSpaces(Element el,NameSpaceSymbTable ns) { argument
593 Node n1=el.getParentNode();
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java154 public void examineElement(Element el) argument
156 AttributeSet a = el.getAttributes();
191 int el_count = el.getElementCount();
193 examineElement(el.getElement(el_idx));
648 public void writeParagraphElement(Element el) argument
651 updateParagraphAttributes(outputAttributes, el.getAttributes(), true);
653 int sub_count = el.getElementCount();
655 writeTextElement(el.getElement(idx));
785 public void writeTextElement(Element el) argument
788 updateCharacterAttributes(outputAttributes, el
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMultiDOM.java459 public int getAttributeNode(final int type, final int el) { argument
460 if (el == DTM.NULL) {
463 return _adapters[el >>> DTMManager.IDENT_DTM_NODE_BITS].getAttributeNode(type, el);
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp85 const Type* el = elemtype->make_ptr(); local
86 if (el && el->isa_instptr()) {
87 const TypeInstPtr* toop = el->is_instptr();
91 elemtype = subklass->join(el);
H A Dtype.cpp3879 const Type* el = elem(); local
3880 if (el->isa_narrowoop()) {
3881 el = el->make_ptr();
3885 if ((tinst = el->isa_instptr()) != NULL) {
3888 } else if ((tary = el->isa_aryptr()) != NULL) {
3894 } else if ((el->base() == Type::Top) ||
3895 (el->base() == Type::Bottom)) {
3903 if (verify && el->isa_int()) {
3906 if (el
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp617 vframeArrayElement* el = cur_array->element(i); variable
618 frame* iframe = el->iframe();
718 vframeArrayElement* el = cur_array->element(k); variable
719 tty->print_cr(" %s (bci %d)", el->method()->name_and_sig_as_C_string(), el->bci());

Completed in 97 milliseconds