HomeSort by relevance Sort by last modified time
    Searched full:arrayformat (Results 1 - 25 of 49) sorted by null

1 2

  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
MessageFormatterTest.java 66 result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, null, null }).getMessage();
69 result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, i2, i3 }).getMessage();
72 result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, null, i3 }).getMessage();
164 result = MessageFormatter.arrayFormat(msg0, args).getMessage();
167 result = MessageFormatter.arrayFormat(msg1, args).getMessage();
170 result = MessageFormatter.arrayFormat(msg2, args).getMessage();
173 result = MessageFormatter.arrayFormat(msg3, args).getMessage();
180 result = MessageFormatter.arrayFormat("Value {} is smaller than {} and {}.", ia0).getMessage();
183 result = MessageFormatter.arrayFormat("{}{}{}", ia0).getMessage();
186 result = MessageFormatter.arrayFormat("Value {} is smaller than {}.", ia0).getMessage()
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYPlotTest.java 68 series1 = new SimpleXYSeries(numList1, SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "");
115 series1.setModel(numList2, SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
122 series1.setModel(numList1, SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
139 series1.setModel(numList2,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
182 series1.setModel(numList2,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
190 series1.setModel(numList1,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
198 series1.setModel(numList2,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
208 series1.setModel(numList1,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
216 series1.setModel(numList2,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
265 series1.setModel(numList2,SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
    [all...]
SimpleXYSeriesTest.java 34 SimpleXYSeries series = new SimpleXYSeries(Arrays.asList(yVals), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "test");
52 SimpleXYSeries series = new SimpleXYSeries(Arrays.asList(yVals), SimpleXYSeries.ArrayFormat.XY_VALS_INTERLEAVED, "test");
XYLegendWidgetTest.java 77 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "s1");
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
SimpleXYPlotActivity.java 55 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, // Y_VALS_ONLY means use the element index as the x value
59 XYSeries series2 = new SimpleXYSeries(Arrays.asList(series2Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Series2");
OrientationSensorExampleActivity.java 221 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
225 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
229 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
XYRegionExampleActivity.java 293 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Tim");
308 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Nick");
321 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Joe");
335 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY,"James");
DualScaleXYPlotExampleActivity.java 132 series1 = new SimpleXYSeries(Arrays.asList(series1Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Series1");
133 series2 = new SimpleXYSeries(Arrays.asList(series2Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Series2");
ListViewActivity.java 87 XYSeries series = new SimpleXYSeries(nums, SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "S" + k);
StepChartExampleActivity.java 53 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY,
BarPlotExampleActivity.java 286 series1 = new SimpleXYSeries(Arrays.asList(series1Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Us");
287 series2 = new SimpleXYSeries(Arrays.asList(series2Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Them");
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DemoAppWidgetProvider.java 52 SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, // Y_VALS_ONLY means use the element index as the x value
56 XYSeries series2 = new SimpleXYSeries(Arrays.asList(series2Numbers), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY, "Series2");
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
LoggerWrapper.java 131 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
200 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
286 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
356 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
442 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
511 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
594 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
663 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
749 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage();
818 String formattedMessage = MessageFormatter.arrayFormat(format, args).getMessage()
    [all...]
XLogger.java 123 FormattingTuple tp = MessageFormatter.arrayFormat(messagePattern, argArray);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
SimpleXYSeries.java 48 public enum ArrayFormat {
72 public SimpleXYSeries(List<? extends Number> model, ArrayFormat format, String title) {
109 public void setModel(List<? extends Number> model, ArrayFormat format) {
  /external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
JCLLoggerAdapter.java 131 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
227 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
323 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
417 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
512 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 140 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
239 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
338 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
440 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
541 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jLoggerAdapter.java 172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
267 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
362 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
459 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
556 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MessageFormatter.java 93 * {@link #arrayFormat(String, Object[])} methods for more details.
124 return arrayFormat(messagePattern, new Object[] { arg });
151 return arrayFormat(messagePattern, new Object[] { arg1, arg2 });
178 final public static FormattingTuple arrayFormat(final String messagePattern, final Object[] argArray) {
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
LogTransformer.java 302 String before = MessageFormatter.arrayFormat(messagePattern, arg1).getMessage();
308 String after = MessageFormatter.arrayFormat(messagePattern2, arg2).getMessage();
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
slf4j-api-1.4.2.jar 
  /external/slf4j/integration/lib/
slf4j-simple-1.4.2.jar 
slf4j-simple-1.5.0.jar 
slf4j-simple-1.5.11.jar 
slf4j-simple-1.5.4-SNAPSHOT.jar 

Completed in 261 milliseconds

1 2