• Home
  • Raw
  • Download

Lines Matching refs:props

419 …t InputMethodSystemAbility::ListInputMethod(InputMethodStatus status, std::vector<Property> &props)  in ListInputMethod()  argument
421 return ListInputMethodByUserId(userId_, status, props); in ListInputMethod()
424 … int32_t InputMethodSystemAbility::ListAllInputMethod(int32_t userId, std::vector<Property> &props) in ListAllInputMethod() argument
427 return ListProperty(userId, props); in ListAllInputMethod()
430 int32_t InputMethodSystemAbility::ListEnabledInputMethod(std::vector<Property> &props) in ListEnabledInputMethod() argument
439 props = { property }; in ListEnabledInputMethod()
443 …2_t InputMethodSystemAbility::ListDisabledInputMethod(int32_t userId, std::vector<Property> &props) in ListDisabledInputMethod() argument
446 auto ret = ListProperty(userId, props); in ListDisabledInputMethod()
456 for (auto iter = props.begin(); iter != props.end();) { in ListDisabledInputMethod()
458 iter = props.erase(iter); in ListDisabledInputMethod()
630 std::vector<Property> props = {}; in FindProperty() local
631 auto ret = ListAllInputMethod(userId_, props); in FindProperty()
636 for (const auto &prop : props) { in FindProperty()
696 int32_t userId, InputMethodStatus status, std::vector<Property> &props) in ListInputMethodByUserId() argument
700 return ListAllInputMethod(userId, props); in ListInputMethodByUserId()
703 return ListEnabledInputMethod(props); in ListInputMethodByUserId()
706 return ListDisabledInputMethod(userId, props); in ListInputMethodByUserId()
746 int32_t InputMethodSystemAbility::ListProperty(int32_t userId, std::vector<Property> &props) in ListProperty() argument
757 for (const auto &prop : props) { in ListProperty()
766 props.push_back({ .name = extension.bundleName, in ListProperty()
884 std::vector<Property> props; in IsImeInstalled() local
885 ListAllInputMethod(userId, props); in IsImeInstalled()
886 for (auto const &prop : props) { in IsImeInstalled()
1125 std::vector<Property> props = {}; in SwitchByCombinationKey() local
1126 auto ret = ListProperty(userId_, props); in SwitchByCombinationKey()
1131 auto iter = std::find_if(props.begin(), props.end(), in SwitchByCombinationKey()
1133 if (iter != props.end()) { in SwitchByCombinationKey()