Home
last modified time | relevance | path

Searched refs:value1 (Results 1 – 19 of 19) sorted by relevance

/developtools/ace_ets2bundle/compiler/sample/pages/testcases/expected/
Dnew-04-expected.js17 constructor(value1 = "hello world 2") { argument
19 this.value1 = value1;
21 render() { return new Column(new Text(this.value1)); }
24 constructor(value1 = "hello world 1") { argument
26 this.value1 = value1;
28 render() { return new Column(new Text(this.value1), new Banner()); }
Dnew-03-expected.js17 constructor(value1 = "hello world 2") { argument
19 this.value1 = value1;
21 render() { return new Column(new Text(this.value1)); }
24 constructor(value1 = "hello world 1") { argument
26 this.value1 = value1;
28 render() { return new Column(new Text(this.value1), new Banner()); }
Dnew-02-expected.js17 constructor(value1 = "hello world 1", value2 = "hello world 2", value3 = "hello world 3") { argument
19 this.value1 = value1;
23 …render() { return new Column(new Text(this.value1), new Text(this.value2), new Text(this.value3));…
Dnew-01-expected.js17 constructor(value1 = "hello world 1", value2 = "hello world 2", value3 = "hello world 3") { argument
19 this.value1 = value1;
23 …render() { return new Column(new Text(this.value1), new Text(this.value2), new Text(this.value3));…
Dcomponent-01-expected.js19 this.value1 = value1;
24 …render() { return new Column(new Text(this.value1), new Text(this.value2), new Text(this.value3));…
/developtools/ace_ets2bundle/compiler/sample/pages/testcases/
Dnew-03.ets18 private value1: string = "hello world 2";
22 Text(this.value1);
30 private value1: string = "hello world 1"
34 Text(this.value1)
Dnew-04.ets18 private value1: string = "hello world 2";
22 Text(this.value1);
30 private value1: string = "hello world 1"
34 Text(this.value1)
Dimport-api-01.ets22 private value1: string = "hello world 1"
28 if (this.value1 === 'Hello') {
29 Text(this.value1)
30 } else if (this.value1 === '') {
Dnew-01.ets19 private value1: string = "hello world 1"
25 Text(this.value1)
Dnew-0101.ets19 private value1: string = "hello world 1"
25 Text(this.value1)
Dnew-02.ets19 private value1: string = "hello world 1"
25 new Text(this.value1)
Dcomponent-01.ets19 private value1: string = "hello world 1"
29 new Text(this.value1)
/developtools/ace_ets2bundle/compiler/sample/pages/
Dindex.ets18 private value1: string = "hello world 4"
24 Text(this.value1)
34 private value1: string = "hello world 1"
41 Text(this.value1)
Dhome_preview.ets19 private value1: string = "hello world 1"
26 Text(this.value1)
32 Text(this.value1)
Dhome.ets19 private value1: string = "hello world 1"
26 Text(this.value1)
32 Text(this.value1)
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/entity/
DPair.java85 private <C> boolean compare(C value1, C value2) { in compare() argument
86 if (value1 == null) { in compare()
89 return value1.equals(value2); in compare()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/frame/
DTabFrameSpacing.ts74 frameSpacing.value1 = structValue.preFrameWidth;
79 frameSpacing.value1 = structValue.preFrameHeight;
84 frameSpacing.value1 = structValue.preX;
89 frameSpacing.value1 = structValue.preY;
199 value1: number | undefined; property in FrameSpacingTableStruct
/developtools/smartperf_host/trace_streamer/test/unittest/table/
Dtable_test.cpp97 int64_t value1 = 456; variable
102 stream_.traceDataCache_->GetArgSetData()->AppendNewArg(nameId1, dataType1, value1, argSet1);
511 int64_t value1 = 2; variable
515 …stream_.traceDataCache_->GetMeasureData()->AppendMeasureData(type1, timestamp1, value1, filterId1);
680 int64_t value1 = 2; variable
684 …stream_.traceDataCache_->GetMeasureData()->AppendMeasureData(type1, timestamp1, value1, filterId1);
/developtools/smartperf_host/trace_streamer/src/parser/
Dprint_event_parser.cpp342 std::string value1 = match.str(1); in OnMainThreadProcessCmd() local
344 …ush_back({streamFilters_->processFilter_->GetInternalTid(base::StrToInt<uint32_t>(value1).value()), in OnMainThreadProcessCmd()