Searched refs:plane (Results 1 - 11 of 11) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/sun/text/
H A DUCompactIntArray.java51 int plane = (index & PLANEMASK) >> PLANESHIFT;
52 if (!planeTouched[plane]) {
56 return values[plane][(indices[plane][index >> BLOCKSHIFT] & 0xFFFF)
71 int plane = (index & PLANEMASK) >> PLANESHIFT;
72 if (!planeTouched[plane]) {
73 initPlane(plane);
76 values[plane][index] = value;
77 blockTouched[plane][index >> BLOCKSHIFT] = true;
88 for (int plane
159 initPlane(int plane) argument
[all...]
/openjdk9/jdk/src/java.desktop/solaris/classes/sun/font/
H A DX11CNS11643.java34 private final int plane; field in class:X11CNS11643
35 public X11CNS11643 (int plane, String name) { argument
37 switch (plane) {
39 this.plane = 0; // CS1
43 this.plane = plane;
52 return new Encoder(this, plane);
56 return new Decoder(this, plane);
64 private int plane; field in class:X11CNS11643.Encoder
65 public Encoder(Charset cs, int plane) { argument
131 int plane; field in class:X11CNS11643.Decoder
133 Decoder(Charset cs, int plane) argument
[all...]
/openjdk9/jdk/make/src/classes/build/tools/charsetmapping/
H A DEUC_TW.java110 int plane = 0;
112 plane = ((e.bs >> 16) & 0xff) - 1;
113 if (plane >= 14)
114 plane = 7;
117 db[plane][e.bs] = e.cp;
122 suppFlag[e.bs] |= (1 << plane);
142 for (int plane = 0; plane < 8; plane++) {
143 out.format(" // Plane %d%n", plane);
[all...]
/openjdk9/jdk/make/gensrc/
H A DGensrcCharacterData.gmk52 $(eval $(call SetupCharacterData,CharacterData00, -plane 0, 11 4 1))
53 $(eval $(call SetupCharacterData,CharacterData01, -plane 1, 11 4 1))
54 $(eval $(call SetupCharacterData,CharacterData02, -plane 2, 11 4 1))
55 $(eval $(call SetupCharacterData,CharacterData0E, -plane 14, 11 4 1))
/openjdk9/jdk/make/src/classes/build/tools/generatecharacter/
H A DPropList.java40 public static PropList readSpecFile(File file, int plane) argument
43 return new PropList(file, plane);
57 private PropList(File file, int plane) throws IOException { argument
72 if ((start >> 16) != plane)
H A DSpecialCaseMap.java57 public static SpecialCaseMap[] readSpecFile(File file, int plane) throws FileNotFoundException { argument
71 if(item.getCharSource() >> 16 < plane) continue;
72 if(item.getCharSource() >> 16 > plane) break;
348 int plane = Integer.parseInt(args[1]);
349 spec = SpecialCaseMap.readSpecFile(file, plane);
H A DUnicodeSpec.java393 public static UnicodeSpec[] readSpecFile(File file, int plane) throws FileNotFoundException { argument
410 if (specPlane < plane) continue;
411 if (specPlane > plane) break;
761 int plane = Integer.parseInt(args[1]);
762 spec = UnicodeSpec.readSpecFile(file, plane);
H A DGenerateCharacter.java81 static int plane = 0; field in class:GenerateCharacter
318 int codePoint = plane<<16;
356 codePoint = (plane<<16) | k;
940 if (plane == 0 && bLatin1 == false) {
1742 else if (args[j].equals("-plane")) {
1744 FAIL("Plane number missing after -plane");
1747 plane = Integer.parseInt(args[++j]);
1749 if (plane > 0) {
1758 plane = 0;
1954 UnicodeSpec[] data = UnicodeSpec.readSpecFile(new File(UnicodeSpecFileName), plane);
[all...]
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-unicode-private.hh173 hb_codepoint_t plane = ch >> 16; local
174 if (likely (plane == 0))
195 switch (plane) {
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DCharacter.java7594 int plane = codePoint >>> 16;
7595 return plane < ((MAX_CODE_POINT + 1) >>> 16);
/openjdk9/jdk/src/java.desktop/share/native/common/java2d/opengl/J2D_GL/
H A Dgl.h820 GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation );
822 GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation );

Completed in 279 milliseconds