Searched refs:category (Results 26 - 44 of 44) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedBreakIterator.java187 * characters in the corresponding Unicode category.  The two-letter codes are the same
193 * category code or a single letter that begins a Unicode category code is illegal within
225 * A token used as a character-category value to identify ignore characters
264 * Tables that indexes from character values to character category numbers
415 /* Read a category table and indices for BMP characters. */
425 /* Read a category table for non-BMP characters. */
918 int category;
924 // look up the current character's character category (which tells us
926 category
1035 lookupState(int state, int category) argument
1043 lookupBackwardState(int state, int category) argument
[all...]
H A DDictionaryBasedBreakIterator.java310 * Looks up a character category for a character.
342 int category = lookupCategory(c);
343 while (category == IGNORE || !categoryFlags[category]) {
345 category = lookupCategory(c);
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUnicodeSpec.java170 byte category = GENERAL_CATEGORY_COUNT;
174 category = x;
178 if (category >= GENERAL_CATEGORY_COUNT) {
179 throw new Exception("Could not parse general category.");
181 return category;
185 byte category = DIRECTIONALITY_CATEGORY_COUNT;
189 category = x;
193 if (category >= DIRECTIONALITY_CATEGORY_COUNT) {
194 throw new Exception("Could not parse bidi category.");
196 return category;
442 setGeneralCategory(byte category) argument
450 setBidiCategory(byte category) argument
[all...]
/openjdk7/jdk/test/demo/jvmti/
H A DHeapUser.java32 int category; field in class:Animal
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DFrameworkClassFile.java139 final String classClassName = cat.category.name + "Class";
140 out.println(JavaLang.makeSingleton("_" + classClassName, cat.category.name, classClassName, "getRuntime()"));
142 JLMethod jlm = new JLMethod("public", cat.category.name, cat.category.name, "final " + cat.category.superClass.getFullPath() + " obj");
143 jlm.body.add(new JLReturn(new JLCall("new " + cat.category.name, "obj", "getRuntime()")));
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java292 * Unicode category. The text is either a two-character code from
296 private static CharSet charSetForCategory(String category) { argument
299 if (category.length() == 0 || category.length() >= 3) {
300 throw new IllegalArgumentException("Invalid character category: " + category);
303 // if we have two characters, search the category map for that code
305 // category map or throw an exception
306 if (category.length() == 2) {
308 if (CharacterCategory.categoryNames[i].equals(category)) {
[all...]
H A DCharacterCategory.java42 * A list of Unicode category names.
76 * A array of Unicode code points for each category.
101 * Returns categoryMap for the given category.
103 static int[] getCategoryMap(int category) { argument
104 return categoryMap[category];
258 System.err.println("This should not happen. Unicode data which belongs to an undefined category exists");
291 String category = st.nextToken();
295 if (category.equals(categoryNames[index])) {
320 if (ignoredOld.indexOf(category) == -1) {
321 ignoredOld.append(category);
[all...]
H A DRuleBasedBreakIteratorBuilder.java64 * A token used as a character-category value to identify ignore characters
69 * Tables that indexes from character values to character category numbers
548 * This function builds the character category table. On entry,
551 * character category table, and tempRuleList's rules have been munged to contain
552 * character category numbers everywhere a literal character or a [] expression
620 // create the temporary category table (which is a vector of CharSet objects)
635 // category for the characters that overlapped and remove them from their original
636 // category. At the end, any characters that are left in the expression haven't
637 // been mentioned in any category, so another new category i
1915 lookupState(int state, int category) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java497 Class category;
508 category = attr.getCategory();
510 if (!service.isAttributeCategorySupported(category)) {
513 "unsupported category: " + category, category, null);
521 if (category == JobName.class) {
523 } else if (category == Copies.class) {
525 } else if (category == Media.class) {
531 } else if (category
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReaderSpi.java65 Class<?> category) {
64 onRegistration(ServiceRegistry registry, Class<?> category) argument
H A DBMPImageWriterSpi.java74 Class<?> category) {
73 onRegistration(ServiceRegistry registry, Class<?> category) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageWriterSpi.java71 Class<?> category) {
70 onRegistration(ServiceRegistry registry, Class<?> category) argument
H A DWBMPImageReaderSpi.java69 Class<?> category) {
68 onRegistration(ServiceRegistry registry, Class<?> category) argument
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java672 Class category;
676 category = attr.getCategory();
678 if (!service.isAttributeCategorySupported(category)) {
681 "unsupported category: " + category, category, null);
689 if (category == Destination.class) {
711 } else if (category == JobName.class) {
713 } else if (category == Copies.class) {
715 } else if (category
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DLocale.java756 * @param category - the specified category to get the default locale
757 * @throws NullPointerException - if category is null
763 public static Locale getDefault(Locale.Category category) { argument
766 switch (category) {
769 initDefault(category);
774 initDefault(category);
812 private static void initDefault(Locale.Category category) { argument
820 new GetPropertyAction(category.languageKey, defaultLocale.getLanguage())),
822 new GetPropertyAction(category
901 setDefault(Locale.Category category, Locale newLocale) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java757 Class category;
768 category = attr.getCategory();
770 if (!service.isAttributeCategorySupported(category)) {
773 "unsupported category: " + category, category, null);
781 if (category == Destination.class) {
804 } else if (category == JobSheets.class) {
808 } else if (category == JobName.class) {
810 } else if (category
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DidentityConstraint.java84 category = XSIdentityConstraint.KEY;
87 category = XSIdentityConstraint.KEYREF;
90 category = XSIdentityConstraint.UNIQUE;
584 private short category; field in class:identityConstraint
591 category,name,selector,fields,refer);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME48 Each category defines a number of different macros that are used by the
50 the images. The macros for each category are all implemented by a
52 for each category depending on the particular type of input or output
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java1197 public void reportError(final int category, final ErrorMsg error) { argument
1198 switch (category) {

Completed in 86 milliseconds

12