Searched refs:indices (Results 1 - 25 of 55) sorted by relevance

123

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DCanonShaping.cpp40 void CanonShaping::sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit) argument
44 le_int32 v = indices[j];
48 if (c >= combiningClasses[indices[i]]) {
52 indices[i + 1] = indices[i];
55 indices[i + 1] = v;
66 le_int32 *indices = LE_NEW_ARRAY(le_int32, charCount); local
69 if (combiningClasses == NULL || indices == NULL) {
73 if (indices != NULL) {
74 LE_DELETE_ARRAY(indices);
[all...]
H A DCanonShaping.h53 static void sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit);
H A DSunLayoutEngine.cpp93 JNU_ThrowInternalError(env, "indices array null");
104 jint* indices = (jint*)env->GetPrimitiveArrayCritical(inxArray, NULL); local
105 if (indices) {
109 engine->getCharIndices((le_int32*)(indices + count), baseIndex, status);
113 // !!! need engine->getFlags to signal positions, indices data
117 env->ReleasePrimitiveArrayCritical(inxArray, indices, 0);
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/
H A DMultiSelListDriver.java36 * @param indices Item indices.
38 public void selectItems(ComponentOperator oper, int[] indices); argument
/openjdk10/jdk/src/java.base/share/classes/sun/text/
H A DUCompactIntArray.java35 indices = new short[16][];
56 return values[plane][(indices[plane][index >> BLOCKSHIFT] & 0xFFFF)
96 for (int i = 0; i < indices[plane].length; ++i, iBlockStart += BLOCKCOUNT) {
97 indices[plane][i] = -1;
102 indices[plane][i] = iUntouched;
113 indices[plane][i] = (short)jBlockStart;
146 tempArray[i] = values[plane][indices[plane][i >> BLOCKSHIFT]
151 indices[plane][i] = (short)(i<<BLOCKSHIFT);
161 indices[plane] = new short[INDEXCOUNT];
166 System.arraycopy(indices[
201 private short indices[][]; field in class:UCompactIntArray
[all...]
H A DCompactByteArray.java78 indices = new short[INDEXCOUNT];
84 indices[i] = (short)(i<<BLOCKSHIFT);
107 indices = indexArray;
119 return (values[(indices[index >> BLOCKSHIFT] & 0xFFFF)
164 for (int i = 0; i < indices.length; ++i, iBlockStart += BLOCKCOUNT) {
165 indices[i] = -1;
171 indices[i] = iUntouched;
180 indices[i] = (short)jBlockStart;
184 if (indices[i] == -1) {
188 indices[
349 private short indices[]; field in class:CompactByteArray
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckListView.java37 public void showSelection(int[] indices) { argument
38 super.showSelection(indices);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DConstantPoolCacheEntry.java36 private static CIntegerField indices; field in class:ConstantPoolCacheEntry
56 indices = type.getCIntegerField("_indices");
78 return cp.getAddress().getCIntegerAt(indices.getOffset() + offset, indices.getSize(), indices.isUnsigned());
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DSelect.java42 private int[] indices; // target offsets TODO could be package-protected? field in class:Select
77 indices = new int[match_length];
149 indices[i]).append("})");
207 copy.indices = indices.clone();
224 * @return array of match indices
234 return indices;
253 * @return index entry from indices
257 return indices[index];
317 indices
[all...]
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/lists/
H A DListAPIDriver.java52 public void selectItems(ComponentOperator oper, int[] indices) { argument
55 for (int indice : indices) {
H A DJTableHeaderDriver.java59 public void selectItems(ComponentOperator oper, int[] indices) { argument
60 clickOnHeader((JTableHeaderOperator) oper, indices[0]);
61 for (int i = 1; i < indices.length; i++) {
62 clickOnHeader((JTableHeaderOperator) oper, indices[i], InputEvent.CTRL_MASK);
H A DJListMouseDriver.java59 public void selectItems(ComponentOperator oper, int[] indices) { argument
60 clickOnItem((JListOperator) oper, indices[0]);
61 for (int i = 1; i < indices.length; i++) {
62 clickOnItem((JListOperator) oper, indices[i], InputEvent.CTRL_MASK);
/openjdk10/jdk/test/javax/swing/JTabbedPane/6670274/
H A Dbug6670274.java56 private static void check(TestTabbedPaneUI ui, int... indices) { argument
61 for (int j = 0; j < indices.length; j++) {
62 if (indices[j]== i) {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointResponseMessageBuilder.java139 protected final int[] indices; field in class:EndpointResponseMessageBuilder.Wrapped
161 indices = new int[children.size()];
163 for( int i=0; i<indices.length; i++ ) {
165 indices[i] = p.getIndex();
179 for( int i=indices.length-1; i>=0; i-- ) {
181 if (indices[i] == -1) {
184 v = getters[i].get(methodArgs[indices[i]]);
261 for( int i=indices.length-1; i>=0; i-- ) {
262 if (indices[i] == -1) {
265 accessors[i].set(bean,getters[i].get(methodArgs[indices[
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libawt/awt/image/
H A Ddither.c120 currentState.indices = (unsigned char *)malloc(6
124 if (currentState.indices == NULL) {
136 unsigned char index = priorState->indices[i];
144 free(currentState.indices);
153 free(currentState.indices);
202 currentState.indices = (unsigned char *)
204 if (currentState.indices == NULL) {
232 free(currentState.indices);
241 free(currentState.indices);
H A Ddither.h57 unsigned char *indices; member in struct:__anon845
66 state.indices[state.activeEntries] = index; \
/openjdk10/jdk/test/java/awt/font/GlyphVector/
H A DTestLayoutFlags.java53 // get glyph char indices needs to initializes layoutFlags before use (5090704)
161 int[] indices = gv.getGlyphCharIndices(0, gv.getNumGlyphs(), null);
163 if (gv.getGlyphCharIndex(i) != indices[i]) {
170 * Return true if the glyph indices are pure ltr
173 int[] indices = gv.getGlyphCharIndices(0, gv.getNumGlyphs(), null);
174 for (int i = 0; i < indices.length; ++i) {
175 if (indices[i] != i) {
183 * Return true if the glyph indices are pure rtl
186 int[] indices = gv.getGlyphCharIndices(0, gv.getNumGlyphs(), null);
187 for (int i = 0; i < indices
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/sei/
H A DBodyBuilder.java136 protected final int[] indices; field in class:BodyBuilder.Wrapped
157 indices = new int[children.size()];
159 for( int i=0; i<indices.length; i++ ) {
161 indices[i] = p.getIndex();
175 for( int i=indices.length-1; i>=0; i-- ) {
176 Object arg = getters[i].get(methodArgs[indices[i]]);
248 for( int i=indices.length-1; i>=0; i-- ) {
249 accessors[i].set(bean,getters[i].get(methodArgs[indices[i]]));
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DRowFilter.java165 * @param indices the indices of the values to check. If not supplied all
170 * @throws IllegalArgumentException if any of the <code>indices</code>
177 int... indices) {
178 return new RegexFilter<M, I>(Pattern.compile(regex), indices);
194 * @param indices the indices of the values to check. If not supplied all
199 * @throws IllegalArgumentException if any of the <code>indices</code>
206 Date date, int... indices) {
207 return new DateFilter<M, I>(type, date.getTime(), indices);
176 regexFilter(String regex, int... indices) argument
205 dateFilter(ComparisonType type, Date date, int... indices) argument
231 numberFilter(ComparisonType type, Number number, int... indices) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DFontResolver.java113 ArrayList<Integer> indices = new ArrayList<Integer>();
120 indices.add(Integer.valueOf(i));
127 supplementaryIndices[i] = indices.get(i);
H A DStandardGlyphVector.java185 int[] indices, int flags) {
186 initGlyphVector(font, frc, glyphs, positions, indices, flags);
221 int[] indices, int flags) {
227 this.charIndices = indices;
1389 int[] indices; // index into unique strikes field in class:StandardGlyphVector.GlyphTransformInfo
1403 this.indices = rhs.indices == null ? null : rhs.indices.clone();
1416 if (this.indices.length != rhs.indices
184 StandardGlyphVector(Font font, FontRenderContext frc, int[] glyphs, float[] positions, int[] indices, int flags) argument
220 initGlyphVector(Font font, FontRenderContext frc, int[] glyphs, float[] positions, int[] indices, int flags) argument
[all...]
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/trees/
H A DJTreeAPIDriver.java56 public void selectItems(ComponentOperator oper, int[] indices) { argument
59 ((JTreeOperator) oper).addSelectionRows(indices);
H A DJTreeMouseDriver.java66 public void selectItems(final ComponentOperator oper, int[] indices) { argument
72 for (int i = 0; i < indices.length; i++) {
75 toper.scrollToRow(indices[i]);
77 final Point p = toper.getPointToClick(indices[index]);
/openjdk10/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/shapegen/
H A DHierarchy.java169 ClassCase cc, int indices[], Map<ClassCase,String> names) {
173 names.put(cc, interfaceNames[indices[INTERFACE_INDEX]++]);
175 names.put(cc, classNames[indices[CLASS_INDEX]++]);
178 assignNames(cc.getSupertypes().get(i), indices, names);
168 assignNames( ClassCase cc, int indices[], Map<ClassCase,String> names) argument
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DPool.java70 Map<Object,Integer> indices; field in class:Pool
80 this.indices = new HashMap<>(pool.length);
82 if (pool[i] != null) indices.put(pool[i], i);
102 indices.clear();
114 Integer index = indices.get(value);
117 indices.put(value, index);
153 Integer n = indices.get(o);

Completed in 396 milliseconds

123