Searched refs:to (Results 251 - 275 of 331) sorted by relevance

<<11121314

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java14 * Unless required by applicable law or agreed to in writing, software
75 * This is a pipeline component which performs XInclude handling, according to the
82 * When it finds an &lt;include&gt; element, it attempts to include the file specified
90 * more information on how XInclude is to be used.
106 * to be an instance of <code>XIncludeNamespaceSupport</code>.
198 /** Feature identifier: allow notation and unparsed entity events to be sent out of order. */
238 * For DOM/SAX, the secure feature is set to true by default
272 // It "feels wrong" to store this value here. However,
274 // It's never going to change in the lifetime of this XIncludeHandler
277 // we cache the child parser configuration, so we don't have to r
2632 copyFeatures( XMLComponentManager from, ParserConfigurationSettings to) argument
2641 copyFeatures( XMLComponentManager from, XMLParserConfiguration to) argument
2650 copyFeatures1( Enumeration features, String featurePrefix, XMLComponentManager from, ParserConfigurationSettings to) argument
2670 copyFeatures1( Enumeration features, String featurePrefix, XMLComponentManager from, XMLParserConfiguration to) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
39 // -D57110<daz> Allow ID pragma directive to be applied to modules and update
40 // feature in accordance to CORBA 2.3.
171 // will process escaped identifiers according to specification.
435 parser.token = token; // Since parser to parse, give it this token
442 parser.token = token; // Since parser to parse, give it this token
646 // Add pragma entry to container
664 // we are adding extensions to th
1190 replaceAll(String string, String from, String to) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
38 * (handed off through a series of LTTextAcceptor calls). Can be used to
39 * generate RTF from any object which knows how to write to a text acceptor
54 to Integers */
115 static public void writeDocument(Document d, OutputStream to) argument
118 RTFGenerator gen = new RTFGenerator(to);
126 a way to iterate more generically ? */
134 public RTFGenerator(OutputStream to) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
200 // Returns a bitmap indicating which locals are required to be
203 // may mark all locals as live to improve support for debugging Java
209 // conservative in the sense that it may consider locals to be live which
213 // used when gc'ing an interpreter frame we need to use its viewpoint
241 // Find the proper vtable index to invoke this method.
300 void print_codes_on(int from, int to, outputStream* st);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
106 // Update sizes to reflect the selected page size(s).
110 // move to the common code.
118 // Align old gen size down to preserve specified heap size.
145 // alignment" ReservedSpace ctor to avoid having to use the same page size for
153 // Failed to reserve at specified address - the requested memory
155 // Try again to reserver heap higher.
160 // Failed to reserve at specified address again - give up.
270 // Need to ini
914 MutableSpace* to = young_gen()->to_space(); local
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
56 // Helper functions to access current interpreter state
63 // pass method to avoid calling unsafe bcp_to_method (partial fix 4926272)
148 intptr_t* from, intptr_t* to);
H A DtemplateInterpreter.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
339 // (Note: this is not safepoint safe because thread may return to compiled code)
523 // dispatch to next bytecode
555 static inline void copy_table(address* from, address* to, int size) {
556 // Copy non-overlapping tables. The copy has to occur word wise for MT safety.
557 while (size-- > 0) *to++ = *from++;
562 // switch to safepoint dispatch table
568 // switch from the dispatch table which notices safepoints back to the
576 // switch to normal dispatch table
586 // If deoptimization happens, this function returns the point of next bytecode to continu
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
41 // to-space.
50 // Size of object to pretenure in words; command line provides bytes
55 // Initialize state to optimistically assume no promotion failure will
74 // Objects may be in eden, from-space, or to-space
76 // in to-space. If B exists, all roots that once pointed
77 // to A must now point to B.
79 // Eden, from-space, and to-space will all be collected by
218 ContiguousSpace* to() cons function in class:DefNewGeneration
[all...]
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
34 * A class that implements the FTP protocol according to
45 * A typical usage would consist of connecting the client to the server,
61 * like a connection reset, and they are usually fatal to the session, meaning,
62 * in all likelyhood the connection to the server has been lost and the session
65 * like when trying to download a non-existing file for example. These errors
66 * are usually non fatal to the session, meaning more commands can be sent to the
70 * too much sense, due to th
517 rename(String from, String to) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c3 * Use is subject to license terms.
16 * along with this library; if not, write to the Free Software Foundation,
51 This table is used to compute output lengths for the mp_toradix()
77 /* Value to digit maps for radix conversion */
192 /* {{{ mp_copy(from, to) */
195 mp_copy(from, to)
197 Copies the mp_int 'from' to the mp_int 'to'. It is presumed that
198 'to' has already been initialized (if not, use mp_init_copy()
199 instead). If 'from' and 'to' ar
202 mp_copy(const mp_int *from, mp_int *to) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLMessages_ja.properties7 * particular file as subject to the "Classpath" exception as provided
17 * 2 along with this work; if not, write to the Free Software Foundation,
29 # This file contains error and warning messages related to XML
96 # Messages common to Document and DTD
292 AccessExternalDTD = External DTD: Failed to read external DTD ''{0}'', because ''{1}'' access is not allowed due to restriction set by the accessExternalDTD property.
293 AccessExternalEntity = External Entity: Failed to read external document ''{0}'', because ''{1}'' access is not allowed due to restriction set by the accessExternalDTD property.
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
52 * styles in a manner similar to the Rich Text Format. The element
57 * assigned to paragraph boundaries.
65 * has been added to the <code>java.beans</code> package.
120 * Initialize the document to reflect the given element
167 * Inserts new elements in bulk. This is useful to allow
170 * takes an array of tokens that describe how to update an
177 * to Use Threads</A> for more information.
202 // Nothing to inser
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DResolve.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
57 * This code and its internal interfaces are subject to change or
176 // of anonymous classes should be allowed to access
261 // OK to select instance method or field from 'super' or type name
302 // only to instance fields and methods -- types are excluded
309 /** Try to instantiate the type of a method so that it fits
341 // need to inferred.
363 throw inapplicableMethodException.setMessage("explicit.param.do.not.conform.to.bounds",actuals.head, bounds);
375 // find out whether we need to g
826 adjustVarargs(Symbol to, Symbol from, boolean useVarargs) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
129 // TODO(maybe): very tempting to use fixed point here. A lot of opportunities
132 // common to all types of input path segments.
135 // NEXT and OR are meant to be indices into "int" fields, but arrays must
137 // exactly up to 26 bit ints, so we're ok.
148 // don't just set NULL to -1, because we want NULL+NEXT to be negative.
159 // each bucket is a linked list. this method adds eptr to the
205 // Another alternative would be to pas
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DSimpleDateFormat.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
34 * patents. This notice and attribution to Taligent may not be removed.
67 * <code>SimpleDateFormat</code> allows you to start by choosing
69 * are encouraged to create a date-time formatter with either
83 * <code>'A'</code> to <code>'Z'</code> and from <code>'a'</code> to
86 * Text can be quoted using single quotes (<code>'</code>) to avoid
94 * <code>'A'</code> to <code>'Z'</code> and from <code>'a'</code> to
2135 translatePattern(String pattern, String from, String to) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceSend.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
117 // Common to CMS and G1
214 e.set_toSpace(to_trace_struct(ps_heap_summary->to()));
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
75 * The KeyboardFocusManager is both a centralized location for client code to
77 * dispatcher for all FocusEvents, WindowEvents related to focus, and
92 * How to Use the Focus Subsystem</a>,
237 * the AWTPermission "replaceKeyboardFocusManager" in order to replace the
246 * to replace the current KeyboardFocusManager
363 * root, then it may be ambiguous as to which Components represent the next
364 * and previous Components to focus during normal focus traversal. In that
365 * case, the current focus cycle root is used to differentiat
2960 focusedWindowChanged(Component to, Component from) argument
2975 isTemporary(Component to, Component from) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
76 // op codes such as ld or ldx, only access disp() to get
125 // Patch instruction inst at offset inst_pos to refer to dest_pos
536 // Generate a bunch 'o stuff unique to V8
584 // nothing to do, (later) access of M[reg + offset]
622 call(L, relocInfo::none); // No relocation for call to pc+0x8
657 call(L, relocInfo::none); // No relocation for call to pc+0x8
676 // This code sequence is relocatable to any address, even on LP64.
682 Address a(temp, addrlit.low10() + offset); // Add the offset to th
4907 bis_zeroing(Register to, Register count, Register temp, Label& Ldone) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
154 * Call this to throw an internal UnixException when a system/library
356 /* TDB - need to decide if EIO and other errors should cause exception */
726 const char* to = (const char*)jlong_to_ptr(toAddress); local
729 if (rename(from, to) == -1) {
739 const char* to = (const char*)jlong_to_ptr(toAddress); local
747 if ((*my_renameat_func)((int)fromfd, from, (int)tofd, to) == -1) {
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileAttributes.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
112 // used to adjust values between Windows and java epoch
139 * since January 1, 1601 to a FileTime.
144 // adjust to java epoch
150 * Convert FileTime to 64-bit value representing the number of 100-nanosecond
154 long value = time.to(TimeUnit.MICROSECONDS);
155 // adjust to Windows epoch+= 11644473600000000L;
304 // GetFileAttributesEx is the fastest way to read the attributes
324 // For sharing violations, fallback to FindFirstFil
[all...]
/openjdk7/make/scripts/
H A Dvsvars.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
26 # This file should be used to set the Visual Studio environment
187 # Force user to select
196 msg " -debug Print out extra env variables to help debug this script"
263 # Need to pick
269 # Which vcvars bat file to run
292 echo "# Welcome to verbose mode"
297 echo "# Welcome to debug mode"
367 # Create bat file to process Visual Studio vcvars*.bat files
390 REM Run the vcvars bat file, send all output to stder
[all...]
H A Dwebrev.ksh5 # The contents of this file are subject to the terms of the
23 # Use is subject to license terms.
46 Note to customizers: the body of the webrev is IDed as SUNWwebrev
47 to allow easy overriding by users of webrev via the userContent.css
50 For example, to have all "removed" information be red instead of
119 # want them to be bolded as we do in cdiffs or sdiffs).
145 # Scan for bugids and insert <a> links to the relevent bug database.
155 # Scan for ARC cases and insert <a> links to the relevent SAC database.
173 # easier for a code reviewer to find the bits that have changed.
176 # identical lines are retained before and after the changed lines to
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassLoader.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
66 * href="#name">binary name</a> of a class, a class loader should attempt to
68 * typical strategy is to transform the name into a file name and then read a
72 * Class#getClassLoader() reference} to the <tt>ClassLoader</tt> that defined
82 * <p> Applications implement subclasses of <tt>ClassLoader</tt> in order to
86 * <p> Class loaders may typically be used by security managers to indicate
89 * <p> The <tt>ClassLoader</tt> class uses a delegation model to search for
91 * associated parent class loader. When requested to find a class or
93 * class or resource to it
1525 needsClassLoaderPermissionCheck(ClassLoader from, ClassLoader to) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
519 assert(end != NULL, "should not reset block end to NULL");
555 void BlockBegin::disconnect_edge(BlockBegin* from, BlockBegin* to) { argument
556 // disconnect any edges between from and to
559 tty->print_cr("Disconnected edge B%d -> B%d", from->block_id(), to->block_id());
564 if (sux == to) {
603 // In general it is not possible to calculate a value for the field "depth_first_number"
624 // link predecessor to new block
627 // The ordering needs to be the same, so remove the link that the
648 // link the new block back to i
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DRicochetTest.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
501 msg = ("applying "+x+" & "+y+" to "+v);
625 private static MethodType subst(MethodType mt, Class<?> from, Class<?> to) { argument
628 mt = mt.changeParameterType(i, to);
631 mt = mt.changeReturnType(to);

Completed in 111 milliseconds

<<11121314