Searched defs:from (Results 76 - 100 of 197) sorted by relevance

12345678

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DResetPeakThreadCount.java117 private static long startThreads(int from, int count, int delta) { argument
125 for (int i = from; i < (from + count); i++) {
160 private static long terminateThreads(int from, int count) { argument
168 for (int i = from; i < (from+count); i++) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinfback.c31 This code is largely copied from inflate.c. Normally either infback.o or
89 fixed code decoding. Normally this returns fixed tables from inffixed.h.
142 /* Load returned state from inflate_fast() */
153 /* Set state from registers for inflate_fast() */
172 then return a Z_BUF_ERROR from inflateBack(). */
185 /* Get a byte of input into the bit accumulator, or return from inflateBack()
196 not enough available input to do that, then return from inflateBack() with
208 /* Remove n bits from the bit accumulator */
223 if it's full. If the write fails, return from inflateBack() with a
279 unsigned char FAR *from; /* wher local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbAsReqBuilder.java72 private KerberosTime from; field in class:KrbAsReqBuilder
83 private PAData[] paList; // PA-DATA from both KRB-ERROR and AS-REP.
114 * realm for AS-REQ. I believe a client should only get initial TGT from
132 * realm for AS-REQ. I believe a client should only get initial TGT from
152 * @return generated keys from password. PA-DATA from server might be used.
154 * @throws IllegalStateException if not constructed from a password
166 * coming from PA-DATA. After KrbAsReqBuilder, each etype uses its
167 * own new salt from PA-DATA. For an etype with no PA-DATA new salt
172 * from
[all...]
H A DKrbTgsReq.java40 * This class encapsulates a Kerberos TGS-REQ that is sent from the
65 null, // KerberosTime from
80 KerberosTime from,
125 if (from != null) from = null;
153 from,
219 KerberosTime from,
239 * sub-session key from the Authenticator, or if absent,
240 * the session key from the ticket-granting ticket used
279 from,
76 KrbTgsReq( KDCOptions options, Credentials asCreds, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses, AuthorizationData authorizationData, Ticket[] additionalTickets, EncryptionKey subKey) argument
211 createRequest( KDCOptions kdc_options, Ticket ticket, EncryptionKey key, KerberosTime ctime, PrincipalName cname, Realm crealm, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses, AuthorizationData authorizationData, Ticket[] additionalTickets, EncryptionKey subKey) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKDCReqBody.java51 * from [4] KerberosTime OPTIONAL,
77 public KerberosTime from; //optional field in class:KDCReqBody
105 from = new_from;
132 * @exception RealmException if an error occurs while constructing a Realm object from the encoded data.
151 from = KerberosTime.parse(encoding.getData(), (byte)0x04, true);
230 if (from != null) {
231 v.addElement(new DerValue(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x04), from.asn1Encode()));
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java17 * from this software without specific prior written permission.
111 /* We copy all returned values from the getValue call in case
252 public void shuttlesort(int from[], int to[], int low, int high) { argument
257 shuttlesort(to, from, low, middle);
258 shuttlesort(to, from, middle, high);
278 if (high - low >= 4 && compare(from[middle - 1], from[middle]) <= 0) {
279 System.arraycopy(from, low, to, low, high - low);
286 if (q >= high || (p < middle && compare(from[p], from[
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DBytecodeName.java189 * must be removed from the second string,
291 * Given a bytecode name from a classfile, separate it into
611 static int indexOfDangerousChar(String s, int from) { argument
612 for (int i = from, slen = s.length(); i < slen; i++) {
618 static int lastIndexOfDangerousChar(String s, int from) { argument
619 for (int i = Math.min(from, s.length()-1); i >= 0; i--) {
/openjdk7/jdk/src/share/classes/sun/net/smtp/
H A DSmtpClient.java36 * the "to" method to add destinations, calling "from" to name the
118 public void from(String s) throws IOException { method in class:SmtpClient
120 issueCommand("mail from: " + s + "\r\n", 250);
122 issueCommand("mail from: <" + s + ">\r\n", 250);
/openjdk7/jdk/src/share/classes/sun/reflect/misc/
H A DReflectUtil.java180 * access from a class loader 'from' to classes or members in
182 * if 'from' is not the same as or an ancestor of 'to'. All code
184 * method returns false if 'from' class loader is a class loader
189 public static boolean needsPackageAccessCheck(ClassLoader from, ClassLoader to) { argument
190 if (from == null || from == to)
196 return !isAncestor(from, to);
219 * {@code SecurityException} if it accesses a restricted package from
/openjdk7/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java63 void check(TypeHarness harness, Type from, Type to, Result expected) {
64 harness.assertAssignable(from, to, resSet.contains(expected));
69 void check(TypeHarness harness, Type from, Type to, Result expected) {
70 harness.assertConvertible(from, to, resSet.contains(expected));
80 abstract void check(TypeHarness harness, Type from, Type to, Result expected); argument
H A DPrimitiveConversionTest.java63 void check(TypeHarness harness, Type from, Type to, Result expected) {
64 harness.assertAssignable(from, to, resSet.contains(expected));
69 void check(TypeHarness harness, Type from, Type to, Result expected) {
70 harness.assertConvertible(from, to, resSet.contains(expected));
80 abstract void check(TypeHarness harness, Type from, Type to, Result expected); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOM.java427 private static String escapeAttValue(String original, int from) { argument
431 newVal.append(original.substring(0, from));
432 for (i = from; i < length; ++i) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapGXLWriter.java44 * 'from' and 'to' XML attributes that are ids of from and to nodes.</p>
50 * <li>Java reference field - GXL edge from referee to referent node.
215 // write edges for static reference fields from this class
352 private void writeEdge(Oop from, Oop to, String name) throws IOException { argument
353 out.print("<edge from='");
354 out.print(getID(from));
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DFloatControl.java127 * can change from one discrete value to the next during a {@link #shift(float,float,int) shift}
184 * can change from one discrete value to the next during a {@link #shift(float,float,int) shift}
310 * and return -1 from this method.
321 * Changes the control value from the initial value to the final
328 * @param from initial value at the beginning of the shift
332 * @throws IllegalArgumentException if either {@code from} or {@code to}
337 public void shift(float from, float to, int microseconds) { argument
338 // test "from" value, "to" value will be tested by setValue()
339 if (from < minimum) {
340 throw new IllegalArgumentException("Requested value " + from
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalToolBarUI.java118 * that shares the JRootPane ancestor of <code>from</code>.
120 synchronized static Object findRegisteredComponentOfType(JComponent from, argument
122 JRootPane rp = SwingUtilities.getRootPane(from);
225 // to call super from this method so that it can save away the
230 // distinguish from one provided by an application.
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java113 * object values. Each column's name will be taken from
131 * object values. Each column's name will be taken from
257 private void justifyRows(int from, int to) { argument
264 for (int i = from; i < to; i++) {
403 for(int from = (to + r) % size; from != i; from = (to + r) % size) {
404 v.setElementAt(v.elementAt(a + from), a + to);
405 to = from;
412 * Moves one or more rows from th
[all...]
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DThreadInfo.java83 * the {@link #from from} method.
258 * Constructs a <tt>ThreadInfo</tt> object from a
286 // from the lockName value.
443 * is the object returned from
532 * or more stack frames from the stack trace. In the extreme case,
535 * is permitted to return a zero-length array from this method.
704 * the <tt>LockInfo</tt> object will be constructed from
760 * {@link MonitorInfo#from Monitor.from} metho
790 public static ThreadInfo from(CompositeData cd) { method in class:ThreadInfo
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.java90 * from gaining direct access to the internals of this class.
134 * was created from.
164 //get contract values from contractTable by index
227 * Get the comarison order of a character from the collation table.
248 static void reverse (StringBuffer result, int from, int to) argument
250 int i = from;
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java81 * to be sorted extends from the index {@code fromIndex}, inclusive, to
121 * to be sorted extends from the index {@code fromIndex}, inclusive, to
161 * to be sorted extends from the index {@code fromIndex}, inclusive, to
201 * to be sorted extends from the index {@code fromIndex}, inclusive, to
241 * to be sorted extends from the index {@code fromIndex}, inclusive, to
289 * to be sorted extends from the index {@code fromIndex}, inclusive, to
345 * to be sorted extends from the index {@code fromIndex}, inclusive, to
407 // * from duplicating most of the code in this file (one version for
444 * storage requirements vary from a small constant for nearly sorted
454 * <p>The implementation was adapted from Ti
2473 copyOfRange(T[] original, int from, int to) argument
2508 copyOfRange(U[] original, int from, int to, Class<? extends T[]> newType) argument
2546 copyOfRange(byte[] original, int from, int to) argument
2582 copyOfRange(short[] original, int from, int to) argument
2618 copyOfRange(int[] original, int from, int to) argument
2654 copyOfRange(long[] original, int from, int to) argument
2690 copyOfRange(char[] original, int from, int to) argument
2726 copyOfRange(float[] original, int from, int to) argument
2762 copyOfRange(double[] original, int from, int to) argument
2798 copyOfRange(boolean[] original, int from, int to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java33 * <p> A matcher is created from a pattern by invoking the pattern's {@link
64 * new strings whose contents can, if desired, be computed from the match
122 int from, to; field in class:Matcher
307 from = 0;
350 * <p> <a href="Pattern.html#cg">Capturing groups</a> are indexed from left
397 * <p> <a href="Pattern.html#cg">Capturing groups</a> are indexed from left
457 * <p> <a href="Pattern.html#cg">Capturing groups</a> are indexed from left
559 return match(from, ENDANCHOR);
583 if (nextSearchIndex < from)
584 nextSearchIndex = from;
1190 search(int from) argument
1212 match(int from, int anchor) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp163 VerificationType* from, VerificationType* to, int32_t len, TRAPS) const {
166 if (!to[i].is_assignable_from(from[i], verifier(), THREAD)) {
162 is_assignable_to( VerificationType* from, VerificationType* to, int32_t len, TRAPS) const argument
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp98 PSHeapSummary(VirtualSpaceSummary& heap_space, size_t heap_used, VirtualSpaceSummary old, SpaceSummary old_space, VirtualSpaceSummary young, SpaceSummary eden, SpaceSummary from, SpaceSummary to) : argument
99 GCHeapSummary(heap_space, heap_used), _old(old), _old_space(old_space), _young(young), _eden(eden), _from(from), _to(to) { }
104 const SpaceSummary& from() const { return _from; } function in class:PSHeapSummary
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java34 * Histogram derived from an integer array of events (int[]).
114 * Each row of the matrix (apart from its first element)
592 boolean isSorted(int[] values, int from, boolean strict) { argument
593 for (int i = from+1; i < values.length; i++) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DLineWidget.java64 private Point from; field in class:LineWidget
75 public LineWidget(DiagramScene scene, OutputSlot s, List<Connection> connections, Point from, Point to, LineWidget predecessor, SceneAnimator animator, boolean isBold, boolean isDashed) { argument
80 this.from = from;
91 int minX = from.x;
92 int minY = from.y;
126 return from;
171 g.drawLine(from.x, from.y, to.x, to.y);
195 new int[]{from
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp218 void JvmtiManageCapabilities::copy_capabilities(const jvmtiCapabilities *from, jvmtiCapabilities *to) { argument
219 char *ap = (char *)from;
261 // onload capabilities that got added are now permanent - so, also remove from onload

Completed in 155 milliseconds

12345678