Searched refs:decomposition (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/
H A DComposedCharIter.java74 * Returns the Unicode decomposition of the current character.
75 * This method returns the decomposition of the precomposed character most
76 * recently returned by {@link #next}. The resulting decomposition is
79 public String decomposition() { method in class:ComposedCharIter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicyModelTranslator.java248 final ContentDecomposition decomposition = new ContentDecomposition();
259 decompose(processedContent, decomposition);
260 if (decomposition.exactlyOneContents.isEmpty()) {
261 final RawAlternative alternative = new RawAlternative(decomposition.assertions);
267 final Collection<Collection<ModelNode>> combinations = PolicyUtils.Collections.combine(decomposition.assertions, decomposition.exactlyOneContents, false);
294 private void decompose(final Collection<ModelNode> content, final ContentDecomposition decomposition) throws PolicyException { argument
295 decomposition.reset();
310 decomposition.exactlyOneContents.add(expandsExactlyOneContent(node.getChildren()));
313 decomposition
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUnicodeSpec.java223 * Parse the decomposition attribute for a Unicode character. If the parse succeeds,
224 * the decomposition field of this UnicodeSpec object is updated and false is returned.
226 * The decomposition attribute is complicated; for now, it is treated as a string.
228 * @param s the decomposition attribute extracted from a line of the Unicode data file
233 if (s==null) throw new Exception("Cannot parse decomposition.");
466 void setDecomposition(String decomposition) { argument
467 this.decomposition = decomposition;
471 return decomposition;
575 String decomposition; // no field in class:UnicodeSpec
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRBTableBuilder.java176 * collator can be used reasonably well with decomposition turned off.
192 // longest initial substring of the decomposition that is present
200 String s = iter.decomposition();
231 // that results from the decomposition, but if we have orders

Completed in 37 milliseconds