Searched refs:SelectFontType (Results 1 - 2 of 2) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_select.h | 22 enum class SelectFontType { class 65 static void ParseFontSize(const JSRef<JSVal>& jsValue, SelectFontType type); 66 static void ParseFontWeight(const JSRef<JSVal>& jsValue, SelectFontType type); 67 static void ParseFontFamily(const JSRef<JSVal>& jsValue, SelectFontType type); 68 static void ParseFontStyle(const JSRef<JSVal>& jsValue, SelectFontType type); 69 static void ResetFontSize(SelectFontType type); 70 static void ResetFontWeight(SelectFontType type); 71 static void ResetFontFamily(SelectFontType type); 72 static void ResetFontStyle(SelectFontType type); 73 static void ResetFont(SelectFontType typ [all...] |
H A D | js_select.cpp | 230 ResetFont(SelectFontType::SELECT); in Font() 237 ParseFontSize(param->GetProperty("size"), SelectFontType::SELECT); in Font() 238 ParseFontWeight(param->GetProperty("weight"), SelectFontType::SELECT); in Font() 239 ParseFontFamily(param->GetProperty("family"), SelectFontType::SELECT); in Font() 240 ParseFontStyle(param->GetProperty("style"), SelectFontType::SELECT); in Font() 243 void JSSelect::ParseFontSize(const JSRef<JSVal>& jsValue, SelectFontType type) in ParseFontSize() 250 if (type == SelectFontType::SELECT) { in ParseFontSize() 252 } else if (type == SelectFontType::OPTION) { in ParseFontSize() 254 } else if (type == SelectFontType::SELECTED_OPTION) { in ParseFontSize() 259 void JSSelect::ParseFontWeight(const JSRef<JSVal>& jsValue, SelectFontType typ [all...] |
Completed in 2 milliseconds