Searched defs:floats (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DPrimitiveTypeContentHandler.java184 public void floats(float [] f, int start, int length) throws SAXException; method in interface:PrimitiveTypeContentHandler
/openjdk7/jdk/src/share/native/java/io/
H A DObjectInputStream.c58 jfloat *floats; local
81 floats = (*env)->GetPrimitiveArrayCritical(env, dst, NULL);
82 if (floats == NULL) { /* exception thrown */
95 floats[dstpos] = (jfloat) u.f;
100 (*env)->ReleasePrimitiveArrayCritical(env, dst, floats, 0);
H A DObjectOutputStream.c57 jfloat *floats; local
71 floats = (*env)->GetPrimitiveArrayCritical(env, src, NULL);
72 if (floats == NULL) /* exception thrown */
77 (*env)->ReleasePrimitiveArrayCritical(env, src, floats, JNI_ABORT);
83 (*env)->ReleasePrimitiveArrayCritical(env, src, floats, JNI_ABORT);
90 fval = (float) floats[srcpos];
103 (*env)->ReleasePrimitiveArrayCritical(env, src, floats, JNI_ABORT);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DFastInfosetDefaultHandler.java103 public void floats(float[] f, int start, int length) throws SAXException { method in class:FastInfosetDefaultHandler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSAXDocumentSerializer.java374 public final void floats(float[] f, int start, int length) throws SAXException { method in class:SAXDocumentSerializer

Completed in 68 milliseconds