/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/Dialog/ |
H A D | arkoala_api.h | 199 * @brief Prevents events from bubbling further to the parent node for processing. 205 * @brief Blocks the current node's default event handling behavior, allowing events 1388 void (*setBackgroundColor)(ArkUINodeHandle node, ArkUI_Uint32 color); 1389 void (*resetBackgroundColor)(ArkUINodeHandle node); 1390 void (*setWidth)(ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Int32 unit, ArkUI_CharPtr calcValue); 1391 void (*resetWidth)(ArkUINodeHandle node); 1392 void (*setHeight)(ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Int32 unit, ArkUI_CharPtr calcValue); 1393 void (*resetHeight)(ArkUINodeHandle node); 1395 ArkUINodeHandle node, const ArkUI_Float32* values, const ArkUI_Int32* units, ArkUI_Int32 length); 1396 void (*resetBorderRadius)(ArkUINodeHandle node); [all...] |
/test/xts/acts/distributed_schedule_lite/system_ability_manager_posix/src/ |
H A D | CommonTest.cpp | 87 Node node = {1, (char*)"node1", 1}; in HWTEST_F() local 88 Node *vectorSwap = (Node *)VECTOR_Swap(&nodeVector, (int16)0, &node); in HWTEST_F() 91 int16 indexFind = VECTOR_Find(&nodeVector, &node); in HWTEST_F() 94 int16 indexFindByKey = VECTOR_FindByKey(&nodeVector, &node); in HWTEST_F() 109 Node node = {1, (char*)"node1", 1}; in HWTEST_F() local 110 int16 resultAdd = VECTOR_Add(&nodeVector, &node); in HWTEST_F() 144 Node node[] = { in HWTEST_F() local 145 {0, (char*)"node", 0}, in HWTEST_F() 146 {1, (char*)"node", 1}, in HWTEST_F() 147 {2, (char*)"node", in HWTEST_F() 196 Node node[] = { HWTEST_F() local 244 Node node[] = { HWTEST_F() local 302 Node node = {1, (char*)"node1", 1}; HWTEST_F() local 320 Node node = {1, (char*)"node1", 1}; HWTEST_F() local 337 Node node = {1, (char*)"node1", 1}; HWTEST_F() local 360 Node node = {1, (char*)"node1", 1}; HWTEST_F() local [all...] |
H A D | TaskpoolSingleTaskTest.cpp | 183 Node *node = (Node *)malloc(sizeof(Node)); in Initialize() local 184 if (node == nullptr) { in Initialize() 187 node->id = g_initlizationOrder; in Initialize() 188 node->name = (char *)service->GetName(service); in Initialize() 189 VECTOR_Add(&g_nodeVector, node); in Initialize() 580 Node *node = (Node *)VECTOR_At(&g_nodeVector, i); in HWTEST_F() local 581 if (node == nullptr) { in HWTEST_F() 584 printf("[hcpptest]vector: service %s, serviceArray: %s \n", node->name, in HWTEST_F() 586 ASSERT_EQ(node->id, i + 1); in HWTEST_F() 587 ASSERT_EQ(strcmp(node in HWTEST_F() [all...] |
/test/xts/acts/distributed_schedule_lite/system_ability_manager_hal/src/ |
H A D | common_func_test.c | 79 Node node = {1, "node1"};
variable 80 Node *vectorSwap = (Node *)VECTOR_Swap(&nodeVector, (int16)0, &node);
83 int16 indexFind = VECTOR_Find(&nodeVector, &node);
86 int16 indexFindByKey = VECTOR_FindByKey(&nodeVector, &node);
101 Node node = {1, "node1"};
variable 102 int16 resultAdd = VECTOR_Add(&nodeVector, &node);
135 Node node[] = {
variable 136 {0, "node"},
137 {1, "node"},
138 {2, "node"},
187 Node node[] = { global() variable 235 Node node[] = { global() variable 293 Node node = {1, "node1"}; global() variable 311 Node node = {1, "node1"}; global() variable 328 Node node = {1, "node1"}; global() variable 351 Node node = {1, "node1"}; global() variable [all...] |
/test/testfwk/xdevice/plugins/ohos/src/ohos/config/ |
H A D | config_manager.py | 34 for node in self.config_content.findall(target_name): 35 if node.attrib["type"] != "com": 38 device = [node.attrib] 42 for sub in node: 53 for serial in node.findall("serial"): 70 for node in self.config_content.findall(target_name): 72 if node.attrib["type"] != "usb-hdc": 74 data_dic["usb_type"] = node.attrib["type"] 75 for sub in node: 82 label = node [all...] |
/test/xts/device_attest/services/core/utils/ |
H A D | attest_utils_memleak.c | 58 static void FreeMemNode(ListNode** node) in FreeMemNode() argument 60 if (node == NULL || *node == NULL) { in FreeMemNode() 63 ListNode* listNode = *node; in FreeMemNode() 79 *node = NULL; in FreeMemNode() 105 ListNode* node = (ListNode *)malloc(sizeof(ListNode)); in AddMemNode() local 106 if (node == NULL) { in AddMemNode() 109 node->data = data; in AddMemNode() 110 node->next = NULL; in AddMemNode() 114 list->head = node; in AddMemNode() [all...] |
H A D | attest_utils_list.c | 53 ListNode* node = (ListNode *)ATTEST_MEM_MALLOC(sizeof(ListNode)); in AddListNode() local 54 if (node == NULL) { in AddListNode() 58 node->data = data; in AddListNode() 59 node->next = NULL; in AddListNode() 61 list->head = node; in AddListNode() 63 head->next = node; in AddListNode()
|
/test/xts/device_attest_lite/services/core/utils/ |
H A D | attest_utils_memleak.c | 58 static void FreeMemNode(ListNode** node) in FreeMemNode() argument 60 if (node == NULL || *node == NULL) { in FreeMemNode() 63 ListNode* listNode = *node; in FreeMemNode() 79 *node = NULL; in FreeMemNode() 105 ListNode* node = (ListNode *)malloc(sizeof(ListNode)); in AddMemNode() local 106 if (node == NULL) { in AddMemNode() 109 node->data = data; in AddMemNode() 110 node->next = NULL; in AddMemNode() 114 list->head = node; in AddMemNode() [all...] |
H A D | attest_utils_list.c | 53 ListNode* node = (ListNode *)ATTEST_MEM_MALLOC(sizeof(ListNode)); in AddListNode() local 54 if (node == NULL) { in AddListNode() 58 node->data = data; in AddListNode() 59 node->next = NULL; in AddListNode() 61 list->head = node; in AddListNode() 63 head->next = node; in AddListNode()
|
/test/xts/hats/ai/nnrt/hdi/v2_0/nnrtFunctionTest_additional/src/ |
H A D | hdi_device_test.cpp | 280 * @tc.desc: Call function V2 GetSupportedOperation, node.nodeType is NODE_TYPE_NONE 292 for (auto &node : iModel->nodes) { in HWTEST_F() 293 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_NONE); in HWTEST_F() 311 * @tc.desc: Call function V2 GetSupportedOperation, node.nodeType is NODE_TYPE_ACTIVATION 323 for (auto &node : iModel->nodes) { in HWTEST_F() 324 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_ACTIVATION); in HWTEST_F() 342 * @tc.desc: Call function V2 GetSupportedOperation, node.nodeType is NODE_TYPE_ADD_FUSION 354 for (auto &node : iModel->nodes) { in HWTEST_F() 355 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_ADD_FUSION); in HWTEST_F() 373 * @tc.desc: Call function V2 GetSupportedOperation, node [all...] |
H A D | hdi_model_prepare_test.cpp | 1757 * @tc.desc: Call function V2 PrepareModel, node.nodeType is NODE_TYPE_NONE 1769 for (auto &node : iModel->nodes) { in HWTEST_F() 1770 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_NONE); in HWTEST_F() 1799 * @tc.desc: Call function V2 PrepareModel, node.nodeType is NODE_TYPE_ACTIVATION 1811 for (auto &node : iModel->nodes) { in HWTEST_F() 1812 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_ACTIVATION); in HWTEST_F() 1841 * @tc.desc: Call function V2 PrepareModel, node.nodeType is NODE_TYPE_ADD_FUSION 1853 for (auto &node : iModel->nodes) { in HWTEST_F() 1854 node.nodeType = static_cast<V2_0::NodeType>(mindspore::lite::NODE_TYPE_ADD_FUSION); in HWTEST_F() 1883 * @tc.desc: Call function V2 PrepareModel, node 4358 auto &node = iModel->nodes[0]; HWTEST_F() local 4387 auto &node = iModel->nodes[0]; HWTEST_F() local [all...] |
/test/testfwk/developer_test/src/core/config/ |
H A D | config_manager.py | 58 node = root.find(target_name)
61 for sub in node:
76 node = root.find(target_name)
77 for sub in node:
211 for node in root.findall("environment/device"):
212 if node.attrib["type"] != "usb-hdc":
214 for sub in node:
232 node = root.find(target_name)
233 if not node:
237 node [all...] |
H A D | resource_manager.py | 67 node = None 77 node = target 82 return node 252 node = self.find_node_by_target(filepath, targetname) 253 if node: 255 target_attrib_list.append(node.attrib) 257 env_node = node.find("environment") 266 pre_node = node.find("preparer") 273 clr_node = node.find("cleaner")
|
/test/xts/acts/ |
H A D | get_dependency.py | 90 def dfs(node, num, string_buffer): 91 string_buffer.append(" " * num + node) # 追加内容到列表 92 if node in visited: 96 visited.add(node) 97 if node in dependencies: 98 for dependency in dependencies[node]: 101 for node in nodes: 102 dfs(node, 0, string_buffer)
|
/test/testfwk/xdevice/src/xdevice/_core/config/ |
H A D | resource_manager.py | 42 node = self._find_node_by_target(filepath, targetname) 43 if node: 45 target_attrib_list.append(node.attrib) 47 env_node = node.find("environment") 56 pre_node = node.find("preparer") 63 clr_node = node.find("cleaner") 78 node = None 87 node = target 91 return node
|
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/system/ |
H A D | system_ColorFontChange_test.cpp | 64 auto node = (ArkUI_NodeHandle)userData;
in testRegisterSystemColorModeChangeEvent_001() 67 nodeAPI -> getAttribute(node, NODE_HEIGHT) -> value[0].f32);
in testRegisterSystemColorModeChangeEvent_001() 113 auto node = (ArkUI_NodeHandle)userData;
in testUnregisterSystemColorModeChangeEvent_002() 116 nodeAPI -> getAttribute(node, NODE_HEIGHT) -> value[0].f32);
in testUnregisterSystemColorModeChangeEvent_002() 157 auto node = (ArkUI_NodeHandle)userData;
in testRegisterSystemFontStyleChangeEvent_003() 160 nodeAPI -> getAttribute(node, NODE_HEIGHT) -> value[0].f32);
in testRegisterSystemFontStyleChangeEvent_003() 200 auto node = (ArkUI_NodeHandle)userData;
in testUnregisterSystemFontStyleChangeEvent_004() 203 nodeAPI->getAttribute(node, NODE_HEIGHT)->value[0].f32);
in testUnregisterSystemFontStyleChangeEvent_004()
|
/test/xts/dcts/ability/dmsfwk/dmsfwkstagetestserver/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/communication/dsoftbus/rpcserver/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_store/server/hap/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/multimedia/avsessionserver/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/communication/dsoftbus_request/rpcserver/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_stage_store/server/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/dcts/filemanagement/fileio/server/ |
H A D | hvigorw.bat | 33 set NODE_EXE=node.exe 38 @rem Find node.exe 45 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 58 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/tools/sample/AppSampleD/ |
H A D | hvigorw.bat | 34 set NODE_EXE=node.exe 39 @rem Find node.exe 46 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 59 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|
/test/xts/tools/sample/AppSampleE/ |
H A D | hvigorw.bat | 34 set NODE_EXE=node.exe 39 @rem Find node.exe 46 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. 59 echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH.
|