Home
last modified time | relevance | path

Searched refs:screenWidth (Results 1 – 4 of 4) sorted by relevance

/test/ostest/wukong/input_factory/src/
Dswap_input.cpp63 int32_t screenWidth = -1; in RandomInput() local
65 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in RandomInput()
69 int xSrcPosition = rand() % screenWidth; in RandomInput()
71 int xDstPosition = rand() % screenWidth; in RandomInput()
Dmouse_input.cpp41 int32_t screenWidth = -1; in RandomInput() local
45 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in RandomInput()
50 int xClickPosition = rand() % screenWidth; in RandomInput()
Dtouch_input.cpp57 int32_t screenWidth = -1; in RandomInput() local
59 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in RandomInput()
63 int touchX = rand() % screenWidth; in RandomInput()
/test/ostest/wukong/test_flow/src/
Dspecial_test_flow.cpp425 int32_t screenWidth = -1; in CheckPosition() local
429 ErrCode result = WuKongUtil::GetInstance()->GetScreenSize(screenWidth, screenHeight); in CheckPosition()
434 …if (stoi(argumentlist[0]) > screenWidth || stoi(argumentlist[1]) > screenHeight || stoi(argumentli… in CheckPosition()