Searched defs:result (Results 326 - 350 of 605) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/management/
H A DThreadImpl.java453 ThreadInfo[] result);
455 private static native void getThreadTotalCpuTime1(long[] ids, long[] result); argument
457 private static native void getThreadUserCpuTime1(long[] ids, long[] result); argument
458 private static native void getThreadAllocatedMemory1(long[] ids, long[] result); argument
451 getThreadInfo1(long[] ids, int maxDepth, ThreadInfo[] result) argument
/openjdk7/jdk/src/share/native/sun/security/ec/
H A DECC_JNI.cpp81 jlongArray result = NULL; local
109 result = env->NewLongArray(2);
110 resultElements = env->GetLongArrayElements(result, &isCopy);
117 env->ReleaseLongArrayElements(result, resultElements, 0);
139 return result;
/openjdk7/jdk/src/share/native/sun/tracing/dtrace/
H A DJVM.c98 jobject result; local
110 result = (*env)->CallObjectMethod( local
112 result_clazz = (*env)->GetObjectClass(env, result); CHECK
114 attrs->nameStability = (*env)->CallIntMethod(env, result, enc); CHECK
118 result = (*env)->CallObjectMethod( local
120 result_clazz = (*env)->GetObjectClass(env, result); CHECK
122 attrs->dataStability = (*env)->CallIntMethod(env, result, enc); CHECK
126 result = (*env)->CallObjectMethod( local
128 result_clazz = (*env)->GetObjectClass(env, result); CHECK
130 attrs->dependencyClass = (*env)->CallIntMethod(env, result, en
263 jclass result = 0; local
[all...]
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBack.c154 JDWPTransportCapabilities result; local
156 memset(&result, 0, sizeof(result));
157 result.can_timeout_attach = JNI_TRUE;
158 result.can_timeout_accept = JNI_TRUE;
159 result.can_timeout_handshake = JNI_FALSE;
161 *capabilitiesPtr = result;
343 jint version, jdwpTransportEnv** result)
373 *result = &single_env;
342 jdwpTransport_OnLoad(JavaVM *vm, jdwpTransportCallback* cbTablePtr, jint version, jdwpTransportEnv** result) argument
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DNativeStrike.java52 * then apply the non-scale part of the font TX to that result.
272 Rectangle result) {
344 Point2D.Float pt, Rectangle result) {
345 delegateStrike.getGlyphImageBounds(glyphCode, pt, result);
271 getGlyphImageBounds(int glyphcode, Point2D.Float pt, Rectangle result) argument
343 getGlyphImageBounds(int glyphCode, Point2D.Float pt, Rectangle result) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerHandlerImpl.java127 * @param result A Result instance, should not be null
128 * @throws IllegalArgumentException if result is invalid for some reason
130 public void setResult(Result result) throws IllegalArgumentException { argument
131 _result = result;
133 if (null == result) {
135 throw new IllegalArgumentException(err.toString()); //"result should not be null");
142 _transformer.getOutputHandler(result);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMValidatorHelper.java133 /** DOM result augmentor. **/
136 /** DOM result builder. **/
170 public void validate(Source source, Result result) argument
172 if (result instanceof DOMResult || result == null) {
174 final DOMResult domResult = (DOMResult) result;
213 new Object [] {source.getClass().getName(), result.getClass().getName()}));
308 * Send the ProcessingInstruction node directly to the result builder.
317 * Send the Comment node directly to the result builder.
325 * Send the DocumentType node directly to the result builde
367 setupDOMResultHandler(DOMSource source, DOMResult result) argument
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java358 private String toResultString (TypeContext it, boolean result, boolean preExisting) { argument
361 if (result) {
370 if (result) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DMaskFormatter.java98 * Would result in the string '123-____'. If
100 * result. The placeholder String is only used on the initial format,
107 * arrow key to navigate through the field will result in (| indicates the
118 * Similar behavior will result when editing. Consider inserting the string
120 * previous example. Both inserts will result in the same String,
387 StringBuilder result = new StringBuilder();
391 append(result, sValue, valueCounter, placeholder, maskChars);
392 return result.toString();
486 private void append(StringBuilder result, String value, int[] index, argument
491 mask[counter].append(result, valu
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFileFontStrike.java697 Rectangle result) {
706 result.x = (int) Math.floor(pt.x);
707 result.y = (int) Math.floor(pt.y);
708 result.width = result.height = 0;
715 result.x = (int)Math.floor(pt.x + topLeftX);
716 result.y = (int)Math.floor(pt.y + topLeftY);
717 result.width =
719 result.height =
731 int minx = getGlyphImageMinX(ptr, (int)result
696 getGlyphImageBounds(int glyphCode, Point2D.Float pt, Rectangle result) argument
[all...]
H A DGlyphLayout.java187 GlyphLayout result = null;
190 result = cache;
194 if (result == null) {
195 result = new GlyphLayout();
197 result._lef = lef;
198 return result;
358 * @param result a StandardGlyphVector to modify, can be null
359 * @return the layed out glyphvector, if result was passed in, it is returned
363 int flags, StandardGlyphVector result)
492 gv = _gvdata.createGlyphVector(font, frc, result);
361 layout(Font font, FontRenderContext frc, char[] text, int offset, int count, int flags, StandardGlyphVector result) argument
580 createGlyphVector(Font font, FontRenderContext frc, StandardGlyphVector result) argument
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java335 int[] result = new int[intLen];
337 result[i] = value[offset+i];
338 return result;
483 int[] result = new int[newLen];
485 result[i] = value[offset+i];
486 setValue(result, newLen);
510 * divisor a back to the dividend result at a specified offset. It is used
513 private int divadd(int[] a, int[] result, int offset) { argument
518 (result[j+offset] & LONG_MASK) + carry;
519 result[
1079 divWord(int[] result, long n, int d) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DMessageFormat.java115 * with the pound-sign quoted, with a result such as: {@code
142 * or the result array returned by the {@code parse} methods.
234 * String result = MessageFormat.format(
304 * will be the final result of the parsing. For example,
308 * String result = mf.format( objs );
309 * // result now equals "3.14, 3.1"
311 * objs = mf.parse(result, new ParsePosition(0));
323 * // result now equals {new String("z")}
524 StringBuilder result = new StringBuilder();
526 copyAndFixQuotes(pattern, lastOffset, offsets[i], result);
816 format(Object[] arguments, StringBuffer result, FieldPosition pos) argument
857 format(Object arguments, StringBuffer result, FieldPosition pos) argument
1226 subformat(Object[] arguments, StringBuffer result, FieldPosition fp, List characterIterators) argument
1338 append(StringBuffer result, CharacterIterator iterator) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp178 int result = stream()->position(); local
183 assert(result != serialized_null, "sanity");
186 int shared_result = find_sharable_decode_offset(result);
188 stream()->set_position(result);
189 result = shared_result;
192 return result;
199 int result = stream()->position(); local
200 assert(result != serialized_null, "sanity");
207 int shared_result = find_sharable_decode_offset(result);
209 stream()->set_position(result);
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsAdaptiveSizePolicy.hpp394 double result = MIN2(1.0, minor_gc_cost() + msc_gc_cost()); local
395 assert(result >= 0.0, "Both minor and major costs are non-negative");
396 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.hpp299 bool result = (obj->is_forwarded() && (obj->forwardee()== obj)); local
300 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.cpp266 bool result = virtual_space()->expand_by(bytes); local
267 if (result) {
288 if (result && Verbose && PrintGC) {
297 return result;
304 bool result = true; local
307 result = expand_by(remaining_bytes);
308 DEBUG_ONLY(if (!result) warning("grow to reserve failed"));
310 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DadaptiveSizePolicy.cpp334 double result = _major_timer.seconds(); local
336 return result;
402 double result = MIN2(1.0, decayed_major_gc_cost + minor_gc_cost()); local
403 return result;
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp816 size_t result = _next_offset_index - 1; local
817 return result >= 0 ? result : 0;
H A DheapInspection.cpp342 FindInstanceClosure(klassOop k, GrowableArray<oop>* result) : _klass(k), _result(result) {}; argument
351 void HeapInspection::find_instances_at_safepoint(klassOop k, GrowableArray<oop>* result) { argument
359 FindInstanceClosure fic(k, result);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java105 * @param result
109 public static void getSet(Node rootNode,Set<Node> result,Node exclude ,boolean com) { argument
113 getSetRec(rootNode,result,exclude,com);
117 static final void getSetRec(final Node rootNode,final Set<Node> result, argument
119 //Set result = new HashSet();
125 result.add(rootNode);
130 result.add(nl.item(i));
137 result.add(r);
144 getSetRec(r,result,exclude,com);
149 result
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp94 // get oop result if there is one and reset the value in the thread
95 if (oop_result1->is_valid()) { // get oop result if there is one and reset it in the thread
98 // be a little paranoid and clear the result
106 // be a little paranoid and clear the result
292 OopMapSet* Runtime1::generate_stub_call(StubAssembler* sasm, Register result, address target, argument
299 call_offset = __ call_RT(result, noreg, target);
301 call_offset = __ call_RT(result, noreg, target, arg1);
303 call_offset = __ call_RT(result, noreg, target, arg1, arg2);
305 call_offset = __ call_RT(result, noreg, target, arg1, arg2, arg3);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp344 BasicObjectLock* result = (BasicObjectLock*) *addr_at(interpreter_frame_monitor_block_top_offset); local
346 assert(sp() <= (intptr_t*) result, "monitor end should be above the stack pointer");
347 assert((intptr_t*) result < fp(), "monitor end should be strictly below the frame pointer");
348 return result;
605 // Needed for JVMTI. The result should always be in the
616 // return value is pushed to the native stack. If the result is a jfloat/jdouble
/openjdk7/hotspot/src/cpu/zero/vm/
H A DstubGenerator_zero.cpp62 intptr_t* result,
94 // Store the result
98 *(jint *) result = *(jint *) stack->sp();
101 *(jlong *) result = *(jlong *) stack->sp();
104 *(jfloat *) result = *(jfloat *) stack->sp();
107 *(jdouble *) result = *(jdouble *) stack->sp();
110 *(oop *) result = *(oop *) stack->sp();
60 call_stub( JavaCallWrapper *call_wrapper, intptr_t* result, BasicType result_type, methodOop method, address entry_point, intptr_t* parameters, int parameter_words, TRAPS) argument
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c364 int result = -1; local
431 print_debug("Enqueue error - reason unknown as result is truncated!");
449 result = door_args.desc_ptr->d_data.d_desc.d_descriptor;
459 return result;

Completed in 105 milliseconds

<<11121314151617181920>>