Searched defs:format (Results 326 - 329 of 329) sorted by relevance

<<11121314

/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jar ... Object expected Object actual static java.lang.String format (java.lang.String, java.lang.Object ...
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp181 void Assembler::emit_data(jint data, relocInfo::relocType rtype, int format) { argument
184 else emit_data(data, Relocation::spec_simple(rtype), format);
187 void Assembler::emit_data(jint data, RelocationHolder const& rspec, int format) { argument
188 assert(imm_operand == 0, "default format must be immediate in this file");
192 check_relocation(rspec, format);
198 if (format == call32_operand)
201 code_section()->relocate(inst_mark(), rspec, format); local
837 void Assembler::check_relocation(RelocationHolder const& rspec, int format) { argument
845 } else if (r->is_call() || format == call32_operand) {
846 // assert(format
4455 emit_data64(jlong data, relocInfo::relocType rtype, int format) argument
4465 emit_data64(jlong data, RelocationHolder const& rspec, int format) argument
4473 code_section()->relocate(inst_mark(), rspec, format); local
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3347 // for a line with the following format:
3351 // format has been changed), we'll use the largest page size supported by
4613 extern void report_error(char* file_name, int line_no, char* title, char* format, ...);
5072 int local_vsnprintf(char* buf, size_t count, const char* format, va_list args) { argument
5073 return ::vsnprintf(buf, count, format, args);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3272 // for a line with the following format:
3276 // format has been changed), we'll use the largest page size supported by
4427 extern void report_error(char* file_name, int line_no, char* title, char* format, ...);
4859 int local_vsnprintf(char* buf, size_t count, const char* format, va_list args) { argument
4860 return ::vsnprintf(buf, count, format, args);

Completed in 91 milliseconds

<<11121314