/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
D | SimpleXYSeriesTest.java | 34 …SimpleXYSeries series = new SimpleXYSeries(Arrays.asList(yVals), SimpleXYSeries.ArrayFormat.Y_VALS… in testYValsOnlyConstructor() local 36 assertEquals(yVals[0], series.getY(0)); in testYValsOnlyConstructor() 37 assertEquals(yVals[1], series.getY(1)); in testYValsOnlyConstructor() 38 assertEquals(yVals[2], series.getY(2)); in testYValsOnlyConstructor() 39 assertEquals(yVals[3], series.getY(3)); in testYValsOnlyConstructor() 40 assertEquals(yVals[4], series.getY(4)); in testYValsOnlyConstructor() 42 assertEquals(0, series.getX(0)); in testYValsOnlyConstructor() 43 assertEquals(1, series.getX(1)); in testYValsOnlyConstructor() 44 assertEquals(2, series.getX(2)); in testYValsOnlyConstructor() 45 assertEquals(3, series.getX(3)); in testYValsOnlyConstructor() [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
D | SeriesAndFormatterList.java | 37 public boolean contains(SeriesType series) { in contains() argument 38 return seriesList.contains(series); in contains() 53 public boolean add(SeriesType series, FormatterType formatter) { in add() argument 54 if(series == null || formatter == null) { in add() 57 if(seriesList.contains(series)) { in add() 60 seriesList.add(series); in add() 65 public boolean remove(SeriesType series) { in remove() argument 66 int index = seriesList.indexOf(series); in remove() 76 public FormatterType getFormatter(SeriesType series) { in getFormatter() argument 77 return formatterList.get(seriesList.indexOf(series)); in getFormatter() [all …]
|
D | RenderBundle.java | 24 private Series series; field in RenderBundle 27 public RenderBundle(SeriesType series, SeriesFormatterType formatter) { in RenderBundle() argument 29 this.series = series; in RenderBundle() 33 return series; in getSeries() 36 public void setSeries(Series series) { in setSeries() argument 37 this.series = series; in setSeries()
|
/external/u-boot/tools/patman/ |
D | patchstream.py | 14 from series import Series 61 def __init__(self, series, name=None, is_log=False): argument 70 self.series = series # Info about the patch series 93 self.series.AddTag(self.commit, line, name, value) 112 self.series.AddCommit(self.commit) 118 self.series.cover = self.section 188 self.series.cover = self.section 191 self.series.notes += self.section 210 self.series.cover = self.section 213 self.series.notes += self.section [all …]
|
D | func_test.py | 56 def CreatePatchesForTest(self, series): argument 59 for i, commit in enumerate(series.commits): 65 if series.get('cover'): 144 series = patchstream.GetMetaDataForTest(text) 145 cover_fname, args = self.CreatePatchesForTest(series) 147 patchstream.FixPatches(series, args) 148 if cover_fname and series.get('cover'): 149 patchstream.InsertCoverLetter(cover_fname, series, count) 150 series.DoChecks() 151 cc_file = series.MakeCcFile(process_tags, cover_fname, [all …]
|
D | patman.py | 144 series = patchstream.GetMetaData(options.start, options.count) variable 146 series) 149 patchstream.FixPatches(series, args) 150 if cover_fname and series.get('cover'): 151 patchstream.InsertCoverLetter(cover_fname, series, options.count) 154 series.DoChecks() 162 cc_file = series.MakeCcFile(options.process_tags, cover_fname, 170 cmd = gitutil.EmailPatches(series, cover_fname, args, 179 series.ShowActions(args, cmd, options.process_tags)
|
D | patman | 144 series = patchstream.GetMetaData(options.start, options.count) variable 146 series) 149 patchstream.FixPatches(series, args) 150 if cover_fname and series.get('cover'): 151 patchstream.InsertCoverLetter(cover_fname, series, options.count) 154 series.DoChecks() 162 cc_file = series.MakeCcFile(options.process_tags, cover_fname, 170 cmd = gitutil.EmailPatches(series, cover_fname, args, 179 series.ShowActions(args, cmd, options.process_tags)
|
D | gitutil.py | 8 import series 256 def CreatePatches(start, count, series): argument 269 if series.get('version'): 270 version = '%s ' % series['version'] 272 if series.get('cover'): 274 prefix = series.GetPatchPrefix() 283 if series.get('cover'): 334 def EmailPatches(series, cover_fname, args, dry_run, raise_on_error, cc_fname, argument 393 to = BuildEmailList(series.get('to'), '--to', alias, raise_on_error) 404 cc = BuildEmailList(list(set(series.get('cc')) - set(series.get('to'))),
|
D | README | 26 in one of your commits, the series will be sent there. 37 - Maintain a number of branches, one for each patch series you are 40 series should be sent, cover letter, version, etc. Most of these are 136 there are in your series: 164 commit. Most can only appear once in the whole series. 167 Email address / alias to send patch series to (you can add this 171 Email address / alias to Cc patch series to (you can add this 175 Sets the version number of this patch series 186 Sets the name of the series. You don't need to have a name, and 195 Sets the cover letter contents for the series. The first line [all …]
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
D | TouchZoomExampleActivity.java | 47 private SimpleXYSeries[] series = null; field in TouchZoomExampleActivity 58 minXY.x = series[0].getX(0).floatValue(); in onCreate() 59 maxXY.x = series[3].getX(series[3].size() - 1).floatValue(); in onCreate() 81 series = new SimpleXYSeries[4]; in onCreate() 84 series[i] = new SimpleXYSeries("S" + i); in onCreate() 85 populateSeries(series[i], scale); in onCreate() 87 mySimpleXYPlot.addSeries(series[3], in onCreate() 90 mySimpleXYPlot.addSeries(series[2], in onCreate() 93 mySimpleXYPlot.addSeries(series[1], in onCreate() 96 mySimpleXYPlot.addSeries(series[0], in onCreate() [all …]
|
D | BarPlotExampleActivity.java | 324 for (XYSeries series : plot.getSeriesSet()) { in onPlotClicked() 325 for (int i = 0; i < series.size(); i++) { in onPlotClicked() 326 Number thisX = series.getX(i); in onPlotClicked() 327 Number thisY = series.getY(i); in onPlotClicked() 334 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked() 338 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked() 344 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked() 415 protected MyBarFormatter getFormatter(int index, XYSeries series) { in getFormatter() argument 417 selection.second == series && in getFormatter() 421 return getFormatter(series); in getFormatter()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/ |
D | AffixPatternMatcher.java | 40 AffixPatternMatcher series = new AffixPatternMatcher(affixPattern); in fromAffixPattern() local 41 series.factory = factory; in fromAffixPattern() 42 series.ignorables = (0 != (parseFlags & ParsingUtils.PARSE_FLAG_EXACT_AFFIX)) ? null in fromAffixPattern() 44 series.lastTypeOrCp = 0; in fromAffixPattern() 45 AffixUtils.iterateWithConsumer(affixPattern, series); in fromAffixPattern() 48 series.factory = null; in fromAffixPattern() 49 series.ignorables = null; in fromAffixPattern() 50 series.lastTypeOrCp = 0; in fromAffixPattern() 52 series.freeze(); in fromAffixPattern() 53 return series; in fromAffixPattern()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | AffixPatternMatcher.java | 38 AffixPatternMatcher series = new AffixPatternMatcher(affixPattern); in fromAffixPattern() local 39 series.factory = factory; in fromAffixPattern() 40 series.ignorables = (0 != (parseFlags & ParsingUtils.PARSE_FLAG_EXACT_AFFIX)) ? null in fromAffixPattern() 42 series.lastTypeOrCp = 0; in fromAffixPattern() 43 AffixUtils.iterateWithConsumer(affixPattern, series); in fromAffixPattern() 46 series.factory = null; in fromAffixPattern() 47 series.ignorables = null; in fromAffixPattern() 48 series.lastTypeOrCp = 0; in fromAffixPattern() 50 series.freeze(); in fromAffixPattern() 51 return series; in fromAffixPattern()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | BarRenderer.java | 109 protected T getFormatter(int index, XYSeries series) { in getFormatter() argument 110 return getFormatter(series); in getFormatter() 128 for(XYSeries series : sl) { in onRender() 132 for(int i = 0; i < series.size(); i++) { in onRender() 134 if (series.getX(i) != null) { in onRender() 137 Bar b = new Bar(series,i,plotArea); in onRender() 244 …canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), b.intX + plf.hOffset, b.intY + plf… in onRender() 265 …canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), leftX + width/2 + plf.hOffset, b.i… in onRender() 288 …canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), b.intX + plf.hOffset, b.intY + plf… in onRender() 302 public XYSeries series; field in BarRenderer.Bar [all …]
|
D | LineAndPointRenderer.java | 43 for (XYSeries series : seriesList) { in onRender() 45 drawSeries(canvas, plotArea, series, getFormatter(series)); in onRender() 79 …protected void drawSeries(Canvas canvas, RectF plotArea, XYSeries series, LineAndPointFormatter fo… in drawSeries() argument 87 … ArrayList<Pair<PointF, Integer>> points = new ArrayList<Pair<PointF, Integer>>(series.size()); in drawSeries() 88 for (int i = 0; i < series.size(); i++) { in drawSeries() 89 Number y = series.getY(i); in drawSeries() 90 Number x = series.getX(i); in drawSeries() 149 …canvas.drawText(pointLabeler.getLabel(series, p.second), p.first.x + plf.hOffset, p.first.y + plf.… in drawSeries()
|
/external/u-boot/tools/buildman/ |
D | control.py | 44 def ShowActions(series, why_selected, boards_selected, builder, options): argument 62 if series: 63 commits = series.commits 70 for upto in range(0, len(series.commits), options.step): 71 commit = series.commits[upto] 236 series = patchstream.GetMetaDataForList(upstream_commit, 237 options.git_dir, 1, series=None, allow_overwrite=True) 239 series = patchstream.GetMetaDataForList(range_expr, 240 options.git_dir, None, series, allow_overwrite=True) 243 series = patchstream.GetMetaDataForList(options.branch, [all …]
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | SeriesSelector.java | 31 private ArrayList<Series> series = new ArrayList<Series>(); field in SeriesSelector 175 return Collections.unmodifiableList(series); in getAllSeries() 179 for (int i = 0; i < series.size(); i++) { in reset() 182 series.clear(); in reset() 188 for (Series s : series) { in getInverted() 197 for (Series s : series) { in setInvertible() 211 for (int index = 0; index < series.size(); index++) { in addToHistory() 212 series.get(index).addToHistory(args, index); in addToHistory() 232 thisSeries = series.get(0); in handleHistoryArguments() 246 series.add(nextSeries); in addSeries() [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ |
D | Plot.java | 402 public synchronized boolean addSeries(SeriesType series, FormatterType formatter) { in addSeries() argument 417 if(series instanceof PlotListener) { in addSeries() 418 addListener((PlotListener)series); in addSeries() 422 if(sfList.contains(series)) { in addSeries() 425 sfList.add(series, formatter); in addSeries() 430 public synchronized boolean removeSeries(SeriesType series, Class rendererClass) { in removeSeries() argument 431 boolean result = seriesRegistry.get(rendererClass).remove(series); in removeSeries() 437 if(series instanceof PlotListener) { in removeSeries() 438 removeListener((PlotListener) series); in removeSeries() 447 public synchronized void removeSeries(SeriesType series) { in removeSeries() argument [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/ |
D | NumberParserTest.java | 213 SeriesMatcher series = new SeriesMatcher(); in testSeriesMatcher() local 214 series.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 215 series.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 216 series.addMatcher(IgnorablesMatcher.DEFAULT); in testSeriesMatcher() 217 series.addMatcher(PercentMatcher.getInstance(symbols)); in testSeriesMatcher() 218 series.addMatcher(IgnorablesMatcher.DEFAULT); in testSeriesMatcher() 219 series.freeze(); in testSeriesMatcher() 221 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher() 222 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher() 223 assertTrue(series.smokeTest(new StringSegment("+", false))); in testSeriesMatcher() [all …]
|
/external/toolchain-utils/crosperf/ |
D | column_chart.py | 15 self.series = [] 20 self.series.append((i - 1, series_type, color)) 42 for series in self.series: 43 series_javascript += "%s: {type: '%s', color: '%s'}, " % series
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | NumberParserTest.java | 210 SeriesMatcher series = new SeriesMatcher(); in testSeriesMatcher() local 211 series.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 212 series.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in testSeriesMatcher() 213 series.addMatcher(IgnorablesMatcher.DEFAULT); in testSeriesMatcher() 214 series.addMatcher(PercentMatcher.getInstance(symbols)); in testSeriesMatcher() 215 series.addMatcher(IgnorablesMatcher.DEFAULT); in testSeriesMatcher() 216 series.freeze(); in testSeriesMatcher() 218 assertFalse(series.smokeTest(new StringSegment("x", false))); in testSeriesMatcher() 219 assertFalse(series.smokeTest(new StringSegment("-", false))); in testSeriesMatcher() 220 assertTrue(series.smokeTest(new StringSegment("+", false))); in testSeriesMatcher() [all …]
|
/external/u-boot/doc/ |
D | README.generic-board | 33 The full text of the original generic board series is reproduced below. 37 This series creates a generic board.c implementation which contains 70 This series removes the dependency on generic relocation. So relocation 72 relocation series for a proposed solution to this for ARM: 76 or Graeme's recent x86 series v2: 80 Instead of moving over a whole architecture, this series takes the approach 88 I think it is a good target for this series. On the other hand, x86 is 90 few issues to be solved. So I have chosen both ARM and x86 for this series. 109 be done as a separate change, and this series does not require it. 111 While this series needs to stand on its own (as with the link script [all …]
|
/external/tensorflow/tensorflow/contrib/timeseries/ |
D | README.md | 5 high-performance time series models with custom architectures. It includes tools 6 for chunking and batching a series, and for saving model state across chunks, 8 series (using truncated backpropagation). 14 - Learning correlations between series (multivariate forecasting/anomaly
|
/external/u-boot/drivers/usb/dwc3/ |
D | Kconfig | 56 bool "TI OMAP SoC series USB DRD PHY driver" 62 bool "Exynos5 SoC series USB DRD PHY driver" 64 Enable USB DRD PHY support for Exynos 5 SoC series. 66 present on Exynos5 SoC series.
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | plot_dynamics.py | 78 for series in v.samples[alg].keys(): 80 x = [sample[0] for sample in v.samples[alg][series]] 81 y = [sample[1] for sample in v.samples[alg][series]] 100 flow_id = re.search(r'(\d+(,\d+)*)', series) # One or multiple ids.
|