Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 71) sorted by relevance

123

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DObjectPool.ets20 * An object pool for recycling of object instances extending Poolable.
25 …* Benefit - The pool can very quickly determine if an object is elligable for storage without it…
49 …ectPool instance, of a given starting capacity, that recycles instances of a given Poolable object.
52 * @param object An instance of the object that the pool should recycle.
55 public static create(withCapacity: number, object: Poolable): ObjectPool{
56 let result = new ObjectPool(withCapacity, object);
63 constructor(withCapacity: number, object: T) {
70 this.modelObject = object;
126 * @return An instance of Poolable object T
145 * @param object An object of type T to recycle
[all …]
/developtools/packing_tool/adapter/ohos/
DCollectBinInfo.java66 JSONObject object = JSONObject.parseObject(fileData); in getVersionCode() local
67 if (object == null || !object.containsKey(PROFILE_KEY)) { in getVersionCode()
70 object = object.getJSONObject(PROFILE_KEY); in getVersionCode()
71 if (object == null || !object.containsKey(VERSION_KEY)) { in getVersionCode()
74 object = object.getJSONObject(VERSION_KEY); in getVersionCode()
75 if (object != null) { in getVersionCode()
76 versionCode = object.getInteger(CODE_KEY).toString(); in getVersionCode()
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Dlite_component_map.js364 function merge(object, source, nativekeys) { argument
369 let target = object[key];
378 object[key] = merge(target, value, nativekeys);
380 object[key] = value;
383 return object;
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DChartData.ets61 * array that holds all DataSets the ChartData object represents
186 * returns the number of LineDataSets this object contains
199 * Returns the smallest y-value the data object contains.
232 * Returns the greatest y-value the data object contains.
265 * Returns the minimum x-value this data object contains.
274 * Returns the maximum x-value this data object contains.
283 * Returns all DataSet objects this ChartData object holds.
335 * Get the Entry for a corresponding highlight object
349 * Returns the DataSet object with the given label. Search can be case
391 * Removes the given DataSet from this data object. Also recalculates all
[all …]
DEntryOhos.ets36 * Returns the x-value of this Entry object.
45 * Sets the x-value of this Entry object.
DLineData.ets21 * Data object that encapsulates all data associated with a LineChart.
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DDataRenderer.ets36 * the animator object used to perform animations on the chart data
41 * main paint object used for rendering
55 * paint object for drawing values (text representing values of chart
88 * Returns the Paint object this renderer uses for drawing the values
98 * Returns the Paint object this renderer uses for drawing highlight
108 * Returns the Paint object used for rendering.
122 * object.
DAxisRenderer.ets37 * paint object for the grid lines
81 * Returns the Paint object used for drawing the axis (labels).
91 * Returns the Paint object that is used for drawing the grid-lines of the
101 * Returns the Paint object that is used for drawing the axis-line that goes
111 * Returns the Transformer object used for transforming the axis values.
123 * @param min - the minimum value in the data object for this axis
124 * @param max - the maximum value in the data object for this axis
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/highlight/
DHighlight.ets44 * the index of the data object - in case it refers to more than one
64 * the x-position (pixels) on which this highlight object was last drawn
69 * the y-position (pixels) on which this highlight object was last drawn
126 * the index of the data object - in case it refers to more than one
182 * Returns the x-position in pixels where this highlight object was last drawn.
191 * Returns the y-position in pixels where this highlight object was last drawn.
200 * Returns true if this highlight object is equal to the other (compares
/developtools/profiler/device/plugins/ftrace_plugin/tools/
Dftrace_format_parser.py45 class FtraceEvent(object):
60 class ProtoType(object):
93 class FtraceEventField(object):
169 class FtraceEventFormat(object):
188 class FtraceEventFormatParser(object):
250 class FtraceEventCodeGenerator(object):
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/scatter/
DIShapeRenderer.ets25 * @param c Canvas object for drawing the shape
30 * @param renderPaint Paint object used for styling and drawing
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/charts/
DChart.ets61 * object that holds all data that was originally set for the chart, before
90 * paint object used for drawing the description text in the bottom right
96 * paint object for drawing the information text when there are no values in
102 * the object representing the labels on the x-axis
112 * the object responsible for representing the description text
117 * the legend object containing all data associated with the legend
140 * object responsible for rendering the data
146 * object that manages the bounds and drawing constraints of the chart
151 * object responsible for animations
204 * Sets a new data object for the chart. The data object contains all values
[all …]
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/innerapi/
Dinnerapi.py22 class InnerAPILoader(object):
/developtools/hdc/src/common/
Dcircle_buffer.cpp105 void CircleBuffer::Timer(void *object) in Timer() argument
107 CircleBuffer *cirbuf = reinterpret_cast<CircleBuffer *>(object); in Timer()
Dcircle_buffer.h51 static void Timer(void *object);
Dfile_descriptor.h60 static void IOWriteThread(void *object);
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/
Dconfig_parser_mgr.py32 class ConfigParserMgr(object):
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DIMarker.ets46 …* @param highlight The highlight object contains information about the highlighted value such as i…
52 * Draws the IMarker on the given position on the screen with the given Canvas object.
/developtools/integration_verification/tools/startup_guard/startup_checker/
Dbase_rule.py22 class BaseRule(object):
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/hdi/
Dhdi_parser.py22 class HdiParser(object):
/developtools/integration_verification/tools/deps_guard/rules_checker/
Dbase_rule.py22 class BaseRule(object):
/developtools/integration_verification/DeployDevice/src/aw/Common/
DConstant.py19 class CONSTANT(object):
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/sa/
Dsa.py31 class SAParser(object):
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/
DJsonUtils.ets17 _mapToJson(map: Map<string, object>): string{
/developtools/integration_verification/DeployDevice/resource/common/
Dportalocker.py9 class FileLock(object):

123