Lines Matching refs:htmlNullptr
354 OH_UdsHtml* htmlNullptr = nullptr;
355 EXPECT_EQ(nullptr, OH_UdsHtml_GetType(htmlNullptr));
357 htmlNullptr = new OH_UdsHtml;
358 EXPECT_EQ(nullptr, OH_UdsHtml_GetType(htmlNullptr));
359 OH_UdsHtml_Destroy(htmlNullptr);
376 OH_UdsHtml* htmlNullptr = nullptr;
377 EXPECT_EQ(nullptr, OH_UdsHtml_GetContent(htmlNullptr));
379 htmlNullptr = new OH_UdsHtml;
380 EXPECT_EQ(nullptr, OH_UdsHtml_GetContent(htmlNullptr));
381 OH_UdsHtml_Destroy(htmlNullptr);
398 OH_UdsHtml* htmlNullptr = nullptr;
399 EXPECT_EQ(nullptr, OH_UdsHtml_GetPlainContent(htmlNullptr));
401 htmlNullptr = new OH_UdsHtml;
402 EXPECT_EQ(nullptr, OH_UdsHtml_GetPlainContent(htmlNullptr));
403 OH_UdsHtml_Destroy(htmlNullptr);