Searched refs:attrs (Results 176 - 200 of 312) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDHTMarkerSegment.java179 NamedNodeMap attrs = node.getAttributes();
180 int count = attrs.getLength();
185 tableClass = getAttributeValue(node, attrs, "class", 0, 1, true);
186 tableID = getAttributeValue(node, attrs, "htableId", 0, 3, true);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStAXEventConnector.java66 private final AttributesImpl attrs = new AttributesImpl(); field in class:StAXEventConnector
259 attrs.clear();
265 // gather non-namespace attrs
281 attrs.addAttribute(uri, localName, qName, type, value);
284 return attrs;
/openjdk7/jdk/test/javax/management/modelmbean/ModelMBeanInfoSupport/
H A DGetAllDescriptorsTest.java161 ModelMBeanAttributeInfo[] attrs =
192 attrs, null, opers, null,
263 final MBeanAttributeInfo[] attrs = modelMBeanInfo.getAttributes();
264 for (MBeanAttributeInfo att : attrs) {
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dmm.js265 var attrs = info.attributes;
267 for (var index in attrs) {
268 attrMap[attrs[index].name] = attrs[index];
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DRdn.java134 NamingEnumeration attrs = attrSet.getAll();
136 for (int nEntries = 0; attrs.hasMore(); nEntries++) {
138 Attribute attr = (Attribute) attrs.next();
409 Attributes attrs = new BasicAttributes(true);
412 Attribute attr = attrs.put(entry.getType(), entry.getValue());
415 attrs.put(attr);
418 return attrs;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java196 String rawName, Attributes attrs )
279 if ( attrs != null ) {
280 for ( i = 0 ; i < attrs.getLength() ; ++i ) {
282 name = attrs.getQName( i ).toLowerCase(Locale.ENGLISH);
283 value = attrs.getValue( i );
477 public void startElement( String tagName, AttributeList attrs )
531 if ( attrs != null ) {
532 for ( i = 0 ; i < attrs.getLength() ; ++i ) {
534 name = attrs.getName( i ).toLowerCase(Locale.ENGLISH);
535 value = attrs
[all...]
H A DXMLSerializer.java217 String rawName, Attributes attrs )
268 attrs = extractNamespaces(attrs);
296 if (attrs != null) {
297 for (i = 0 ; i < attrs.getLength() ; ++i) {
300 name = attrs.getQName( i );
305 name = attrs.getLocalName( i );
306 attrURI = attrs.getURI( i );
316 value = attrs.getValue( i );
427 public void startElement( String tagName, AttributeList attrs )
[all...]
H A DTextSerializer.java90 String rawName, Attributes attrs )
110 public void startElement( String tagName, AttributeList attrs )
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java210 // result will contain the attrs which have to be outputted
213 NamedNodeMap attrs = E.getAttributes();
214 int attrsLength = attrs.getLength();
217 Attr N = (Attr) attrs.item(i);
276 // result will contain the attrs which have to be output
279 NamedNodeMap attrs = null;
282 attrs = E.getAttributes();
283 attrsLength = attrs.getLength();
290 Attr N = (Attr) attrs.item(i);
423 NamedNodeMap attrs
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintServiceLookup.java329 Attribute [] attrs = attributes.toArray();
331 for (int i=0; i<attrs.length; i++) {
333 = service.getAttribute((Class<PrintServiceAttribute>)attrs[i].getCategory());
334 if (serviceAttr == null || !serviceAttr.equals(attrs[i])) {
481 Attribute[] attrs = attributes.toArray();
482 for (int i=0; i<attrs.length; i++) {
483 if (attrs[i] instanceof PrintRequestAttribute) {
484 requestSet.add(attrs[i]);
485 } else if (attrs[i] instanceof PrintServiceAttribute) {
486 serviceSet.add(attrs[
[all...]
H A DUnixPrintJob.java684 Attribute[] attrs;
687 attrs = reqSet.toArray();
688 for (int i=0; i<attrs.length; i++) {
689 if (attrs[i] instanceof PrintJobAttribute) {
690 jobAttrSet.add(attrs[i]);
697 attrs = docSet.toArray();
698 for (int i=0; i<attrs.length; i++) {
699 if (attrs[i] instanceof PrintRequestAttribute) {
700 reqAttrSet.add(attrs[i]);
702 if (attrs[
[all...]
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java104 void test(String name, Descriptor desc, Attributes attrs, ConstantPool cp) argument
106 AnnotValues d = getDescValue(attrs, cp);
107 AnnotValues s = getSigValue(attrs, cp);
120 Signature_attribute sa = (Signature_attribute) attrs.get(Attribute.Signature);
149 AnnotValues getDescValue(Attributes attrs, ConstantPool cp) throws Exception { argument
150 return getAnnotValues(Desc.class.getName(), attrs, cp);
153 AnnotValues getSigValue(Attributes attrs, ConstantPool cp) throws Exception { argument
154 return getAnnotValues(Sig.class.getName(), attrs, cp);
166 AnnotValues getAnnotValues(String annotName, Attributes attrs, ConstantPool cp) argument
169 (RuntimeInvisibleAnnotations_attribute)attrs
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXStream2SAX.java335 Attributes attrs = getAttributes();
340 attrs);
353 AttributesImpl attrs = new AttributesImpl();
366 // gather non-namespace attrs
380 attrs.addAttribute(uri, localName, qName, type, value);
383 return attrs;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_DrawingSurface.c207 XWindowAttributes attrs; local
272 XGetWindowAttributes(awt_display, (Window)(px->drawable), &attrs);
275 px->visualID = XVisualIDFromVisual(attrs.visual);
276 px->colormapID = attrs.colormap;
277 px->depth = attrs.depth;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java121 WindowsFileAttributes attrs =
124 if (!attrs.isSymbolicLink()) {
359 WindowsFileAttributes attrs = null;
361 attrs = WindowsFileAttributes.get(current, false);
373 if (attrs.isSymbolicLink()) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DInternationalFormatter.java355 Map<Attribute, Object> attrs = getAttributes(offset);
357 if (attrs != null && attrs.size() > 0) {
360 al.addAll(attrs.keySet());
594 AttributeSet attrs) throws BadLocationException {
596 fb.replace(offset, length, text, attrs);
599 super.replace(fb, offset, length, text, attrs);
953 AttributeSet attrs) {
957 return super.getReplaceHolder(fb, offset, length, text, attrs);
592 replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
951 getReplaceHolder(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
/openjdk7/jdk/test/java/awt/print/PrinterJob/ImagePrinting/
H A DClippedImages.java119 PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();
120 if (pj != null && (false||pj.printDialog(attrs))) {
124 pj.print(attrs);
136 PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();
137 if (pj != null && (false||pj.printDialog(attrs))) {
141 pj.print(attrs);
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java248 public void createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs) argument
251 Files.createSymbolicLink(unwrap(link), unwrap(target), attrs);
311 public void createDirectory(Path dir, FileAttribute<?>... attrs) argument
314 Files.createDirectory(unwrap(dir), attrs);
320 FileAttribute<?>... attrs)
323 return Files.newByteChannel(unwrap(file), options, attrs);
318 newByteChannel(Path file, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintService.java146 PrintServiceAttributeSet attrs = new HashPrintServiceAttributeSet();
147 attrs.add(ColorSupported.SUPPORTED);
149 return AttributeSetUtilities.unmodifiableView(attrs);
459 Attribute[] attrs = attributes.toArray();
460 for (int i=0; i<attrs.length; i++) {
462 attr = attrs[i];
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java92 public FileVisitResult preVisitDirectory(Path path, BasicFileAttributes attrs) argument
95 // TODO remove attrs, if path is matched in this dir, then it is too in every subdir.
119 return super.preVisitDirectory(path, attrs);
H A DFileTreeCreatorVC7.java103 public FileVisitResult preVisitDirectory(Path path, BasicFileAttributes attrs) argument
133 return super.preVisitDirectory(path, attrs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java402 private Attribute attrs; field in class:ClassWriter
677 attr.next = attrs;
678 attrs = attr;
801 if (attrs != null) {
802 attributeCount += attrs.getCount();
803 size += attrs.getSize(this, null, 0, -1, -1);
865 if (attrs != null) {
866 attrs.put(this, null, 0, -1, -1, out);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DerSet.java67 public void enterElement(String $__uri, String $__local, String $__qname, Attributes $attrs) throws SAXException { argument
75 revertToParentFromEnterElement(makeResult(), super._cookie, $__uri, $__local, $__qname, $attrs);
H A DersSet.java67 public void enterElement(String $__uri, String $__local, String $__qname, Attributes $attrs) throws SAXException { argument
75 revertToParentFromEnterElement(makeResult(), super._cookie, $__uri, $__local, $__qname, $attrs);
H A DforeignAttributes.java68 public void enterElement(String $__uri, String $__local, String $__qname, Attributes $attrs) throws SAXException { argument
76 revertToParentFromEnterElement(makeResult(), super._cookie, $__uri, $__local, $__qname, $attrs);

Completed in 69 milliseconds

1234567891011>>