Searched defs:cc (Results 1 - 25 of 39) sorted by relevance

12

/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 DPrivateObjectFactoryGenerator.java68 void populate(ClassOutlineImpl cc) { argument
69 populate(cc,cc.implRef);
H A DPublicObjectFactoryGenerator.java47 void populate(ClassOutlineImpl cc) { argument
48 populate(cc,cc.ref);
H A DDualObjectFactoryGenerator.java64 void populate(ClassOutlineImpl cc) { argument
65 publicOFG.populate(cc);
66 privateOFG.populate(cc);
H A DObjectFactoryGeneratorImpl.java290 protected final void populate( ClassOutlineImpl cc, JClass sigType ) { argument
298 if(!cc.target.isAbstract()) {
300 JMod.PUBLIC, sigType, "create" + cc.target.getSqueezedName() );
301 m.body()._return( JExpr._new(cc.implRef) );
306 .append(cc.ref);
311 Collection<? extends Constructor> consl = cc.target.getConstructors();
315 cc.implClass.constructor(JMod.PUBLIC);
319 String name = cc.target.getSqueezedName();
320 ClassOutlineImpl existing = valueFactoryNames.put(name,cc);
324 outline.getErrorReceiver().error(cc
[all...]
H A DBeanGenerator.java191 for (ClassOutlineImpl cc : getClasses()) {
194 CClassInfo superClass = cc.target.getBaseClass();
197 model.strategy._extends(cc, getClazz(superClass));
199 CClassRef refSuperClass = cc.target.getRefBaseClass();
201 cc.implClass._extends(refSuperClass.toType(this, EXPOSED));
204 if (model.rootClass != null && cc.implClass._extends().equals(OBJECT)) {
205 cc.implClass._extends(model.rootClass);
208 cc.ref._implements(model.rootInterface);
220 cc.implClass._implements(Serializable.class);
222 cc
488 generateClassBody(ClassOutlineImpl cc) argument
569 generateAttributeWildcard(ClassOutlineImpl cc) argument
752 generateFieldDecl(ClassOutlineImpl cc, CPropertyInfo prop) argument
[all...]
/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/test/sun/nio/cs/
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 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...]
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...]
/openjdk7/jdk/make/tools/swing-beans/
H A DDocBeanInfo.java55 String displayname, String pec, String cc,
62 this.customizerclass = cc;
54 DocBeanInfo(String p, int flags, String d, String displayname, String pec, String cc, HashMap attribs, HashMap enums) argument
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DListenerScaleTest.java136 JMXConnector cc = JMXConnectorFactory.connect(addr);
138 test(mbs, cs, cc);
140 cc.close();
146 JMXConnector cc) throws Exception {
147 MBeanServerConnection mbsc = cc.getMBeanServerConnection();
145 test(MBeanServer mbs, JMXConnectorServer cs, JMXConnector cc) argument
/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...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DTestIBMDB.java74 char[] cc = new char[cbf.position()];
75 cbf.flip(); cbf.get(cc);
76 return cc;
103 static byte[] encode(char[] cc, Charset cs, boolean testDirect, Time t) argument
110 bbf = ByteBuffer.allocateDirect(cc.length * 4);
111 cbf = ByteBuffer.allocateDirect(cc.length * 2).asCharBuffer();
112 cbf.put(cc).flip();
114 bbf = ByteBuffer.allocate(cc.length * 4);
115 cbf = CharBuffer.wrap(cc);
130 System.out.printf(" cr=%s, cbf.pos=%d, cc[po
139 encodeCR(char[] cc, Charset cs, boolean testDirect) argument
316 compare(Charset cs1, Charset cs2, char[] cc) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.cpp221 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Condition cc), Condition cc) { argument
222 def(code, flags, in, out, (Template::generator)gen, (int)cc);
/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/native/java/lang/fdlibm/src/
H A De_j0.c108 double z, s,c,ss,cc,r,u,v; local
119 cc = s+c;
122 if ((s*c)<zero) cc = z/ss;
123 else ss = z/cc;
126 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
127 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
129 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
132 z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
177 double z, s,c,ss,cc,u,v; local
202 cc
[all...]
H A De_j1.c109 double z, s,c,ss,cc,r,u,v,y; local
120 cc = s-c;
123 if ((s*c)>zero) cc = z/ss;
124 else ss = z/cc;
127 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
128 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
130 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y);
133 z = invsqrtpi*(u*cc-v*ss)/sqrt(y);
178 double z, s,c,ss,cc,u,v; local
192 cc
[all...]
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java44 cc = Query.attr("C"), field in class:QueryExpStringTest
90 aPlusB_PlusC = Query.gt(Query.plus(Query.plus(aa, bb), cc), zero),
91 aPlus_BPlusC = Query.gt(Query.plus(aa, Query.plus(bb, cc)), zero);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DSJIS_0213.java106 char[] cc = null;
114 cc = decodeDoubleEx(b1, b2);
115 if (cc == null) {
127 da[dp++] = cc[0];
128 da[dp++] = cc[1];
145 char[] cc = null;
156 cc = decodeDoubleEx(b1, b2);
157 if (cc == null) {
169 dst.put(cc[0]);
170 dst.put(cc[
197 private char[] cc = new char[2]; field in class:SJIS_0213.Decoder
231 encodeComposite(char base, char cc) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.hpp289 BoolNode( Node *cc, BoolTest::mask t): _test(t), Node(0,cc) { argument
/openjdk7/jdk/test/java/lang/Class/getEnclosingClass/
H A DEnclosingClass.java245 public Class<?> cc = ((new Inner()).new InnerInner()).getClass(); field in class:EnclosingClass
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c706 unsigned char cc = (unsigned char) c; /* required for big endian systems */ local
708 return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java153 private static int escape(char[] cc, char c, int index) { argument
154 cc[index++] = '%';
155 cc[index++] = Character.forDigit((c >> 4) & 0xF, 16);
156 cc[index++] = Character.forDigit(c & 0xF, 16);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java84 public char[] decodeSurrogate(int db, char[] cc) { argument
88 Character.toChars(b2cSupp[end + i] + 0x20000, cc, 0);
89 return cc;
94 public char[] decodeComposite(Entry comp, char[] cc) { argument
97 cc[0] = (char)b2cComp[i].cp;
98 cc[1] = (char)b2cComp[i].cp2;
99 return cc;
203 private final static int MAP_COMPOSITE = 0x7; // db,base,cc
225 char [] cc = new char[size];
227 cc[
[all...]

Completed in 295 milliseconds

12