/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/ |
D | MessageFormatterTest.java | 66 …result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, … in nullParametersShouldBeHandledWithoutBarfing() 69 …result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, … in nullParametersShouldBeHandledWithoutBarfing() 72 …result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, … in nullParametersShouldBeHandledWithoutBarfing() 164 result = MessageFormatter.arrayFormat(msg0, args).getMessage(); in testNullArray() 167 result = MessageFormatter.arrayFormat(msg1, args).getMessage(); in testNullArray() 170 result = MessageFormatter.arrayFormat(msg2, args).getMessage(); in testNullArray() 173 result = MessageFormatter.arrayFormat(msg3, args).getMessage(); in testNullArray() 180 … result = MessageFormatter.arrayFormat("Value {} is smaller than {} and {}.", ia0).getMessage(); in testArrayFormat() 183 result = MessageFormatter.arrayFormat("{}{}{}", ia0).getMessage(); in testArrayFormat() 186 result = MessageFormatter.arrayFormat("Value {} is smaller than {}.", ia0).getMessage(); in testArrayFormat() [all …]
|
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/ |
D | JCLLoggerAdapter.java | 131 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in trace() 227 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in debug() 323 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in info() 417 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in warn() 512 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in error()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/ |
D | LoggerWrapper.java | 131 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in trace() 200 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in trace() 286 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in debug() 356 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in debug() 442 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in info() 511 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in info() 594 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in warn() 663 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in warn() 749 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in error() 818 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage(); in error()
|
D | XLogger.java | 123 FormattingTuple tp = MessageFormatter.arrayFormat(messagePattern, argArray); in entry()
|
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/ |
D | Log4jLoggerAdapter.java | 172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in trace() 267 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in debug() 362 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in info() 459 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in warn() 556 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in error()
|
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/ |
D | JDK14LoggerAdapter.java | 140 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in trace() 239 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in debug() 338 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in info() 440 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in warn() 541 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in error()
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | MessageFormatter.java | 124 return arrayFormat(messagePattern, new Object[] { arg }); in format() 151 return arrayFormat(messagePattern, new Object[] { arg1, arg2 }); in format() 178 …final public static FormattingTuple arrayFormat(final String messagePattern, final Object[] argArr… in arrayFormat() method in MessageFormatter
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
D | LogTransformer.java | 302 String before = MessageFormatter.arrayFormat(messagePattern, arg1).getMessage(); in doMethod() 308 String after = MessageFormatter.arrayFormat(messagePattern2, arg2).getMessage(); in doMethod()
|
/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/ |
D | AndroidLoggerAdapter.java | 532 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in formatAndLog()
|
/external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/ |
D | SimpleLogger.java | 424 FormattingTuple tp = MessageFormatter.arrayFormat(format, arguments); in formatAndLog()
|