• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/

Lines Matching defs:arg4

952     public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4) {
953 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4);
959 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4) {
961 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4);
965 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
966 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5);
972 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
974 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5);
978 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6) {
979 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6);
985 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6) {
987 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6);
991 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7) {
992 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
995 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8) {
996 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
1002 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7) {
1004 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
1008 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8) {
1010 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
1014 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9) {
1015 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
1018 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9) {
1020 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
1024 public void log(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10) {
1025 log(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
1028 public void log(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10) {
1030 currentScope.log(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
1362 public Indent logAndIndent(String format, Object arg1, Object arg2, Object arg3, Object arg4) {
1363 return logAndIndent(BASIC_LEVEL, format, arg1, arg2, arg3, arg4);
1369 public Indent logAndIndent(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4) {
1371 return logvAndIndentInternal(logLevel, format, arg1, arg2, arg3, arg4);
1376 public Indent logAndIndent(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
1377 return logAndIndent(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5);
1383 public Indent logAndIndent(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
1385 return logvAndIndentInternal(logLevel, format, arg1, arg2, arg3, arg4, arg5);
1390 public Indent logAndIndent(String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6) {
1391 return logAndIndent(BASIC_LEVEL, format, arg1, arg2, arg3, arg4, arg5, arg6);
1397 public Indent logAndIndent(int logLevel, String format, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6) {
1399 return logvAndIndentInternal(logLevel, format, arg1, arg2, arg3, arg4, arg5, arg6);