Searched refs:cc (Results 1 - 25 of 123) sorted by relevance

12345

/openjdk7/jdk/test/sun/nio/cs/
H A DEUCJPUnderflowDecodeTest.java37 CharBuffer cc = CharBuffer.allocate(255);
48 cc.clear();
59 CoderResult result = decoder.decode(bb, cc, false);
74 cc.clear();
77 result = decoder.decode(bb, cc, false);
90 cc.clear();
95 result = decoder.decode(bb, cc, false);
97 cc.flip();
99 if (result != CoderResult.UNDERFLOW && cc.get() != '\uFF3c') {
H A DTestX11CNS.java49 char[] cc = new char[cbf.position()];
50 cbf.flip(); cbf.get(cc);
51 return cc;
55 static byte[] encode(char[] cc, Charset cs) argument
57 ByteBuffer bbf = ByteBuffer.allocate(cc.length * 4);
58 CharBuffer cbf = CharBuffer.wrap(cc);
65 System.out.printf(" cr=%s, cbf.pos=%d, cc[pos]=%x%n",
66 cr.toString(), pos, cc[pos]&0xffff);
77 char[] cc = new char[0x10000];
89 cc[po
[all...]
H A DBufferUnderflowEUCTWTest.java58 char[] cc = new char[BUFFERSIZE];
59 int cx = isr.read(cc);
H A DTestIllegalISO2022Esc.java48 char cc[] = new char[1];
49 isr.read(cc,0,1); //attempt to read
H A DTestUTF8.java51 char[] cc = new char[cbf.position()];
52 cbf.flip(); cbf.get(cc);
53 return cc;
99 static byte[] encode(char[] cc, String csn, boolean testDirect) argument
105 bbf = ByteBuffer.allocateDirect(cc.length * 4);
106 cbf = ByteBuffer.allocateDirect(cc.length * 2).asCharBuffer();
107 cbf.put(cc).flip();
109 bbf = ByteBuffer.allocate(cc.length * 4);
110 cbf = CharBuffer.wrap(cc);
121 static CoderResult encodeCR(char[] cc, Strin argument
[all...]
H A DTestEUC_TW.java74 char[] cc = new char[cbf.position()];
75 cbf.flip(); cbf.get(cc);
76 return cc;
96 static byte[] encode(char[] cc, Charset cs, boolean testDirect, Time t) argument
103 bbf = ByteBuffer.allocateDirect(cc.length * 4);
104 cbf = ByteBuffer.allocateDirect(cc.length * 2).asCharBuffer();
105 cbf.put(cc).flip();
107 bbf = ByteBuffer.allocate(cc.length * 4);
108 cbf = CharBuffer.wrap(cc);
124 System.out.printf(" cr=%s, cbf.pos=%d, cc[po
133 encodeCR(char[] cc, Charset cs, boolean testDirect) argument
[all...]
/openjdk7/jdk/test/com/sun/security/auth/callback/TextCallbackHandler/
H A DDefault.java39 ConfirmationCallback cc = new ConfirmationCallback
45 Callback[] callbacks = { nc, cc };
48 if (cc.getSelectedIndex() == ConfirmationCallback.YES) {
/openjdk7/corba/make/common/
H A DCancelImplicits.gmk47 %: %.cc
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElement.java75 private ConnectedComponent cc; field in class:Element
166 ConnectedComponent cc = new ConnectedComponent();
167 ccs.add(cc);
169 cur.formConnectedComponent(cc);
174 return cc!=null || isSource() || isSink();
184 this.cc=group;
206 /*package*/ final boolean checkCutSet(ConnectedComponent cc, Set<Element> visited) { argument
217 if(this.cc==cc)
221 if(!next.checkCutSet(cc,visite
[all...]
H A DGraph.java70 for (ConnectedComponent cc : ccs) {
72 if(source.checkCutSet(cc,visited)) {
73 cc.isRequired = true;
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6827032.java44 private static JColorChooser cc; field in class:Test6827032
64 Component previewPanel = Util.findSubComponent(cc, "javax.swing.colorchooser.DefaultPreviewPanel");
80 cc = new JColorChooser();
81 cc.setDragEnabled(true);
82 frame.add(cc);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DPublicObjectFactoryGenerator.java47 void populate(ClassOutlineImpl cc) { argument
48 populate(cc,cc.ref);
H A DObjectFactoryGenerator.java52 abstract void populate( ClassOutlineImpl cc );
H A DDualObjectFactoryGenerator.java64 void populate(ClassOutlineImpl cc) { argument
65 publicOFG.populate(cc);
66 privateOFG.populate(cc);
H A DPrivateObjectFactoryGenerator.java68 void populate(ClassOutlineImpl cc) { argument
69 populate(cc,cc.implRef);
/openjdk7/jdk/test/com/sun/security/auth/callback/DialogCallbackHandler/
H A DDefault.java44 ConfirmationCallback cc = new ConfirmationCallback
50 Callback[] callbacks = { toc, toc2, cc };
53 if (cc.getSelectedIndex() == ConfirmationCallback.YES) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DIOUtils.java65 int cc = is.read(output, pos, bytesToRead);
66 if (cc < 0) {
76 pos += cc;
/openjdk7/jdk/test/sun/security/krb5/
H A DTimeInCCache.java79 sun.security.krb5.Credentials cc = c.setKrbCreds();
82 if (cc.getStartTime() != null) {
87 if (cc.getRenewTill() != null) {
H A DIPv6.java102 int cc = 0;
111 String eh = kdcs[cc][0], ep = kdcs[cc][1];
122 cc++;
125 if (cc != kdcs.length - 2) { // 2 illegal settings at the end
/openjdk7/jdk/make/common/
H A DCancelImplicits.gmk47 %: %.cc
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DExpressionParticleBinder.java57 for (ConnectedComponent cc : g) {
58 buildProperty(cc);
65 private void buildProperty(ConnectedComponent cc) { argument
70 for (Element e : cc) {
76 propName.append(makeJavaName(cc.isCollection(),ge.getPropertyNameSeed()));
95 if(cc.isCollection())
97 if(!cc.isRequired())
102 XSParticle p = findSourceParticle(cc);
119 private XSParticle findSourceParticle(ConnectedComponent cc) { argument
122 for (Element e : cc) {
[all...]
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DUtils.java165 public void format(char[] cc, int off, int end, String closure) { argument
171 toChar("\\u%04X", cc[off++]);
180 public void format(char[] cc, String closure) { argument
181 format(cc, 0, cc.length, closure);
187 char[] cc = new char[b2Max - b2Min + 1];
190 cc[off++] = db[(b1 << 8) | b2];
192 format(cc, 0, cc.length, closure);
/openjdk7/jdk/src/share/classes/java/lang/
H A DConditionalSpecialCasing.java242 * Before C: [I]([{cc!=230}&{cc!=0}])*
246 int cc;
256 cc = Normalizer.getCombiningClass(ch);
257 if ((cc == 0) || (cc == COMBINING_CLASS_ABOVE)) {
274 * Before C: [{Soft_Dotted==true}]([{cc!=230}&{cc!=0}])*
278 int cc;
288 cc
[all...]
/openjdk7/jdk/test/java/io/Serializable/evolution/AddedField/
H A DReadAddedField.java108 C cc = (C)in.readObject();
109 if (cc.bar != 4)
111 cc.bar);
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DRMIConnectionIdTest.java48 JMXConnector cc = JMXConnectorFactory.connect(addr);
49 String connectionId = cc.getConnectionId();
70 cc.close();

Completed in 88 milliseconds

12345