Home
last modified time | relevance | path

Searched refs:record (Results 1 – 25 of 30) sorted by relevance

12

/test/xts/acts/distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/
DUDMF.test.ets143 * @tc.desc : Test UDMF creating a unifieddata with a text record.
152 let record = <unifiedDataChannel.Text>(records[0]);
154 expect(record.details.title).assertEqual('标题');
155 expect(record.details.content).assertEqual('内容');
163 * @tc.desc : Test UDMF creating a unifieddata with a plaintext record.
172 let record = <unifiedDataChannel.PlainText>(records[0]);
174 expect(record.details.title).assertEqual('标题');
175 expect(record.details.content).assertEqual('内容');
176 expect(record.textContent).assertEqual('textContent');
177 expect(record.abstract).assertEqual('abstract');
[all …]
DUDMFDragBigDataJsApi.test.ets78 let record = data[0].getRecords()[0] as unifiedDataChannel.Text;
79 if (record.details != undefined ){
80 expect(record.details.content).assertEqual(LONG_TESTOVER2M);
135 let record = data[0].getRecords()[0] as unifiedDataChannel.Text;
136 if (record.details != undefined ){
137 expect(record.details.content).assertEqual(LONG_TEST2M);
193 let record = data[0].getRecords()[0] as unifiedDataChannel.Text;
194 if (record.details != undefined ){
195 expect(record.details.content).assertEqual(LONG_TESTIN2M);
251 let record = data[0].getRecords()[0] as unifiedDataChannel.Text;
[all …]
/test/xts/tools/sample/ServerSampleE/vue/src/views/oh-sample/takeaway/business/
Dindex.vue34 <template #action="{ record }">
35 <TableAction :actions="getActions(record)" />
70 function getActions(record) {
74 onClick: handleDetail.bind(null, record),
78 onClick: handleEdit.bind(null, record),
84 confirm: handleDelete.bind(null, record),
103 function handleDetail(record) {
106 record,
114 function handleEdit(record) {
117 record,
[all …]
DBusinessModal.vue28 <template #imgSlot="{ text, record }">
30 …<img v-else :src="getImgView(text)" :preview="getImgView(text)" alt="{{record.name}}" class="anty-…
34 <template #action="{ text, record }">
35 <a @click="handleDetail1(record)">详情</a>
38 <a @click="handleEdit(record)">编辑</a>
40 <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record)">
52 <template #action="{ text, record }">
53 <a @click="handleDetail2(record)">详情</a>
131 businessModel.value = data.record;
140 ...data.record,
[all …]
DCommentModal.vue38 comment.value = data.record;
/test/xts/tools/sample/ServerSampleE/vue/src/views/oh-sample/takeaway/goods/
Dindex.vue35 <template #action="{ record }">
36 <TableAction :actions="getActions(record)" />
71 function getActions(record) {
75 onClick: handleDetail.bind(null, record),
79 onClick: handleEdit.bind(null, record),
85 confirm: handleDelete.bind(null, record),
104 function handleDetail(record) {
107 record,
115 function handleEdit(record) {
118 record,
[all …]
DGoodsModal.vue53 businessId.value = data?.record?.businessId;
62 ...data.record,
/test/xts/tools/sample/ServerSampleE/vue/src/views/oh-sample/takeaway/site/
Dindex.vue35 <template #action="{ record }">
36 <TableAction :actions="getActions(record)" />
71 function getActions(record) {
75 onClick: handleDetail.bind(null, record),
79 onClick: handleEdit.bind(null, record),
85 confirm: handleDelete.bind(null, record),
104 function handleDetail(record) {
107 record,
115 function handleEdit(record) {
118 record,
[all …]
DSiteModal.vue64 ...data.record,
/test/xts/hats/kernel/memtracker/
DMemTrackerTest.cpp69 for (auto record : records) { variable
70 …rintf("memtrack: \trecords[%d], flag=%d, size=%lld \n", i++, record.flags, (long long)record.size);
89 for (auto record : records) { variable
90 …rintf("memtrack: \trecords[%d], flag=%d, size=%lld \n", i++, record.flags, (long long)record.size);
/test/ostest/wukong/report/src/
Dtable.cpp21 Table::Table(std::vector<std::string> cloumn_header, std::vector<std::vector<std::string>> record) in Table() argument
24 uint32_t rows = record.size(); in Table()
28 max = record[row][col].size() > max ? record[row][col].size() : max; in Table()
33 record_ = record; in Table()
Dformat_json.cpp31 std::vector<std::vector<std::string>> record = tablePtr->GetRecord(); in FormatDetail() local
34 for (uint32_t row = 0; row < record.size(); row++) { in FormatDetail()
37 ss << header[col] << ":\"" << record[row][col] << "\""; in FormatDetail()
Dformat_csv.cpp34 std::vector<std::vector<std::string>> record = tablePtr->GetRecord(); in FormatDetail() local
48 for (uint32_t row = 0; row < record.size(); row++) { in FormatDetail()
51 ss << record[row][col]; in FormatDetail()
/test/xts/acts/distributeddatamgr/Pasteboardjsapitest/entry/src/main/ets/test/
DPasteBoard.test.ets47 * @tc.name Adds one record(s)
69 * @tc.name Adds one record(s)
91 * @tc.name Adds one record(s)
113 * @tc.name Adds one record(s)
211 * @tc.desc Successfully cast string record to text
228 * @tc.desc Successfully cast pixelMap record to text
248 * @tc.desc Successfully cast want record to text
265 * @tc.desc Successfully cast arrayBuffer record to text
282 * @tc.desc Get specified record success
298 * @tc.desc Get specified record failed,type of parameter "index" is string.
[all …]
DPasteBoardRecord.test.ets272 * @tc.desc Test pasteBoard create pixelMap record success
294 * @tc.desc Test pasteBoard create want record success
314 * @tc.desc Test pasteBoard create arrayBuffer record success
334 * @tc.desc Test pasteBoard create string record success
354 * @tc.desc Test pasteBoard create arrayBuffer record success with 1024 bit mimeType
374 … * @tc.desc Test pasteBoard create string record success with 512000 bit valueType<string>
399 * @tc.desc Test pasteBoard create string record fail with 1025 bit mimeType
410 console.info("Create record error, err code is: " + err.code)
422 * @tc.desc Test pasteBoard create string record fail,type of mimeType is number
435 console.info("Create record error, err code is: " + err.code)
[all …]
DPasteBoardEtsunitTest.ets647 * @tc.name Adds one record(s)
694 * @tc.name Adds 2 record(s)
741 * @tc.name Adds 15 record(s)
792 * @tc.name Adds 30 record(s)
843 * @tc.name Adds 31 record(s)
1261 * @tc.name Deletes 30 record(s)
1325 * @tc.name Deletes replaced record
1461 * @tc.name Replaces 文本 record
1514 * @tc.name Replaces htmlText record
1563 * @tc.name Replaces uri record
[all …]
/test/xts/tools/sample/ServerSampleD/vue/src/views/oh-sample/video/
Dindex.vue34 <template #action="{ record }">
35 <TableAction :actions="getActions(record)" />
68 function getActions(record) {
72 onClick: handleEdit.bind(null, record)
80 function handleEdit(record) {
82 record
DVideoModal.vue46 video = data.record;
47 options.src = getFileAccessHttpUrl(data.record?.url);
/test/testfwk/arkxtest/uitest/
DBUILD.gn76 "${source_root}/record/external_calls.cpp",
77 "${source_root}/record/find_widget.cpp",
78 "${source_root}/record/keyevent_tracker.cpp",
79 "${source_root}/record/least_square_impl.cpp",
80 "${source_root}/record/matrix3.cpp",
81 "${source_root}/record/pointer_info.cpp",
82 "${source_root}/record/pointer_tracker.cpp",
83 "${source_root}/record/ui_record.cpp",
84 "${source_root}/record/velocity_tracker.cpp",
135 "${source_root}/record",
[all …]
/test/testfwk/xdevice/src/xdevice/_core/
Dlogger.py390 def emit(self, record): argument
397 if callable(should_rollover) and should_rollover(record):
403 msg = self.format(record)
415 def format(self, record): argument
425 time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(record.created)),
426 "{:0>3d}".format(int("%d" % record.msecs)))
427 name = record.name
428 level_name = record.levelname
429 msg = record.msg
431 msg = msg % record.args
/test/testfwk/xdevice/
DREADME_zh.md236 list: Display a list of supported device and task record.
250 This command is used to display device list and task record.
257 list history: display history record of a serial of tasks
258 list <id>: display history record about task what contains specific id
328 ├── task_info.record(记录执行命令,失败用例等清单信息)
DREADME.md121 list: Display a list of supported device and task record.
137 This command is used to display device list and task record.
144 list history: display history record of a serial of tasks
145 list <id>: display history record about task what contains specific id
/test/xts/acts/distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/
DRdbStoreDistributedJsunit.test.js158 const record = { variable
163 let rowId = await rdbStore.insert("employee", record)
181 const record = { variable
189 let rowId = await rdbStore.update(record, predicate);
/test/ostest/wukong/
DREADME_zh.md83 | -r, --record | 录制。 | 否 | 需要指定录制文件。 |
/test/testfwk/arkxtest/uitest/addon/
Dextension_executor.cpp278 UiDriverRecordStart([callback](nlohmann::json record) { in StartCapture() argument
279 … auto data = record.dump(-1, ' ', false, nlohmann::detail::error_handler_t::replace); in StartCapture()

12