Searched defs:from (Results 101 - 125 of 197) sorted by relevance

12345678

/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c366 jobject from, jobject to)
370 WITH_FIELD_PLATFORM_STRING(env, from, ids.path, fromPath) {
365 Java_java_io_UnixFileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java108 return new List<A>(x1, new List<A>(x2, new List<A>(x3, from(rest))));
115 public static <A> List<A> from(A[] array) { method in class:List
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c42 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
43 * - Remove unnecessary second byte pull from length extra in inffast.c
67 * - Move a comment on output buffer sizes from inffast.c to inflate.c
89 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
221 fixed code decoding. Normally this returns fixed tables from inffixed.h.
343 upon return from inflate(), and since all distances after the first 32K of
437 /* Restore state from registers in inflate() */
455 /* Get a byte of input into the bit accumulator, or return from inflate()
466 not enough available input to do that, then return from inflate(). */
477 /* Remove n bits from th
590 unsigned char FAR *from; /* where to copy match bytes from */ local
[all...]
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethod.java17 * from this software without specific prior written permission.
121 case ' ': // Exit from composition mode
421 private int getCodePoint(StringBuffer sb, int from, int to) { argument
423 for (int i = from; i <= to; i++) {
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericArrayTypeTest.java72 public static MonitorInfo from(CompositeData cd) { method in class:GenericArrayTypeTest.MonitorInfo
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DRemoteClass.java307 * Now we collect the methods from all of the remote interfaces
385 * Collect and validate all methods from given interface and all of
401 * extend from Remote. The current version of rmic does not have
570 * digest is from a stream consisting of the following data:
682 * from multiple remote interfaces, the array will contain
725 * Member definition for this method, from one of the remote
813 * Add to the supplied list all exceptions in the "from" array
816 private void collectCompatibleExceptions(ClassDeclaration[] from, argument
821 for (int i = 0; i < from.length; i++) {
822 ClassDefinition exceptionDef = from[
[all...]
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java216 ListBuffer<Type> from = ListBuffer.lb();
219 from.append(tm.from);
222 return types.subst(t, from.toList(), to.toList());
225 /** create a fresh type mapping from a type to another */
226 public Mapping Mapping(Type from, Type to) { argument
227 return new Mapping(from, to);
231 Type from; field in class:TypeHarness.Mapping
233 private Mapping(Type from, Type to) { argument
234 this.from
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java34 * derived from this software without prior written permission. For
37 * 5. Products derived from this software may not be called "Apache",
162 * This only works properly, if the list is freshly initialized from a byte array or
174 * Initialize instruction list from byte array.
193 /* Read one instruction from the byte stream, the byte position is set
629 * Take all instructions (handles) from "start" to "end" and append them after the
657 // Step 2: Temporarily remove the given instructions from the list
701 * Remove from instruction `prev' to instruction `next' both contained
734 first.prev = null; // Completely separated from rest of list
765 * Remove instruction from thi
797 delete(InstructionHandle from, InstructionHandle to) argument
811 delete(Instruction from, Instruction to) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractTraverser.java144 // fish out local attributes passed from parent
207 // fish out local attributes passed from parent
315 // need to use the namespace context returned from checkAttributes
819 private static String escapeAttValue(String original, int from) { argument
823 newVal.append(original.substring(0, from));
824 for (i = from; i < length; ++i) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLWriter.java114 * @param pos the document location from which to fetch the content
754 * then the tag is removed from the vector and a corresponding
994 AttributeSet convertToHTML(AttributeSet from, MutableAttributeSet to) { argument
1000 convertToHTML40(from, to);
1002 convertToHTML32(from, to);
1031 private static void convertToHTML32(AttributeSet from, MutableAttributeSet to) { argument
1032 if (from == null) {
1035 Enumeration keys = from.getAttributeNames();
1044 createFontAttribute((CSS.Attribute)key, from, to);
1048 from
1117 createFontAttribute(CSS.Attribute a, AttributeSet from, MutableAttributeSet to) argument
1141 convertToHTML40(AttributeSet from, MutableAttributeSet to) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.hpp45 void set_region(HeapRegion* from) { _from = from; } argument
293 void set_from(HeapRegion* from) { argument
294 assert(from != NULL, "from region must be non-NULL");
295 _from = from;
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.hpp40 // DefNewGeneration is a young generation containing eden, from- and
65 // location in eden or from-space during the collection. If
70 // Objects are in eden or from-space
71 // All roots into the young generation point into eden or from-space.
74 // Objects may be in eden, from-space, or to-space
75 // An object A in eden or from-space may have a copy B
79 // Eden, from-space, and to-space will all be collected by
83 // In the absence of promotion failure, we wouldn't look at "from-space"
85 // the subsequent full collection will look at from-space objects:
217 ContiguousSpace* from() cons function in class:DefNewGeneration
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DobjArrayKlass.cpp140 T* from = src; local
141 T* end = from + length;
142 for (T* p = dst; from < end; from++, p++) {
144 T element = *from;
152 *p = *from;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMib.java126 * @param from Index of the first element from <var>src</var> that
132 public final void add(final int at,final long[] src, final int from, argument
140 java.lang.System.arraycopy(src,from,list,at,count);
148 public final long remove(final int from, final int count) { argument
149 if (count < 1 || from < 0) return -1;
150 if (from+count > size) return -1;
152 final long o = list[from];
156 if (from == size) return o;
158 java.lang.System.arraycopy(list,from
310 add(final int at,final long[] src, final int from, final int count) argument
316 remove(final int from, final int count) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.inline.hpp46 inline void BytecodeInterpreter::VMmemCopy64(uint32_t to[2], const uint32_t from[2]) { argument
48 to[0] = from[0]; to[1] = from[1];
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.inline.hpp46 inline void BytecodeInterpreter::VMmemCopy64(uint32_t to[2], const uint32_t from[2]) { argument
48 to[0] = from[0]; to[1] = from[1];
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.inline.hpp66 const uint32_t from[2]) {
67 *(uint64_t *) to = *(uint64_t *) from;
65 VMmemCopy64(uint32_t to[2], const uint32_t from[2]) argument
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp480 void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) { argument
481 if (from > to) {
482 jshort *end = from + count;
483 while (from < end)
484 *(to++) = *(from++);
486 else if (from < to) {
487 jshort *end = from;
488 from += count - 1;
490 while (from >= end)
491 *(to--) = *(from
494 _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
508 _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
523 _Copy_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
528 _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
533 _Copy_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
538 _Copy_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp424 void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) { argument
425 if (from > to) {
426 jshort *end = from + count;
427 while (from < end)
428 *(to++) = *(from++);
430 else if (from < to) {
431 jshort *end = from;
432 from += count - 1;
434 while (from >= end)
435 *(to--) = *(from
438 _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
452 _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
467 _Copy_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
472 _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
477 _Copy_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
482 _Copy_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp140 // Time-critical: called on exit from every runtime routine
141 static inline void transition(JavaThread *thread, JavaThreadState from, JavaThreadState to) { argument
142 assert(from != _thread_in_Java, "use transition_from_java");
143 assert(from != _thread_in_native, "use transition_from_native");
144 assert((from & 1) == 0 && (to & 1) == 0, "odd numbers are transitions states");
145 assert(thread->thread_state() == from, "coming from wrong thread state");
147 thread->set_thread_state((JavaThreadState)(from + 1));
172 // fault and we can't recover from it on Windows without a SEH in
174 static inline void transition_and_fence(JavaThread *thread, JavaThreadState from, JavaThreadStat argument
237 trans(JavaThreadState from, JavaThreadState to) argument
240 trans_and_fence(JavaThreadState from, JavaThreadState to) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A Dbsd_close.c157 * Remove thread from thread list for the fd
300 struct sockaddr *from, int *fromlen) {
302 BLOCKING_IO_RETURN_INT( s, recvfrom(s, buf, len, flags, from, (socklen_t *)fromlen) );
299 NET_RecvFrom(int s, void *buf, int len, unsigned int flags, struct sockaddr *from, int *fromlen) argument
H A Dlinux_close.c140 * Remove thread from thread list for the fd
283 struct sockaddr *from, int *fromlen) {
285 BLOCKING_IO_RETURN_INT( s, recvfrom(s, buf, len, flags, from, &socklen) );
282 NET_RecvFrom(int s, void *buf, int len, unsigned int flags, struct sockaddr *from, int *fromlen) argument
/openjdk7/jdk/src/solaris/transport/socket/
H A Dsocket_md.c89 int flags, struct sockaddr *from, int *fromlen) {
92 rv = recvfrom(fd, buf, nBytes, flags, from, fromlen);
88 dbgsysRecvFrom(int fd, char *buf, int nBytes, int flags, struct sockaddr *from, int *fromlen) argument
/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_md.c119 returned result from GetFullPathName. If the file name in the path
403 jobject from, jobject to)
407 WITH_NATIVE_PATH(env, from, ids.path, fromPath) {
402 Java_java_io_Win32FileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEGlyphStorage.cpp481 void LEGlyphStorage::adoptGlyphArray(LEGlyphStorage &from) argument
487 fGlyphs = from.fGlyphs;
488 from.fGlyphs = NULL;
494 fInsertionList = from.fInsertionList;
495 from.fInsertionList = NULL;
498 void LEGlyphStorage::adoptCharIndicesArray(LEGlyphStorage &from) argument
504 fCharIndices = from.fCharIndices;
505 from.fCharIndices = NULL;
508 void LEGlyphStorage::adoptPositionArray(LEGlyphStorage &from) argument
514 fPositions = from
518 adoptAuxDataArray(LEGlyphStorage &from) argument
528 adoptGlyphCount(LEGlyphStorage &from) argument
[all...]

Completed in 135 milliseconds

12345678