Searched defs:series (Results 1 - 17 of 17) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DPointLabeler.java21 public String getLabel(XYSeries series, int index); argument
H A DLineAndPointRenderer.java43 for (XYSeries series : seriesList) {
44 //synchronized(series) {
45 drawSeries(canvas, plotArea, series, getFormatter(series));
79 protected void drawSeries(Canvas canvas, RectF plotArea, XYSeries series, LineAndPointFormatter formatter) { argument
87 ArrayList<Pair<PointF, Integer>> points = new ArrayList<Pair<PointF, Integer>>(series.size());
88 for (int i = 0; i < series.size(); i++) {
89 Number y = series.getY(i);
90 Number x = series.getX(i);
149 canvas.drawText(pointLabeler.getLabel(series,
[all...]
H A DBarRenderer.java102 * Retrieves the BarFormatter instance that corresponds with the series passed in.
105 * @param series XYSeries to which the point being rendered belongs.
109 protected T getFormatter(int index, XYSeries series) { argument
110 return getFormatter(series);
128 for(XYSeries series : sl) {
131 // For each value in the series
132 for(int i = 0; i < series.size(); i++) {
134 if (series.getX(i) != null) {
137 Bar b = new Bar(series,i,plotArea);
238 //Log.d("BAR", b.series
302 public XYSeries series; field in class:BarRenderer.Bar
309 Bar(XYSeries series, int seriesIndex, RectF plotArea) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DRenderBundle.java23 //private XYDataset series;
24 private Series series; field in class:RenderBundle
27 public RenderBundle(SeriesType series, SeriesFormatterType formatter) { argument
29 this.series = series;
33 return series;
36 public void setSeries(Series series) { argument
37 this.series = series;
H A DSeriesAndFormatterList.java37 public boolean contains(SeriesType series) { argument
38 return seriesList.contains(series);
53 public boolean add(SeriesType series, FormatterType formatter) { argument
54 if(series == null || formatter == null) {
55 throw new IllegalArgumentException("series and formatter must not be null.");
57 if(seriesList.contains(series)) {
60 seriesList.add(series);
65 public boolean remove(SeriesType series) { argument
66 int index = seriesList.indexOf(series);
76 public FormatterType getFormatter(SeriesType series) { argument
88 setFormatter(SeriesType series, FormatterType formatter) argument
[all...]
H A DSeriesRenderer.java46 public SeriesFormatterType getFormatter(SeriesType series) { argument
47 return (SeriesFormatterType) plot.getFormatter(series, getClass());
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DXYPlotWithBgImgActivity.java20 private SimpleXYSeries series; field in class:XYPlotWithBgImgActivity
54 series = (SimpleXYSeries) getSeries();
61 plot.addSeries(series, lpFormat);
H A DTouchZoomExampleActivity.java47 private SimpleXYSeries[] series = null; field in class:TouchZoomExampleActivity
58 minXY.x = series[0].getX(0).floatValue();
59 maxXY.x = series[3].getX(series[3].size() - 1).floatValue();
81 series = new SimpleXYSeries[4];
84 series[i] = new SimpleXYSeries("S" + i);
85 populateSeries(series[i], scale);
87 mySimpleXYPlot.addSeries(series[3],
90 mySimpleXYPlot.addSeries(series[2],
93 mySimpleXYPlot.addSeries(series[
107 populateSeries(SimpleXYSeries series, int max) argument
[all...]
H A DBarPlotExampleActivity.java278 // Remove all current series from each plot
289 // add a new series' to the xyplot:
324 for (XYSeries series : plot.getSeriesSet()) {
325 for (int i = 0; i < series.size(); i++) {
326 Number thisX = series.getX(i);
327 Number thisY = series.getY(i);
334 selection = new Pair<Integer, XYSeries>(i, series);
338 selection = new Pair<Integer, XYSeries>(i, series);
344 selection = new Pair<Integer, XYSeries>(i, series);
410 * @param series XYSerie
415 getFormatter(int index, XYSeries series) argument
[all...]
H A DDynamicXYPlotActivity.java184 public int getItemCount(int series) { argument
188 public Number getX(int series, int index) { argument
195 public Number getY(int series, int index) { argument
201 switch (series) {
/external/autotest/frontend/client/src/autotest/tko/
H A DMetricsPlotFrontend.java40 private RadioButton normalizeSeries = new RadioButton("normalize", "Specified series:");
122 String series = normalizeSeriesSelect.getSelectedValue();
123 normalizationType = NORMALIZE_SERIES_PREFIX + series;
174 String series = normalizeString.substring(NORMALIZE_SERIES_PREFIX.length());
176 if (normalizeSeriesSelect.getValue(i).equals(series)) {
230 for (Series series : seriesList) {
231 addSeriesSelects(series, sql);
249 for (Series series : seriesList) {
250 String drilldownQuery = getSeriesDrilldownQuery(series, xFilterString);
251 queries.put("__" + series
257 getSeriesDrilldownQuery(Series series, String xFilterString) argument
282 addSeriesSelects(Series series, StringBuilder sql) argument
[all...]
H A DSeriesSelector.java31 private ArrayList<Series> series = new ArrayList<Series>(); field in class:SeriesSelector
175 return Collections.unmodifiableList(series);
179 for (int i = 0; i < series.size(); i++) {
182 series.clear();
188 for (Series s : series) {
197 for (Series s : series) {
211 for (int index = 0; index < series.size(); index++) {
212 series.get(index).addToHistory(args, index);
232 thisSeries = series.get(0);
246 series
[all...]
/external/skia/src/core/
H A DSkColorFilter.cpp130 sk_sp<GrFragmentProcessor> series[] = { std::move(innerFP), std::move(outerFP) }; variable
131 return GrFragmentProcessor::RunInSeries(series, 2);
/external/skia/src/gpu/
H A DGrFragmentProcessor.cpp405 sk_sp<GrFragmentProcessor> GrFragmentProcessor::RunInSeries(sk_sp<GrFragmentProcessor>* series, argument
466 return series[0];
468 // Run the through the series, do the invariant output processing, and look for eliminations.
470 info.analyzeProcessors(sk_sp_address_as_pointer_address(series), cnt);
484 replacementSeries.emplace_back(std::move(series[leadingFPsToEliminate + i]));
486 series = replacementSeries.begin();
488 return sk_sp<GrFragmentProcessor>(new SeriesFragmentProcessor(series, cnt));
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DPlot.java131 * Associates lists series and formatter pairs with the class of the Renderer used to render them.
400 * @param series
402 public synchronized boolean addSeries(SeriesType series, FormatterType formatter) { argument
416 // if this series implements PlotListener, add it as a listener:
417 if(series instanceof PlotListener) {
418 addListener((PlotListener)series);
421 // do nothing if this series already associated with the renderer:
422 if(sfList.contains(series)) {
425 sfList.add(series, formatter);
430 public synchronized boolean removeSeries(SeriesType series, Clas argument
447 removeSeries(SeriesType series) argument
481 getFormatter(SeriesType series, Class rendererClass) argument
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 2224 milliseconds