Searched defs:from (Results 1 - 25 of 197) sorted by relevance

12345678

/openjdk7/hotspot/test/compiler/7174363/
H A DTest7174363.java28 * @summary crash with Arrays.copyOfRange(original, from, to) when from > original.length
37 static Object[] m(Object[] original, int from, int to) { argument
38 return Arrays.copyOfRange(original, from, to, Object[].class);
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DExpandingMap.java117 static void fillBuffer(ByteBuffer buf, int from) { argument
119 for (int i=from; i<limit; i++) {
/openjdk7/langtools/test/tools/javac/generics/
H A DUnsoundInference.java45 public static <Var> void transferBug(Var[] from, Collection<Var> to) { argument
46 to.add(from[0]);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DRequestFocusController.java31 public boolean acceptRequestFocus(Component from, Component to, argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.cpp31 void Copy::conjoint_memory_atomic(void* from, void* to, size_t size) { argument
32 address src = (address) from;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLocalVariable.java44 int from; field in class:LocalVariable
56 LocalVariable(MemberDefinition field, int slot, int from, int to) { argument
59 this.from = from;
H A DLocalVariableTable.java49 void define(MemberDefinition field, int slot, int from, int to) { argument
50 if (from >= to) {
55 (from <= locals[i].to) && (to >= locals[i].from)) {
56 locals[i].from = Math.min(locals[i].from, from);
66 locals[len++] = new LocalVariable(field, slot, from, to);
84 && (locals[i].from <= locals[j].to)
85 && (locals[i].to >= locals[j].from)) {
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DAddAll.java62 private static Integer[] range(int from, int to) { argument
63 Integer[] result = new Integer[to - from];
64 for (int i = from, j=0; i < to; i++, j++)
/openjdk7/jdk/test/sun/security/krb5/
H A DParseCAPaths.java74 static void check(String from, String to, String... paths) { argument
76 check2(from, to, paths);
82 static void check2(String from, String to, String... paths) argument
84 System.out.println(from + " -> " + to);
86 String[] result = Realm.getRealmsList(from, to);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DOutputBuffer.java34 public OutputBuffer append(char[] s, int from, int to); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DReversePtrs.java39 public void put(LivenessPathElement from, Oop to) { argument
44 // paths from LivenessAnalysis to look more like they used to;
47 al.add(0, (Object) from);
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableColumnModelEvent.java54 /** The index of the column from where it was moved or removed */
68 * @param from an int specifying the index from where the column was
75 public TableColumnModelEvent(TableColumnModel source, int from, int to) { argument
77 fromIndex = from;
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryNotificationInfo.java60 * The {@link #from from} method is provided to convert from
75 * MemoryNotificationInfo info = MemoryNotificationInfo.from(cd);
245 public static MemoryNotificationInfo from(CompositeData cd) { method in class:MemoryNotificationInfo
H A DMemoryUsage.java44 * the Java virtual machine requests from the operating system
46 * may request additional memory from the operating system and
103 * with attributes as specified in the {@link #from from} method.
173 * Constructs a <tt>MemoryUsage</tt> object from a
188 * initially requests from the operating system for memory management.
291 public static MemoryUsage from(CompositeData cd) { method in class:MemoryUsage
H A DMonitorInfo.java38 * the {@link #from from} method.
118 * attribute defined in the {@link ThreadInfo#from
119 * ThreadInfo.from} method.
139 public static MonitorInfo from(CompositeData cd) { method in class:MonitorInfo
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.cpp45 const VerificationType& from, ClassVerifier* context, TRAPS) const {
47 if (from.is_null()) {
52 } else if (name() == from.name()) {
69 } else if (from.is_object()) {
71 from.name(), Handle(THREAD, klass->class_loader()),
75 } else if (is_array() && from.is_array()) {
77 VerificationType comp_from = from.get_component(context, CHECK_false);
44 is_reference_assignable_from( const VerificationType& from, ClassVerifier* context, TRAPS) const argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.inline.hpp41 inline void G1RemSet::write_ref(HeapRegion* from, T* p) { argument
42 par_write_ref(from, p, 0);
46 inline void G1RemSet::par_write_ref(HeapRegion* from, T* p, int tid) { argument
64 assert(from == NULL || from->is_in_reserved(p), "p is not in from");
67 if (to != NULL && from != to) {
75 assert(_from != NULL, "from region must be non-NULL");
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBlockEdge.java32 private InputBlock from; field in class:InputBlockEdge
35 public InputBlockEdge(InputBlock from, InputBlock to) { argument
36 assert from != null;
38 this.from = from;
43 return from;
54 return e.from.equals(from) && e.to.equals(to);
61 int hash = from.hashCode();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DClusterEdge.java37 private ClusterNode from; field in class:ClusterEdge
41 public ClusterEdge(ClusterNode from, ClusterNode to) { argument
42 assert from != null;
44 this.from = from;
53 return from.getInputSlot();
/openjdk7/jdk/test/tools/jar/index/
H A DMetaInf.java49 static void copy(File from, File to) throws IOException { argument
50 FileInputStream in = new FileInputStream(from);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbAsReq.java56 KerberosTime from, // ok
80 // if (from == null)
83 if (from != null) from = null;
133 from,
52 KrbAsReq(EncryptionKey pakey, KDCOptions options, PrincipalName cname, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses ) argument
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpFileSystemHandler.java100 * @param from the name of the file to rename.
105 public boolean rename(String from, String to); argument
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dsecitem.c135 SECITEM_CopyItem(PRArenaPool *arena, SECItem *to, const SECItem *from, argument
138 to->type = from->type;
139 if (from->data && from->len) {
141 to->data = (unsigned char*) PORT_ArenaAlloc(arena, from->len,
144 to->data = (unsigned char*) PORT_Alloc(from->len, kmflag);
150 PORT_Memcpy(to->data, from->data, from->len);
151 to->len = from->len;
/openjdk7/langtools/test/tools/javadoc/T4994049/
H A DT4994049.java65 throw new Error("Unexpected return code from javadoc: " + rc);
69 static void initTabs(File from, File to) throws IOException { argument
70 for (File f: from.listFiles()) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMultiHashtable.java43 public Object maps(Object from, Object to) { argument
44 if (from == null) return null;
45 final Vector vector = (Vector) get(from);

Completed in 134 milliseconds

12345678