Searched defs:Plot (Results 1 - 8 of 8) sorted by relevance

/external/autotest/frontend/client/src/autotest/tko/
H A DPlot.java17 abstract class Plot extends Composite { class in inherits:Composite
34 public Plot(String rpcName) { method in class:Plot
51 var name = this.@autotest.tko.Plot::callbackName;
53 instance.@autotest.tko.Plot::showDrilldown(Lcom/google/gwt/core/client/JavaScriptObject;)(drilldownParams);
68 instance.@autotest.tko.Plot::refresh(Lcom/google/gwt/json/client/JSONObject;)(jsonObjectParams);
/external/skia/src/gpu/
H A DGrDrawOpAtlas.cpp55 GrDrawOpAtlas::Plot::Plot(int index, uint64_t genID, int offX, int offY, int width, int height, function in class:GrDrawOpAtlas::Plot
78 GrDrawOpAtlas::Plot::~Plot() {
83 bool GrDrawOpAtlas::Plot::addSubImage(int width, int height, const void* image, SkIPoint16* loc) {
128 void GrDrawOpAtlas::Plot::uploadToTexture(GrDrawOp::WritePixelsFn& writePixels,
132 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("skia.gpu"), "GrDrawOpAtlas::Plot::uploadToTexture");
143 void GrDrawOpAtlas::Plot::resetRects() {
179 fPlotArray.reset(new sk_sp<Plot>[ numPlotsX * numPlotsY ]);
181 sk_sp<Plot>* currPlo
[all...]
H A DGrDrawOpAtlas.h167 Plot* plot = fPlotArray[updater.fPlotsToUpdate[i]].get();
183 * keep track of subimage placement via their GrRectanizer. A Plot manages the lifetime of its
184 * data using two tokens, a last use token and a last upload token. Once a Plot is "full" (i.e.
186 * used unless the last use of the Plot has already been flushed through to the gpu.
188 class Plot : public SkRefCnt { class in class:GrDrawOpAtlas
189 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Plot);
223 Plot(int index, uint64_t genID, int offX, int offY, int width, int height,
226 ~Plot() override;
232 Plot* clone() const {
233 return new Plot(fInde
[all...]
/external/v8/tools/
H A Dgc-nvp-trace-processor.py86 class Plot(object): class in inherits:object
130 if isinstance(subplot, Plot):
208 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
219 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
228 Plot(Item('Mutator', real_mutator, lc = 'black', style = 'lines'))
233 Plot(Item('Heap Size (before GC)', 'total_size_before', x1y2,
244 Plot(Item('Heap Size (after GC)', 'total_size_after', x1y2,
257 Plot(Item('Allocated', 'allocated'),
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc93 void Logging::Plot(int figure, double value) { function in class:webrtc::testing::bwe::Logging
94 Plot(figure, value, "-");
97 void Logging::Plot(int figure, double value, const std::string& alg_name) { function in class:webrtc::testing::bwe::Logging
H A Dbwe_test_framework.cc276 void RateCounterFilter::Plot(int64_t timestamp_ms) { function in class:webrtc::testing::bwe::RateCounterFilter
611 void TraceBasedDeliveryFilter::Plot(int64_t timestamp_ms) { function in class:webrtc::testing::bwe::TraceBasedDeliveryFilter
H A Dbwe_test_framework.h205 virtual void Plot(int64_t timestamp_ms) {} function in class:webrtc::testing::bwe::PacketProcessor
246 virtual void Plot(int64_t timestamp_ms);
367 virtual void Plot(int64_t timestamp_ms);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DPlot.java42 * Base class for all other Plot implementations..
44 public abstract class Plot<SeriesType extends Series, FormatterType extends Formatter, RendererType extends SeriesRenderer> class in inherits:View,Resizable
46 private static final String TAG = Plot.class.getName();
63 * The RenderMode used by a Plot to draw it's self onto the screen. The RenderMode can be set
80 * XYPlot myPlot = new XYPlot(context "MyPlot", Plot.RenderMode.USE_MAIN_THREAD);
83 * A Plot's RenderMode cannot be changed after the plot has been initialized.
109 private BorderStyle borderStyle = Plot.BorderStyle.SQUARE;
210 * Convenience constructor - wraps {@link #Plot(android.content.Context, String, com.androidplot.Plot.RenderMode)}.
213 * @param title The display title of this Plot
215 public Plot(Context context, String title) { method in class:Plot
224 public Plot(Context context, String title, RenderMode mode) { method in class:Plot
247 public Plot(Context context, AttributeSet attrs) { method in class:Plot
268 public Plot(Context context, AttributeSet attrs, int defStyle) { method in class:Plot
[all...]

Completed in 1092 milliseconds