Home
last modified time | relevance | path

Searched refs:alpha (Results 1 – 25 of 43) sorted by relevance

12

/developtools/smartperf_host/ide/test/trace/database/ui-worker/
DProcedureWorkerFrameDynamic.test.ts44 alpha: '0.00',
55 alpha: '70.00',
66 alpha: '13.00',
100 alpha: '16.00',
122 alpha: '11.00',
136 alpha: '0.00',
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DColorTemplate.ets28 public static alpha(color: number): number {
78 public static HSVToColor(alpha: number, arr: number[]): number {
126 r = Math.floor(r * alpha);
127 g = Math.floor(g * alpha);
128 b = Math.floor(b * alpha);
217 * Sets the alpha component of the given color.
220 * @param alpha 0 - 255
223 public static colorWithAlpha(color: number, alpha: number): number {
224 return (color & 0xffffff) | ((alpha & 0xff) << 24);
255 * @param alpha
[all …]
DFill.ets135 public setAlpha(alpha: number): void {
136 this.mAlpha = alpha;
144 let alpha: number = Math.floor(((this.mColor >> 24) / 255.0) * (this.mAlpha / 255.0) * 255.0);
145 this.mFinalColor = (alpha << 24) | (this.mColor & 0xffffff);
/developtools/smartperf_host/ide/test/trace/database/data-trafic/
DFrameDynamicEffectReceiver.test.ts48 alpha: "0.08",
58 alpha: "0.26",
DFrameDynamicEffectSender.test.ts50 alpha: 1,
/developtools/ace_js2bundle/ace-loader/src/lite/
Dlite-image2bin.js63 const alpha = this.bitmap.data[idx + 3];
64 binView.setUint8(binFileOffset, alpha, true);
/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DFrameDynamicEffectSender.ts96 alpha: new SharedArrayBuffer(Float32Array.BYTES_PER_ELEMENT * MAX_COUNT),
134 let alpha = new Float32Array(res.alpha);
144 alpha: alpha[index],
DFrameDynamicEffectReceiver.ts217 …let alpha = new Float32Array(transfer ? frameDynamic.length : data.params.sharedArrayBuffers.alpha
235 alpha[index] = Number(itemData.alpha);
252 alpha: alpha.buffer,
259 …transfer ? [id.buffer, x.buffer, y.buffer, width.buffer, height.buffer, alpha.buffer, ts.buffer] :…
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DLineRadarDataSet.ets105 * sets the alpha value (transparency) that is used for filling the line
108 * @param alpha
110 public setFillAlpha(alpha: number): void {
111 this.mFillAlpha = alpha;
DBaseDataSet.ets209 * Sets a color with a specific alpha value.
212 * @param alpha from 0-255
214 public setColorByAlpha(color: number, alpha: number): void {
216 alpha,
225 * Sets colors with a specific alpha value.
228 * @param alpha
230 public setColorsByArrAndAlpha(colors: number[], alpha: number): void {
234 …ColorTemplate.argb(alpha, ColorTemplate.red(color), ColorTemplate.green(color), ColorTemplate.blue…
DPaint.ets32 public alpha: number = 1;
58 this.alpha = paint.alpha;
82 this.alpha = paint.alpha;
170 this.alpha = value;
174 return this.alpha;
DRadarDataSet.ets81 public setHighlightCircleStrokeAlpha(alpha: number): void {
82 this.mHighlightCircleStrokeAlpha = alpha;
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/renderer/
DXAxisView.ets63 .strokeOpacity(item.alpha)
79 .strokeOpacity(item.alpha)
82 }, (item: Paint) => (item.alpha + '').toString())
DYAxisView.ets49 .strokeOpacity(item.alpha)
68 .strokeOpacity(item.alpha)
71 }, (item: Paint) => (item.alpha + '').toString())
/developtools/smartperf_host/ide/src/trace/bean/
DFrameComponentBean.ts21 alpha: string; property
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/frame/
DTabPaneFrameDynamic.test.ts35 alpha: 0,
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceRow.test.ts32 alpha: true,
70 alpha: true,
90 alpha: true,
112 alpha: true,
/developtools/smartperf_host/ide/src/base-ui/chart/
Dhelper.ts23 c.getContext('2d', { alpha: true })?.scale(dpr, dpr);
/developtools/smartperf_host/ide/test/trace/component/chart/
DSpFrameTimeChart.test.ts153 {alpha: '1.00', appName: 'test0', height: 2772, id: 74, ts: 28565790, width: 1344, x: 0, y: 0},
155 alpha: '1.00',
DSpVirtualMemChart.test.ts67 alpha: false,
/developtools/profiler/host/smartperf/client/client_command/
Dparse_start_trace_noh.cpp60 std::string alpha = Split(tmpStr, "Alpha:")[1]; in CalculateTime() local
64 if (full && stof(alpha) == 1) { in CalculateTime()
Dparse_start_frame_trace.cpp64 std::string alpha = Split(tmpStr, "Alpha:")[1]; in CalculateTime() local
67 stof(alpha) == 1) { in CalculateTime()
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/ftrace/template/
Danimation_stdtype.cpp133 void DynamicFrame::UpdatePosition(TableRowId index, const std::smatch &matcheLine, DataIndex alpha) in UpdatePosition() argument
141 alphas_[index] = alpha; in UpdatePosition()
Danimation_stdtype.h68 void UpdatePosition(TableRowId index, const std::smatch &matcheLine, DataIndex alpha);
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_animation.md26 - Animation Effect Curve旁边的齿轮显示的x,y,width,height,alpha是动效帧的属性值,可以切换。

12