Lines Matching defs:property
212 for (const auto &property : properties) {
216 std::string imeId = property.mPackageName + "/" + property.mAbilityName;
218 params += "\"labelId\": \"" + std::to_string(property.labelId) + "\",";
219 params += "\"descriptionId\": \"" + std::to_string(property.descriptionId) + "\",";
222 params += "\"label\": \"" + property.label + "\",";
223 params += "\"description\": \"" + property.description + "\"";
242 InputMethodInfo property;
243 property.mPackageName = extension.bundleName;
244 property.mAbilityName = extension.name;
245 property.labelId = applicationInfo.labelId;
246 property.descriptionId = applicationInfo.descriptionId;
247 property.label = label;
248 property.description = description;
249 properties.emplace_back(property);
373 [¤tImeBundle](const Property &property) { return property.name == currentImeBundle; });
451 auto property = GetExtends(extends);
452 subProp.language = property.language;
453 subProp.mode = property.mode;
454 subProp.locale = property.locale;
455 subProp.icon = property.icon;
471 auto property = GetExtends(extends);
472 subProperty.language = property.language;
473 subProperty.mode = property.mode;
474 subProperty.locale = property.locale;
475 subProperty.icon = property.icon;
636 SubProperty property;
639 property.language = data.value;
643 property.mode = data.value;
647 property.locale = data.value;
651 property.icon = data.value;
654 return property;
723 IMSA_HILOGE("get %{public}s property failed, ret: %{public}d!", currentIme->subName.c_str(), ret);