Home
last modified time | relevance | path

Searched refs:arrayFormat (Results 1 – 10 of 10) sorted by relevance

/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
DMessageFormatterTest.java66 …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/
DJCLLoggerAdapter.java131 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/
DLoggerWrapper.java131 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()
DXLogger.java123 FormattingTuple tp = MessageFormatter.arrayFormat(messagePattern, argArray); in entry()
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
DLog4jLoggerAdapter.java172 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/
DJDK14LoggerAdapter.java140 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/
DMessageFormatter.java124 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/
DLogTransformer.java302 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/
DAndroidLoggerAdapter.java532 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in formatAndLog()
/external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/
DSimpleLogger.java424 FormattingTuple tp = MessageFormatter.arrayFormat(format, arguments); in formatAndLog()