Searched defs:result (Results 226 - 250 of 605) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorImpl.java95 public void validate(Source source, Result result) argument
102 fSAXValidatorHelper.validate(source, result);
109 fDOMValidatorHelper.validate(source, result);
116 fStreamValidatorHelper.validate(source, result);
123 fStaxValidatorHelper.validate(source, result);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java74 * @param result DOMResult object @javax.xml.transform.dom.DOMResult
76 public XMLDOMWriterImpl(DOMResult result) { argument
78 node = result.getNode();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DRequestImpl.java128 // set result container.
163 public NamedValue result() method in class:RequestImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DDynamicMethodMarshallerImpl.java55 boolean needsResultCopy ; // true if copyObject call needs for result
406 Object[] result = null ;
409 result = new Object[ argRWs.length ] ;
411 result[ctr] = argRWs[ctr].read( is ) ;
414 return result ;
429 public Object copyResult( Object result, ORB orb ) throws RemoteException argument
432 return Util.copyObject( result, orb ) ;
434 return result ;
445 public void writeResult( OutputStream os, Object result )
448 resultRW.write( os, result ) ;
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientDelegateImpl.java357 NamedValue result)
360 result, null, null);
367 NamedValue result,
371 return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
353 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) argument
363 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DLocalObject.java186 * @param result a <code>NamedValue</code> object to serve as a
197 NamedValue result) {
212 * @param result a <code>NamedValue</code> object to serve as a
229 NamedValue result,
194 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
226 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DDelegate.java126 * @param result A container for the result as a NamedValue.
134 NamedValue result);
145 * @param result A container for the result as a NamedValue.
157 NamedValue result,
220 * other policy will result in the raising of the CORBA::NO_PERMISSION
130 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) argument
153 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
H A DObjectImpl.java186 * method, argument list, and container for the result.
193 * @param result a <code>NamedValue</code> object to be used for
194 * returning the result of executing the request's method
202 NamedValue result) {
207 result);
212 * method, argument list, container for the result, exceptions, and
224 * @param result a <code>NamedValue</code> object to be used for
225 * returning the result of executing the request's method
235 * container for the result, exceptions, and list of property
241 NamedValue result,
199 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
238 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java445 * applied to the specified <code>result</code>. The
456 * @param result the result of processing the sequence of
470 * <code>appliedTransforms</code> or <code>result</code> is
474 List appliedTransforms, Data result, List transforms, String type,
473 newReference(String uri, DigestMethod dm, List appliedTransforms, Data result, List transforms, String type, String id) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMReference.java132 List appliedTransforms, Data result, List transforms, String id,
135 result, transforms, id, null, provider);
139 List appliedTransforms, Data result, List transforms, String id,
183 this.appliedTransformData = result;
131 DOMReference(String uri, String type, DigestMethod dm, List appliedTransforms, Data result, List transforms, String id, Provider provider) argument
138 DOMReference(String uri, String type, DigestMethod dm, List appliedTransforms, Data result, List transforms, String id, byte[] digestValue, Provider provider) argument
H A DDOMXMLSignatureFactory.java74 List appliedTransforms, Data result, List transforms, String type,
82 if (result == null) {
83 throw new NullPointerException("result cannot be null");
86 (uri, type, dm, appliedTransforms, result, transforms, id, getProvider());
73 newReference(String uri, DigestMethod dm, List appliedTransforms, Data result, List transforms, String type, String id) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.java197 int result = 1;
208 if (length > result && valueList[length-1] == order) {
209 result = length;
214 return result;
248 static void reverse (StringBuffer result, int from, int to) argument
255 swap = result.charAt(i);
256 result.setCharAt(i, result.charAt(j));
257 result.setCharAt(j, swap);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExecutors.java358 * called, runs the given task and returns the given result. This
362 * @param result the result to return
366 public static <T> Callable<T> callable(Runnable task, T result) { argument
369 return new RunnableAdapter<T>(task, result);
387 * called, runs the given privileged action and returns its result.
402 * its result.
461 * A callable that runs given task and returns given result
465 final T result; field in class:Executors.RunnableAdapter
466 RunnableAdapter(Runnable task, T result) { argument
643 submit(Runnable task, T result) argument
[all...]
H A DFutureTask.java43 * retrieve the result of the computation. The result can only be
61 * @param <V> The result type returned by this FutureTask's {@code get} methods
103 /** The result to return or exception to throw from get() */
111 * Returns result or throws exception for completed task.
142 * given result on successful completion.
145 * @param result the result to return on successful completion. If
146 * you don't need a particular result, consider using
151 public FutureTask(Runnable runnable, V result) { argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.cpp99 bool result = true; local
105 result = frame->is_assignable_to(stackmap_frame, is_exception_handler,
106 ctx, CHECK_VERIFY_(frame->verifier(), result));
122 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.cpp39 const char* result = "unknown GCTask kind"; local
42 result = "unknown GCTask kind";
45 result = "unknown task";
48 result = "ordinary task";
51 result = "barrier task";
54 result = "noop task";
57 result = "idle task";
60 return result;
110 GCTaskQueue* result = new GCTaskQueue(false); local
113 " returns " INTPTR_FORMAT, result);
119 GCTaskQueue* result = new(ResourceObj::C_HEAP, mtGC) GCTaskQueue(true); local
238 GCTask* result = remove(); local
256 GCTask* result = NULL; local
283 GCTask* result = remove_end(); local
305 GCTask* result = task; local
[all...]
H A DpsAdaptiveSizePolicy.hpp282 bool result = _change_old_gen_for_maj_pauses != 0 || local
284 return result;
290 bool result = _change_young_gen_for_min_pauses != 0 || local
292 return result;
299 bool result = _change_old_gen_for_throughput != 0; local
300 return result;
306 bool result = _change_young_gen_for_throughput != 0; local
307 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.cpp197 HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj); local
198 // result can be one of two:
201 if (result != obj) {
H A DvmGCOperations.hpp175 HeapWord* result() const { return _res; } function in class:VM_GenCollectForAllocation
213 HeapWord* result() const { return _res; } function in class:VM_GenCollectForPermanentAllocation
/openjdk7/hotspot/src/share/vm/memory/
H A DcollectorPolicy.cpp157 bool result = _should_clear_all_soft_refs; local
159 return result;
423 bool result = false; local
433 result = true;
441 return result;
551 HeapWord* result = NULL; local
563 result = gen0->par_allocate(size, is_tlab);
564 if (result != NULL) {
565 assert(gch->is_in_reserved(result), "result no
669 HeapWord* result = NULL; local
684 HeapWord* result = NULL; local
[all...]
H A Dfilemap.cpp312 bool result = (map_region(i, rs) != NULL); local
313 if (space != NULL && result) {
317 return result;
H A DoopFactory.cpp51 typeArrayOop result = new_charArray(length, CHECK_NULL); local
53 UTF8::convert_to_unicode(utf8_str, result->char_at_addr(0), length);
55 return result;
80 typeArrayOop result = type_asArrayKlass->allocate_common(length, true, THREAD); local
81 return result;
87 typeArrayOop result = type_asArrayKlass->allocate_common(length, false, THREAD); local
88 return result;
H A DtenuredGeneration.cpp267 bool result = false; local
268 if (!result && full) {
269 result = true;
275 if (!result && should_allocate(size, is_tlab)) {
276 result = true;
285 if (!result && free() < 10000) {
286 result = true;
294 if (!result && _capacity_at_prologue < capacity()) {
295 result = true;
302 return result;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DRepository.java222 * result set for the given ObjectNamePattern
227 final Set<NamedObject> result,
233 if (pattern.matchKeys(on)) result.add(no);
347 final List<String> result;
350 result = new ArrayList<String>(domainTb.size());
358 result.add(entry.getKey());
364 // Make an array from result.
365 return result.toArray(new String[result.size()]);
513 final Set<NamedObject> result
226 addAllMatching(final Map<String,NamedObject> moiTb, final Set<NamedObject> result, final ObjectNamePattern pattern) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibNode.java254 public void getRootOid(Vector<Integer> result) { argument

Completed in 71 milliseconds

1234567891011>>