Searched refs:objectStart (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/java/text/
H A DBidi.java312 * <code>objectStart</code> up to <code>objectStart + count</code>
315 * in the levels array (at <code>index - objectStart + levelStart</code>).
320 * @param objectStart the start position in the objects array
323 public static void reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStart, int count) { argument
324 BidiBase.reorderVisually(levels, levelStart, objects, objectStart, count);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/debug/
H A DJSONWriter.java117 objectStart();
611 objectStart();
629 objectStart();
651 objectStart();
875 objectStart();
993 private void objectStart(final String name) { method in class:JSONWriter
999 private void objectStart() { method in class:JSONWriter
1048 objectStart("loc");
1056 objectStart("start");
1065 objectStart("en
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/text/bidi/
H A DBidiBase.java4566 * <code>objectStart</code> up to <code>objectStart + count</code> in the
4569 * the levels array (at <code>index - objectStart + levelStart</code>).
4574 * @param objectStart the start position in the objects array
4581 int objectStart,
4590 if (0 > objectStart || objects.length <= objectStart) {
4591 throw new IllegalArgumentException("Value objectStart " +
4595 if (0 > count || objects.length < (objectStart+count)) {
4598 (objects.length - objectStart));
4578 reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStart, int count) argument
[all...]

Completed in 75 milliseconds