Searched refs:getLayoutFlags (Results 1 - 9 of 9) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DTextSource.java59 public abstract int getLayoutFlags(); method in class:TextSource
H A DStandardTextSource.java141 public int getLayoutFlags() { method in class:StandardTextSource
H A DTextSourceLabel.java161 int flags = source.getLayoutFlags();
H A DExtendedTextSourceLabel.java254 boolean lineIsLTR = (source.getLayoutFlags() & 0x8) == 0;
323 int flags = source.getLayoutFlags();
460 if ((source.getLayoutFlags() & 0x1) != 0) {
530 //if (!(source.getLayoutFlags() & 0x1) == 0) {
666 boolean rtl = (source.getLayoutFlags() & 0x1) == 1;
850 return (source.getLayoutFlags() & 0x1) == 0 ? index : source.getLength() - 1 - index;
859 return (source.getLayoutFlags() & 0x1) == 0 ? index : source.getLength() - 1 - index;
941 boolean ltr = (source.getLayoutFlags() & 0x1) == 0;
H A DStandardGlyphVector.java341 if ((getLayoutFlags() & FLAG_RUN_RTL) != 0) {
357 if ((getLayoutFlags() & FLAG_RUN_RTL) != 0) {
491 public int getLayoutFlags() { method in class:StandardGlyphVector
912 (getLayoutFlags() & FLAG_HAS_POSITION_ADJUSTMENTS) != 0 ||
1060 this.flags = gv.getLayoutFlags() & FLAG_MASK;
1264 * A flag used with getLayoutFlags that indicates whether this {@code GlyphVector} uses
1270 * A flag used with getLayoutFlags that indicates whether this {@code GlyphVector} uses
1277 * A flag used with getLayoutFlags that indicates whether this {@code GlyphVector} uses
1344 flags = getLayoutFlags() | newflags;
1351 flags = getLayoutFlags()
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/font/
H A DGlyphVector.java424 public int getLayoutFlags() { method in class:GlyphVector
429 * A flag used with getLayoutFlags that indicates that this {@code GlyphVector} has
436 * A flag used with getLayoutFlags that indicates that this {@code GlyphVector} has
444 * A flag used with getLayoutFlags that indicates that this {@code GlyphVector} has
453 * A flag used with getLayoutFlags that indicates that this {@code GlyphVector} has
461 * A mask for supported flags from getLayoutFlags. Only bits covered by the mask
/openjdk9/jdk/test/java/awt/font/GlyphVector/
H A DTestLayoutFlags.java27 @summary exercise getLayoutFlags, getGlyphCharIndex, getGlyphCharIndices
104 int actualFlags = gv.getLayoutFlags() & gv.FLAG_MASK;
/openjdk9/jdk/src/java.desktop/share/classes/sun/print/
H A DPathGraphics.java686 int flags = g.getLayoutFlags();
/openjdk9/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWPathGraphics.java593 if ((gv.getLayoutFlags() & GlyphVector.FLAG_HAS_TRANSFORMS) != 0) {

Completed in 188 milliseconds