Searched defs:categories (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DServiceRegistry.java47 * <p> Service providers are stored in one or more <i>categories</i>,
50 * The set of categories may be changed dynamically.
106 * set of categories taken from the <code>categories</code>
109 * @param categories an <code>Iterator</code> containing
110 * <code>Class</code> objects to be used to define categories.
113 * <code>categories</code> is <code>null</code>.
115 public ServiceRegistry(Iterator<Class<?>> categories) { argument
116 if (categories == null) {
117 throw new IllegalArgumentException("categories
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFramework.java84 public List<Category> categories; field in class:Framework
113 categories = new ArrayList<Category>();
194 Utils.list(new ArrayList<Clazz>(classes), structs, cfTypes, opaques, categories);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java104 * The number of character categories (and, thus, the number of columns in
110 * A temporary holding place used for calculating the character categories.
113 protected Vector categories = null; field in class:RuleBasedBreakIteratorBuilder
117 * categories, rather than having to figure them out from scratch each time
621 categories = new Vector();
623 categories.addElement(ignoreChars);
626 categories.addElement(new CharSet());
630 // this is a hook to allow subclasses to add categories on their own
633 // Derive the character categories. Go through the existing character categories
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java586 private final static Hashtable categories = new Hashtable(); field in class:Token
736 if (Token.categories.size() == 0) {
737 synchronized (Token.categories) {
815 Token.categories.put(Token.categoryNames[i], ranges[i]);
847 Token.categories.put(n, r1);
866 Token.categories.put("ALL", all);
876 Token.categories.put("IsAlpha", isalpha);
883 Token.categories.put("IsAlnum", isalnum);
890 Token.categories.put("IsSpace", isspace);
897 Token.categories
[all...]

Completed in 56 milliseconds