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

/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
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...]
/openjdk7/jdk/test/sun/nio/cs/
H A DX11CNS11643.java32 private final int plane; field in class:X11CNS11643
33 public X11CNS11643 (int plane, String name) { argument
35 switch (plane) {
37 this.plane = 0; // CS1
41 this.plane = plane;
50 return new Encoder(this, plane);
54 return new Decoder(this, plane);
62 private int plane; field in class:X11CNS11643.Encoder
63 public Encoder(Charset cs, int plane) { argument
120 Decoder(Charset cs, int plane) argument
[all...]
/openjdk7/jdk/make/tools/src/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...]
/openjdk7/jdk/make/tools/src/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((int)(item.getCharSource() >> 16) > plane) break;
343 int plane = Integer.parseInt(args[1]);
344 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;
753 int plane = Integer.parseInt(args[1]);
754 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;
932 if (plane == 0 && bLatin1 == false) {
1734 else if (args[j].equals("-plane")) {
1736 FAIL("Plane number missing after -plane");
1739 plane = Integer.parseInt(args[++j]);
1741 if (plane > 0) {
1750 plane = 0;
1946 UnicodeSpec[] data = UnicodeSpec.readSpecFile(new File(UnicodeSpecFileName), plane);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_TW.java46 0xA1-0xB0 for plane 1-16. According to CJKV /163,
65 in a String array table String[plane] b2c.
68 plane No) share one byte.
74 (2)byte[] c2bPlane stores the "plane info" of each euc-tw codepoints,
121 // adjust from cns planeNo to the plane index of b2c
511 adjust the "plane" from 0..7 to 0, 2, 3, 4, 5, 6, 7, 0xf,
512 which helps balance between footprint (to save the plane
514 one operation "0xa0 | plane" to encode the plane byte)
516 int plane
[all...]
/openjdk7/jdk/make/java/java/
H A DMakefile375 $(BOOT_JAVA_CMD) -jar $(GENERATECHARACTER_JARFILE) -plane 0 \
382 $(BOOT_JAVA_CMD) -jar $(GENERATECHARACTER_JARFILE) -plane 1 \
389 $(BOOT_JAVA_CMD) -jar $(GENERATECHARACTER_JARFILE) -plane 2 \
396 $(BOOT_JAVA_CMD) -jar $(GENERATECHARACTER_JARFILE) -plane 14 \
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLSurfaceData.m46 IOSurfaceRef ioSurface, GLuint plane);
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java4470 int plane = codePoint >>> 16;
4471 return plane < ((MAX_CODE_POINT + 1) >>> 16);
/openjdk7/jdk/src/share/native/sun/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 102 milliseconds