Searched refs:attrs (Results 226 - 250 of 312) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileAttributes.java335 WindowsFileAttributes attrs = fromFindData(buffer.address());
340 if (attrs.isReparsePoint())
342 return attrs;
H A DWindowsPath.java103 BasicFileAttributes attrs)
108 if (attrs == null) {
118 attrs);
147 BasicFileAttributes attrs)
150 ref = new WeakReference<BasicFileAttributes>(attrs);
101 createFromNormalizedPath(WindowsFileSystem fs, String path, BasicFileAttributes attrs) argument
143 WindowsPathWithAttributes(WindowsFileSystem fs, WindowsPathType type, String root, String path, BasicFileAttributes attrs) argument
/openjdk7/jdk/test/java/io/File/
H A DSymLinks.java116 BasicFileAttributes attrs =
118 assertTrue(attrs.isSymbolicLink());
119 return attrs.lastModifiedTime().toMillis();
/openjdk7/jdk/src/share/classes/sun/net/spi/nameservice/dns/
H A DDNSNameService.java169 Attributes attrs;
173 attrs = java.security.AccessController.doPrivileged(
184 NamingEnumeration<? extends Attribute> ne = attrs.getAll();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxWatchService.java239 UnixFileAttributes attrs = null;
241 attrs = UnixFileAttributes.get(dir, true);
245 if (!attrs.isDirectory()) {
H A DSolarisWatchService.java284 UnixFileAttributes attrs = null;
286 attrs = UnixFileAttributes.get(dir, true);
290 if (!attrs.isDirectory()) {
296 UnixFileKey fileKey = attrs.fileKey();
H A DSolarisUserDefinedFileAttributeView.java120 UnixFileAttributes attrs = UnixFileAttributes.get(afd);
121 long size = attrs.size();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTM.java146 NamedNodeMap attrs=m_root.getAttributes();
147 int attrsize=(attrs==null) ? 0 : attrs.getLength();
156 attrIndex=addNode(attrs.item(i),0,attrIndex,NULL);
159 // Terminate list of attrs, and make sure they aren't
164 } // if attrs exist
534 NamedNodeMap attrs=next.getAttributes();
535 int attrsize=(attrs==null) ? 0 : attrs.getLength();
543 attrIndex=addNode(attrs
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DSearchFilter.java436 public static String format(Attributes attrs) throws NamingException { argument
437 if (attrs == null || attrs.size() == 0) {
444 for (NamingEnumeration e = attrs.getAll(); e.hasMore(); ) {
643 Attributes attrs = new BasicAttributes(LdapClient.caseIgnore);
644 attrs.put("cn", "Rosanna Lee");
645 attrs.put("sn", "Lee");
646 attrs.put("fn", "Rosanna");
647 attrs.put("id", "10414");
648 attrs
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DWatchDir.java81 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs)
H A DChmod.java296 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) { argument
302 public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) { argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java647 * @param attrs the attributes
651 public AttributeSet removeAttributes(AttributeSet old, AttributeSet attrs) { argument
652 if (old != attrs) {
653 old = removeHTMLTags(old, attrs);
655 return super.removeAttributes(old, convertAttributeSet(attrs));
831 * @param attrs the set of attributes
833 public SmallConversionSet(AttributeSet attrs) { argument
834 super(attrs);
1418 AttributeSet[] attrs = new AttributeSet[numStyles + numLinkedSS];
1420 attrs[counte
2784 ResolvedStyle(String name, AttributeSet[] attrs, int extendedIndex) argument
[all...]
H A DFormView.java454 AttributeSet attrs = form.getAttributes();
458 String target = (String) attrs.getAttribute(HTML.Attribute.TARGET);
463 String method = (String) attrs.getAttribute(HTML.Attribute.METHOD);
473 String action = (String) attrs.getAttribute(HTML.Attribute.ACTION);
942 private AttributeSet attrs; field in class:FormView.BrowseFileAction
945 BrowseFileAction(AttributeSet attrs, Document model) { argument
946 this.attrs = attrs;
952 // accept value of attrs.
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1240 public abstract List<Attr> attrs(); method in class:Indify.Outer
1246 for (Attr a : attrs()) {
1418 public final List<Attr> attrs = new CountedList<>(Attr.class); field in class:Indify.ClassFile
1426 readInputs(in, interfaces, fields, methods, attrs);
1443 fields, methods, attrs);
1458 inns.addAll(fields); inns.addAll(methods); inns.addAll(attrs);
1461 public List<Attr> attrs() { return attrs; } method in class:Indify.ClassFile
1478 public final List<Attr> attrs = new CountedList<>(Attr.class); field in class:Indify.Member
1481 readInputs(in, attrs);
1487 public List<Attr> attrs() { return attrs; } method in class:Indify.Member
1559 public List<Attr> attrs() { return null; } // Code overrides this method in class:Indify.Attr
1594 public final List<Attr> attrs = new CountedList<>(Attr.class); field in class:Indify.Code
1605 public List<Attr> attrs() { return attrs; } method in class:Indify.Code
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractDocument.java644 * @param attrs AttributeSet indicating attributes of inserted text,
653 AttributeSet attrs) throws BadLocationException {
663 attrs);
670 insertString(offset, text, attrs);
1722 * @param attrs the attributes
1726 public AttributeSet removeAttributes(AttributeSet old, AttributeSet attrs); argument
1935 * @param attrs the attributes to check
1939 public boolean containsAttributes(AttributeSet attrs) { argument
1940 return attributes.containsAttributes(attrs);
2015 * @param attrs th
652 replace(int offset, int length, String text, AttributeSet attrs) argument
2018 removeAttributes(AttributeSet attrs) argument
3112 replace(int offset, int length, String text, AttributeSet attrs) argument
[all...]
H A DSimpleAttributeSet.java309 AttributeSet attrs = (AttributeSet) obj;
310 return isEqual(attrs);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java289 protected NameClassPair createItem(String dn, Attributes attrs, argument
296 if ((attr = attrs.get(Obj.JAVA_ATTRIBUTES[Obj.CLASSNAME])) != null) {
/openjdk7/jdk/src/macosx/native/apple/security/
H A DKeystoreImpl.m93 SecKeychainAttribute attrs[] = {
97 const SecKeychainAttributeList attributes = { sizeof(attrs) / sizeof(attrs[0]), attrs };
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DJavaLang.java140 public Set<String> attrs = new TreeSet<String>(); field in class:JavaLang.JLMethod
162 out.append("\t" + Fp.join(" ", attrs) + " " + Fp.join(" ", mods) + " " + type + " " + name + "(" + Fp.join(", ", args) + "){\n");
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DToken.java280 CK_ATTRIBUTE[] attrs) throws PKCS11Exception {
282 templateManager.getAttributes(op, type, alg, attrs);
279 getAttributes(String op, long type, long alg, CK_ATTRIBUTE[] attrs) argument
/openjdk7/jdk/test/javax/management/Introspector/
H A DAnnotationTest.java258 MBeanAttributeInfo[] attrs = mbi.getAttributes();
259 for (MBeanAttributeInfo attr : attrs) {
/openjdk7/jdk/test/javax/management/modelmbean/SimpleModelMBean/
H A DSimpleModelMBeanCommand.java162 ModelMBeanAttributeInfo[] attrs =
193 attrs, null, opers, null,
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java223 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs)
234 public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java375 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
384 public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
385 if (attrs.isRegularFile() && kinds.contains(getKind(file.getFileName().toString()))) {
530 BasicFileAttributes attrs = Files.readAttributes(path, BasicFileAttributes.class);
531 return attrs.isDirectory();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXEvent2SAX.java394 AttributesImpl attrs = new AttributesImpl();
405 // gather non-namespace attrs
424 attrs.addAttribute(uri, localName, qName, type, value);
427 return attrs;

Completed in 466 milliseconds

1234567891011>>