Lines Matching defs:array

129  * array, given a source DataFlavor and a target format, and for translating
130 * a byte array or InputStream into an Object, given a source format and
758 * Reduces the Map output for the root function to an array of the
904 * Returns an array of all DataFlavors for which
908 * The array will be sorted according to a
923 * Returns an array of all DataFlavors for which
928 * The array will be sorted according to a
1003 * a byte array. Search-and-replace EOLN. Encode into the
1061 * Translating either a byte array or an InputStream into an String.
1162 * a byte array, given a source DataFlavor and target format.
1247 // Source data is a char array. Convert to a String and recur.
1251 ("cannot transfer non-text data as char array");
1259 // the array. For text flavors, decode back to a String and recur to
1276 // Source data is a byte array. For arbitrary flavors, simply return
1277 // the array. For text flavors, decode back to a String and recur to
1365 // bytes and dump them into a byte array. For text flavors, decode back
1577 * Primary translation function for translating either a byte array or
1702 // Target data is a char array. Recur to obtain String and convert to
1703 // char array.
1707 ("cannot transfer non-text data as char array");
1735 // Target data is a byte array. For arbitrary flavors, just return
2013 * Checks to see if the next array.length characters in wrapped
2014 * match array. The first character is provided as c. Subsequent
2019 private boolean matchCharArray(char[] array, int c)
2022 wrapped.mark(array.length); // BufferedReader supports mark
2025 if ((char)c == array[0]) {
2026 for (count = 1; count < array.length; count++) {
2028 if (c == -1 || ((char)c) != array[count]) {
2034 if (count == array.length) {
2044 * Decodes a byte array into a set of String filenames.
2049 * Decodes URIs from either a byte array or a stream.
2062 * Translates either a byte array or an input stream which contain
2071 * Translates either a byte array or an input stream which contain
2126 * Translates a Java Image into a byte array which contains platform-
2133 * Translates a Java Image into a byte array which contains
2252 * are byte arrays byte array will be returned. Otherwise an
2260 * @return a byte array or an <code>InputStream</code> which represents
2265 * neither byte array nor an instance of <code>InputStream</code>.
2393 * Helper function to reduce a Map with Long keys to a long array.
2410 * array. The array will be sorted according to
2418 * Helper function to convert a Set of DataFlavors to a sorted array.
2419 * The array will be sorted according to <code>DataFlavorComparator</code>.
2431 * Helper function to convert a Set of DataFlavors to a sorted array.
2432 * The array will be sorted according to a
2449 * Helper function to convert an InputStream to a byte[] array.