Searched refs:order (Results 1 - 25 of 100) sorted by relevance

1234

/openjdk7/jdk/test/java/nio/Buffer/
H A DOrder.java25 * @summary Unit test for X-Buffer.order methods
45 ck(bb.asCharBuffer().order(), bb.order());
46 ck(bb.asIntBuffer().order(), bb.order());
47 ck(bb.asLongBuffer().order(), bb.order());
48 ck(bb.asFloatBuffer().order(), bb.order());
49 ck(bb.asDoubleBuffer().order(), b
[all...]
H A DSwapMicroBenchmark.java173 b.order(ByteOrder.BIG_ENDIAN);
182 b.order(ByteOrder.LITTLE_ENDIAN);
191 b.order(ByteOrder.BIG_ENDIAN);
200 b.order(ByteOrder.LITTLE_ENDIAN);
209 b.order(ByteOrder.BIG_ENDIAN);
218 b.order(ByteOrder.LITTLE_ENDIAN);
227 b.order(ByteOrder.BIG_ENDIAN);
236 b.order(ByteOrder.LITTLE_ENDIAN);
/openjdk7/jdk/test/java/awt/Focus/FocusTraversalPolicy/
H A DDefaultFTPTest.java160 Map<String, String> order = new HashMap<String, String>();
161 order.put("btn 0", "btn 1");
162 order.put("btn 1", "btn 2");
163 order.put("btn 2", "btn 100");
164 order.put("btn 100", "btn 101");
165 order.put("btn 101", "btn 102");
166 order.put("btn 102", "btn 200");
167 order.put("btn 200", "btn 201");
168 order.put("btn 201", "btn 202");
169 order
[all...]
H A DLayoutFTPTest.java161 Map<String, String> order = new HashMap<String, String>();
162 order.put("btn 0", "btn 1");
163 order.put("btn 1", "btn 2");
164 order.put("btn 2", "btn 100");
165 order.put("btn 100", "btn 101");
166 order.put("btn 101", "btn 102");
167 order.put("btn 102", "btn 200");
168 order.put("btn 200", "btn 201");
169 order.put("btn 201", "btn 202");
170 order
[all...]
/openjdk7/jdk/src/share/test/pack200/
H A Dpack.conf29 pack.keep.class.order=true
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractPerfDataBufferPrologue.java44 * jbyte byte_order; // byte order of the buffer
103 // set the byte order
104 this.byteBuffer.order(getByteOrder());
114 ByteOrder order = byteBuffer.order();
115 byteBuffer.order(ByteOrder.BIG_ENDIAN);
121 // restore the byte order
122 byteBuffer.order(order);
127 * Get the byte order
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPoolData.java50 * Return the order of the constant
52 int order() { method in class:ConstantPoolData
H A DStringConstantData.java59 * Return the order of the constant
61 int order() { method in class:StringConstantData
H A DStringExpressionConstantData.java62 * Return the order of the constant
64 int order() { method in class:StringExpressionConstantData
H A DClassConstantData.java70 * Return the order of the constant
72 int order() { method in class:ClassConstantData
H A DFieldConstantData.java72 * Return the order of the constant
74 int order() { method in class:FieldConstantData
H A DNameAndTypeConstantData.java64 * Return the order of the constant
66 int order() { method in class:NameAndTypeConstantData
H A DNumberConstantData.java69 * Return the order of the constant
71 int order() { method in class:NumberConstantData
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLookupProcessor.cpp92 for (le_uint16 order = 0; order < lookupOrderCount && LE_SUCCESS(success); order += 1) {
93 le_uint16 lookup = lookupOrderArray[order];
138 le_int32 LookupProcessor::selectLookups(const LEReferenceTo<FeatureTable> &featureTable, FeatureMask featureMask, le_int32 order, LEErrorCode &success) argument
141 le_int32 store = order;
155 return store - order;
216 le_int32 count, order = 0; local
264 count += selectLookups(requiredFeatureTable, fm.mask, order, success);
270 OpenTypeUtilities::sort(lookupOrderArray, order);
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationElementIterator.java68 * The key of a character is an integer composed of primary order(short),
69 * secondary order(byte), and tertiary order(byte). Java strictly defines
93 * <code>CollationElementIterator.next</code> returns the collation order
94 * of the next character. A collation order consists of primary order,
95 * secondary order and tertiary order. The data type of the collation
96 * order is <strong>int</strong>. The first 16 bits of a collation order
357 primaryOrder(int order) argument
367 secondaryOrder(int order) argument
377 tertiaryOrder(int order) argument
387 strengthOrder(int order) argument
483 getMaxExpansion(int order) argument
632 isIgnorable(int order) argument
[all...]
H A DRBTableBuilder.java94 // the combining characters must be in their canonical order
110 // Since rules can be specified in any order in the string
119 int order = 0;
140 order = increment(entry.getStrength(), order);
144 addExpandOrder(groupChars, expChars, order);
148 addOrder(Character.toCodePoint(ch, groupChars.charAt(1)), order);
150 addContractOrder(groupChars, order);
154 addOrder(ch, order);
189 // If so, just map the precomposed character to that order
[all...]
H A DRBCollationTables.java187 * with the specified comparison order.
189 * @param order a collation order returned by previous or next.
191 * with the specified order.
195 int getMaxExpansion(int order) argument
208 if (length > result && valueList[length-1] == order) {
222 final int[] getExpandValueList(int order) { argument
223 return (int[])expandTable.elementAt(order - EXPANDCHARINDEX);
227 * Get the comarison order of a character from the collation table.
228 * @return the comparison order o
[all...]
H A DRuleBasedCollator.java59 * collation order.
117 * Notice that the order is important, as the subsequent item goes immediately
159 * sequences that may not be in canonical order, you should set the collator to
224 * The following example demonstrates how to change the order of
236 * // change the order of accent characters
263 // tables specifying the collation order of characters for a particular locale
440 if (pSOrder == 0) // primary order in source is ignorable
471 // primary order is the same, but complete order is different. So there
609 int order
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl.c69 MP_DIGITS(&group->order) = 0;
80 MP_CHECKOK(mp_init(&group->order, kmflag));
94 const mp_int *geny, const mp_int *order, int cofactor)
112 MP_CHECKOK(mp_copy(order, &group->order));
135 const mp_int *geny, const mp_int *order, int cofactor)
155 MP_CHECKOK(mp_copy(order, &group->order));
180 const mp_int *order, int cofactor)
198 MP_CHECKOK(mp_copy(order,
92 ECGroup_consGFp(const mp_int *irr, const mp_int *curvea, const mp_int *curveb, const mp_int *genx, const mp_int *geny, const mp_int *order, int cofactor) argument
133 ECGroup_consGFp_mont(const mp_int *irr, const mp_int *curvea, const mp_int *curveb, const mp_int *genx, const mp_int *geny, const mp_int *order, int cofactor) argument
177 ECGroup_consGF2m(const mp_int *irr, const unsigned int irr_arr[5], const mp_int *curvea, const mp_int *curveb, const mp_int *genx, const mp_int *geny, const mp_int *order, int cofactor) argument
223 mp_int irr, curvea, curveb, genx, geny, order; local
[all...]
H A Decl_curve.c110 if (params->order != NULL) {
112 ret->order = kmem_alloc(strlen(params->order) + 1, kmflag);
113 bcopy(params->order, ret->order, strlen(params->order) + 1);
115 CHECK(ret->order = strdup(params->order));
184 if (params->order != NULL)
186 kmem_free(params->order, strle
[all...]
H A Dec.c92 mp_int Gx, Gy, order, irreducible, a, b; local
147 MP_DIGITS(&order) = 0;
157 CHECK_MPI_OK( mp_init(&order, kmflag) );
180 SECITEM_TO_MPINT( params->order, &order );
185 group = ECGroup_consGFp(&irreducible, &a, &b, &Gx, &Gy, &order, params->cofactor);
193 group = ECGroup_consGF2m(&irreducible, irr_arr, &a, &b, &Gx, &Gy, &order, params->cofactor);
230 mp_clear(&order);
306 CHECK_SEC_OK(SECITEM_CopyItem(arena, &key->ecParams.order,
307 &ecParams->order, kmfla
382 ec_GenerateRandomPrivateKey(const unsigned char *order, int len, const unsigned char *random, int randomlen, int kmflag) argument
[all...]
/openjdk7/langtools/test/tools/apt/Scanners/
H A DMemberOrderApf.java39 * in source-code order.
72 VisitOrder order = decl.getAnnotation(VisitOrder.class);
73 if (order.value() <= count)
74 throw new RuntimeException("Out of order declarations");
75 count = order.value();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeSortRecordFactory.java61 String order[], String type[])
64 this(dom, className, translet, order, type, null, null);
75 String order[], String type[], String lang[],
89 int levels = order.length;
93 if (order[i].length() == DESCENDING) {
106 int numSortKeys = order.length;
60 NodeSortRecordFactory(DOM dom, String className, Translet translet, String order[], String type[]) argument
74 NodeSortRecordFactory(DOM dom, String className, Translet translet, String order[], String type[], String lang[], String caseOrder[]) argument
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryAssignExpression.java57 public Expression order() { method in class:BinaryAssignExpression
61 e.right = order();
H A DUnaryExpression.java52 public Expression order() { method in class:UnaryExpression
56 e.right = order();

Completed in 74 milliseconds

1234