Searched defs:result (Results 451 - 475 of 605) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormat.java512 * @param result where the text is to be appended
520 public StringBuffer format(double number, StringBuffer result, argument
525 return format(number, result, fieldPosition.getFieldDelegate());
531 * @param result where the text is to be appended
537 private StringBuffer format(double number, StringBuffer result, argument
541 int iFieldStart = result.length();
542 result.append(symbols.getNaN());
544 iFieldStart, result.length(), result);
545 return result;
621 format(long number, StringBuffer result, FieldPosition fieldPosition) argument
639 format(long number, StringBuffer result, FieldDelegate delegate) argument
708 format(BigDecimal number, StringBuffer result, FieldPosition fieldPosition) argument
724 format(BigDecimal number, StringBuffer result, FieldDelegate delegate) argument
761 format(BigInteger number, StringBuffer result, FieldPosition fieldPosition) argument
779 format(BigInteger number, StringBuffer result, FieldDelegate delegate, boolean formatLong) argument
864 subformat(StringBuffer result, FieldDelegate delegate, boolean isNegative, boolean isInteger, int maxIntDigits, int minIntDigits, int maxFraDigits, int minFraDigits) argument
1181 append(StringBuffer result, String string, FieldDelegate delegate, FieldPosition[] positions, Format.Field signAttribute) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java89 * MatchResult result = s.match();
90 * for (int i=1; i<=result.groupCount(); i++)
91 * System.out.println(result.group(i));
392 // Boolean indicating if a match result is available
808 private void cacheResult(String result) { argument
809 hasNextResult = result;
1130 * been closed will result in an {@link IllegalStateException}.
1318 * Returns the match result of the last scanning operation performed
1324 * make a match result available if they complete without throwing an
1333 * @return a match result fo
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinPool.java113 * <td> <b>Await and obtain result</td>
144 * pools with greater than the maximum number result in
1495 * Performs the given task, returning its result upon completion.
1505 * @return the task's result
1607 public <T> ForkJoinTask<T> submit(Runnable task, T result) { argument
1610 ForkJoinTask<T> job = ForkJoinTask.adapt(task, result);
1688 * yet terminated. The result returned by this method may differ
1837 * to collection {@code c} may result in elements being in
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp404 MethodLivenessResult result = raw_liveness_at_bci(bci); local
407 result.at_put_range(0, result.size(), true);
409 return result;
417 // guard against conservative result from MethodLiveness making us
431 BitMap result(mask_size);
432 result.clear();
435 if (mask.is_oop(i)) result.set_bit(i);
437 return result;
467 ciCallProfile result; local
679 ciMethod* result = this; local
847 bool result = true; local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp260 CodeBlob* result = find_blob_unsafe(start); local
261 if (result == NULL) return NULL;
263 guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
264 return result;
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp336 int result = sscanf(line, "%32[a-z]%n", command, bytes_read); local
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsAdaptiveSizePolicy.cpp862 double result = MIN2(1.0, minor_gc_cost() + cms_gen_cost); local
863 assert(result >= 0.0, "Both minor and major costs are non-negative");
864 return result;
1333 bool result = _first_after_collection; local
1335 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp409 HeapWord* result = young_gen()->allocate(size); local
414 while (result == NULL) {
430 result = young_gen()->allocate(size);
431 if (result != NULL) {
432 return result;
436 result = mem_allocate_old_gen(size);
437 if (result != NULL) {
438 return result;
464 if (result == NULL) {
469 // Did the VM operation execute? If so, return the result directl
580 HeapWord* result = young_gen()->allocate(size); local
623 HeapWord* result; local
757 HeapWord* result = perm_gen()->allocate_permanent(size); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DadaptiveSizePolicy.hpp232 double result = MIN2(1.0, minor_gc_cost() + major_gc_cost()); local
233 assert(result >= 0.0, "Both minor and major costs are non-negative");
234 return result;
266 double result = 1.0 - decaying_gc_cost(); local
267 assert(result >= 0.0, "adjusted mutator cost calculation is incorrect");
268 return result;
272 double result = 1.0 - gc_cost(); local
273 assert(result >= 0.0, "mutator cost calculation is incorrect");
274 return result;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp171 void LinkResolver::resolve_klass(KlassHandle& result, constantPoolHandle pool, int index, TRAPS) { argument
173 result = KlassHandle(THREAD, result_oop);
176 void LinkResolver::resolve_klass_no_update(KlassHandle& result, constantPoolHandle pool, int index, TRAPS) { argument
179 result = KlassHandle(THREAD, result_oop);
188 void LinkResolver::lookup_method_in_klasses(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS) { argument
197 result = methodHandle(THREAD, result_oop);
201 void LinkResolver::lookup_instance_method_in_klasses(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS) { argument
203 result = methodHandle(THREAD, result_oop);
204 while (!result.is_null() && result
217 lookup_method_in_interfaces(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS) argument
222 lookup_polymorphic_method(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* full_signature, KlassHandle current_klass, Handle *appendix_result_or_null, Handle *method_type_result, TRAPS) argument
588 resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, TRAPS) argument
592 resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, bool update_pool, TRAPS) argument
701 resolve_static_call(CallInfo& result, KlassHandle& resolved_klass, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, bool check_access, bool initialize_class, TRAPS) argument
738 resolve_special_call(CallInfo& result, KlassHandle resolved_klass, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, bool check_access, TRAPS) argument
781 runtime_resolve_special_method(CallInfo& result, methodHandle resolved_method, KlassHandle resolved_klass, KlassHandle current_klass, bool check_access, TRAPS) argument
837 resolve_virtual_call(CallInfo& result, Handle recv, KlassHandle receiver_klass, KlassHandle resolved_klass, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, bool check_access, bool check_null_and_abstract, TRAPS) argument
867 runtime_resolve_virtual_method(CallInfo& result, methodHandle resolved_method, KlassHandle resolved_klass, Handle recv, KlassHandle recv_klass, bool check_null_and_abstract, TRAPS) argument
946 resolve_interface_call(CallInfo& result, Handle recv, KlassHandle recv_klass, KlassHandle resolved_klass, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, bool check_access, bool check_null_and_abstract, TRAPS) argument
965 runtime_resolve_interface_method(CallInfo& result, methodHandle resolved_method, KlassHandle resolved_klass, Handle recv, KlassHandle recv_klass, bool check_null_and_abstract, TRAPS) argument
1129 resolve_invoke(CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS) argument
1153 resolve_invokestatic(CallInfo& result, constantPoolHandle pool, int index, TRAPS) argument
1163 resolve_invokespecial(CallInfo& result, constantPoolHandle pool, int index, TRAPS) argument
1173 resolve_invokevirtual(CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS) argument
1187 resolve_invokeinterface(CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS) argument
1198 resolve_invokehandle(CallInfo& result, constantPoolHandle pool, int index, TRAPS) argument
1213 resolve_handle_call(CallInfo& result, KlassHandle resolved_klass, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, TRAPS) argument
1230 resolve_invokedynamic(CallInfo& result, constantPoolHandle pool, int index, TRAPS) argument
1268 resolve_dynamic_call(CallInfo& result, Handle bootstrap_specifier, Symbol* method_name, Symbol* method_signature, KlassHandle current_klass, TRAPS) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp503 void* result = _hwm; local
505 return result;
H A DdefNewGeneration.cpp494 HeapWord* result = NULL; local
512 result = from()->allocate(size);
520 gclog_or_tty->print_cr(" returns %s", result == NULL ? "NULL" : "object");
522 return result;
658 // as a result of a partial evacuation of eden
1005 HeapWord* result = eden()->par_allocate(word_size); local
1006 if (result != NULL) {
1007 return result;
1028 result = eden()->par_allocate(word_size);
1029 } while (result
[all...]
H A Dgeneration.cpp205 HeapWord* result = allocate(obj_size, false); local
206 if (result != NULL) {
207 Copy::aligned_disjoint_words((HeapWord*)obj, result, obj_size);
208 return oop(result);
500 HeapWord* result = NULL; local
507 result = _the_space->par_allocate(word_size);
508 if ( result != NULL) {
509 return result;
567 bool result = _virtual_space.expand_by(bytes); local
568 if (result) {
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp339 int result = _stream->read(&answer, 1); local
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp294 bool LIRGenerator::strength_reduce_multiply(LIR_Opr left, int c, LIR_Opr result, LIR_Opr tmp) { argument
295 assert(left != result, "should be different registers");
297 __ shift_left(left, log2_intptr(c + 1), result);
298 __ sub(result, left, result);
301 __ shift_left(left, log2_intptr(c - 1), result);
302 __ add(result, left, result);
367 LIR_Address* array_addr = emit_array_address(array.result(), index.result(),
482 LIR_Opr result = call_runtime(x->x(), x->y(), entry, x->type(), NULL); local
526 LIR_Opr result = call_runtime(x->y(), x->x(), entry, x->type(), NULL); local
682 LIR_Opr result = rlock_result(x); local
745 LIR_Opr result = call_runtime(x->argument_at(0), runtime_entry, x->type(), NULL); local
752 LIR_Opr result = call_runtime(x->argument_at(0), x->argument_at(1), runtime_entry, x->type(), NULL); local
821 LIR_Opr result = call_runtime(x->value(), entry, x->type(), NULL); local
889 LIR_Opr result = rlock_result(x); local
915 LIR_Opr result = rlock_result(x); local
949 LIR_Opr result = rlock_result(x); local
1005 LIR_Opr result = rlock_result(x); local
1146 volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info) argument
[all...]
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c826 jboolean result = JNI_FALSE; local
828 result = JNI_FALSE;
830 result = JNI_TRUE;
832 return result;
1019 * s, but with quotes removed so the result is a string as would be found
1434 int result = -1; local
1496 result = fnInit();
1500 return result;
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp116 int result = ::_close(fd); local
118 if (result == OS_ERR) {
142 // use of SMB network based file systems may result in unsuccesful cleanup
508 // returns false. the validity of the result is only accurate if the
512 // privileges to guarantee a result valid.
1236 // JVM instance. However, this could also be the result of a
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp37 char *result = upper; local
43 return result;
297 // Find result type for match.
298 const char *result = op->reduce_result(); local
302 buildMatchList(op->_matrule, result, rootOp, pred, cost);
332 // Find result type for match
333 const char *result = instr->reduce_result(); local
356 buildMatchList(instr->_matrule, result, mrule._machType, pred, cost);
377 //------------------------------result of reduction----------------------------
424 const char *result) {
423 add_chain_rule_entry(const char *src, const char *cost, const char *result) argument
880 const char *result = inForm.reduce_result(); local
926 char *result = new char[length]; local
[all...]
H A Doutput_h.cpp1689 const char *result = NULL; local
1690 data_type = instr->is_chain_of_constant(_globalNames, opType, result);
1851 // On Intel the result operand is a stackSlot, untyped.
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp493 // the interpreter at the throw site. This would result in double
711 FieldAccessInfo result; // initialize class if needed local
713 LinkResolver::resolve_field(result, constants, field_access.index(), Bytecodes::java_code(code), false, CHECK_NULL);
714 return result.klass()();
823 FieldAccessInfo result; // initialize class if needed variable
826 LinkResolver::resolve_field(result, constants, field_access.index(), Bytecodes::java_code(code), false, CHECK);
827 patch_field_offset = result.field_offset();
837 deoptimize_for_volatile = result.access_flags().is_volatile();
840 patch_field_type = result.field_type();
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java88 The result is concatenated to the next k2 bits of the character code to index
283 * character code; as a result, the array passed as an argument to this method
311 long[] result;
313 result = new long[256];
315 result = new long[1<<16];
320 for (int j = 0; j < data.length && k < result.length; j++) {
322 result[k] = buildOne(codePoint, data[j], specialMaps);
329 while (codePoint < data[j].codePoint && k < result.length) {
330 result[k] = buildOne(codePoint, data[j], specialMaps);
337 while (codePoint < data[j].codePoint && k < result
988 appendEscapedStringFragment(StringBuffer result, char[] line, int length, boolean lastFragment) argument
1131 genTable(StringBuffer result, String name, long[] table, int extract, int bits, int size, boolean preshifted, int shift, boolean hexFormat, boolean properties, boolean hexComment) argument
1331 genCaseMapTableDeclaration(StringBuffer result) argument
1336 genCaseMapTable(StringBuffer result, SpecialCaseMap[] specialCaseMaps) argument
1367 propertiesComments(StringBuffer result, long val) argument
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c91 * platform independent routine SelectVersion. This may result in
331 int32_t result; local
333 result = CFRunLoopRunInMode(kCFRunLoopDefaultMode, 1.0e20, false);
334 } while (result != kCFRunLoopRunFinished);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp159 // not yet been deallocated. As a result, this test should only be used as an
356 jvmtiError result() { return _result; } function in class:VM_GetOwnedMonitorInfo
377 jvmtiError result() { return _result; } function in class:VM_GetObjectMonitorUsage
401 jvmtiError result() { return _result; } function in class:VM_GetCurrentContendedMonitor
429 jvmtiError result() { return _result; } function in class:VM_GetStackTrace
457 void set_result(jvmtiError result) { _result = result; } argument
471 jvmtiError result() { return _result; } function in class:VM_GetMultipleStackTraces
524 jvmtiError result() { return _result; } function in class:VM_GetFrameCount
550 jvmtiError result() { retur function in class:VM_GetFrameLocation
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp93 oop result = java_lang_boxing_object::create(type, value, CHECK_NULL); local
94 if (result == NULL) {
95 THROW_(vmSymbols::java_lang_IllegalArgumentException(), result); local
97 return result;
394 oop result = arrayKlass::cast(klass)->component_mirror(); local
408 assert(result == result2, "results must be consistent");
410 return result;
685 klassOop result = SystemDictionary::resolve_or_fail(signature, local
691 trace_class_resolution(result);
694 oop nt = Klass::cast(result)
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp88 const char* result; local
92 result = format;
93 result_len = strlen(result);
97 result = va_arg(ap, const char*);
98 result_len = strlen(result);
101 result = buffer;
102 result_len = strlen(result);
105 result = buffer;
110 if (result != buffer) {
111 strncpy(buffer, result, bufle
1054 int result = os::socket(AF_INET, SOCK_STREAM, 0); local
1068 int result = os::raw_send(_socket, (char *)base(), size(), 0); local
1104 int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in)); local
[all...]

Completed in 137 milliseconds

<<11121314151617181920>>