Searched refs:cv (Results 26 - 37 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/back/
H A DeventHelper.c887 enumForCombinedSuspendPolicy(void *cv, void *arg) argument
889 CommandSingle *command = cv;
922 enumForVMDeath(void *cv, void *arg) argument
924 CommandSingle *command = cv;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java2164 View cv = v.getView(item);
2166 Object name = cv.getElement().getAttributes().getAttribute
2184 if (cv.getViewCount() > 0) {
2185 View pView = cv.getView(0);
2191 Shape shape = cv.getChildAllocation(0, paintRect);
2207 ? ss.getForeground(cv.getAttributes())
2216 CSS.Value childtype = getChildType(cv);
2217 Font font = ((StyledDocument)cv.getDocument()).
2218 getFont(cv.getAttributes());
H A DCSS.java490 Object cv = new ColorValue();
491 valueConvertor.put(CSS.Attribute.COLOR, cv);
492 valueConvertor.put(CSS.Attribute.BACKGROUND_COLOR, cv);
493 valueConvertor.put(CSS.Attribute.BORDER_TOP_COLOR, cv);
494 valueConvertor.put(CSS.Attribute.BORDER_RIGHT_COLOR, cv);
495 valueConvertor.put(CSS.Attribute.BORDER_BOTTOM_COLOR, cv);
496 valueConvertor.put(CSS.Attribute.BORDER_LEFT_COLOR, cv);
749 ColorValue cv = (ColorValue) a.getAttribute(key);
750 if (cv != null) {
751 return cv
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java223 Object cv = Assert.checkNonNull(constValue());
225 return ((Integer) cv).intValue() == 0 ? "false" : "true";
227 return String.valueOf((char) ((Integer) cv).intValue());
229 return cv.toString();
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp240 static int lwp_cond_init(cond_t *cv, int scope, void *arg){ memset(cv, 0, sizeof(cond_t)); return 0; } argument
241 static int lwp_cond_destroy(cond_t *cv) { return 0; } argument
247 static int pthread_cond_default_init(cond_t *cv, int scope, void *arg){ memset(cv, 0, sizeof(cond_t)); return 0; } argument
5889 if (!CHECK_POINTER_OK(cv)) fatal("Condvar must be in C heap only.");
5904 CHECK_SYNCH_OP(int, cond_op, (cond_t *cv, mutex_t *mu), (cv, mu), CHECK_MU;CHECK_CV);
5911 CHECK_SYNCH_OP(int, cond_op, (cond_t *cv, mutex_t *mu, timestruc_t* ts), (cv, m
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java373 ConstantValue_attribute cv = (ConstantValue_attribute) a;
374 print(getConstantValue(f.descriptor, cv.constantvalue_index));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassReader.java1686 char[] cv = new char[size];
1688 cv[i] = (char) readInt(items[readUnsignedShort(v)]);
1691 av.visit(name, cv);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java1122 CipherValue cv = cd.getCipherValue();
1123 // cv.setValue(base64EncodedEncryptedOctets.getBytes());
1124 cv.setValue(base64EncodedEncryptedOctets);
1280 CipherValue cv = _ek.getCipherData().getCipherValue();
1281 cv.setValue(base64EncodedEncryptedOctets);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m606 CGFloat cv = 4.0f / 3.0f * a * b / c;
607 CGFloat acv = (1.0f - cv) / 2.0f;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1051 Object cv = ((VarSymbol)sym).getConstValue();
1052 if (cv != null) {
1054 return makeLit(sym.type, cv);
1110 Object cv = ((VarSymbol)sym).getConstValue();
1111 if (cv != null) return makeLit(sym.type, cv);
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp4656 Node* cv = generate_generic_arraycopy(adr_type, local
4659 if (cv == NULL) cv = intcon(-1); // failure (no stub available)
4663 checked_value = cv;
4813 Node* cv = generate_checkcast_arraycopy(adr_type, local
4817 if (cv == NULL) cv = intcon(-1); // failure (no stub available)
4821 checked_value = cv;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java2039 private static final double cv = 4.0 / 3.0 * a * b / c; field in class:Metacity.RoundRectClipShape.RoundishRectIterator
2040 private static final double acv = (1.0 - cv) / 2.0;

Completed in 135 milliseconds

12