Lines Matching refs:Utils
18 char* Utils::MallocCString(const std::string &origin)
31 void Utils::InputMethodProperty2C(CInputMethodProperty &props, const Property &property)
33 props.name = Utils::MallocCString(property.name);
34 props.id = Utils::MallocCString(property.id);
35 props.label = Utils::MallocCString(property.label);
37 props.icon = Utils::MallocCString(property.icon);
41 Property Utils::C2InputMethodProperty(CInputMethodProperty props)
53 void Utils::InputMethodSubProperty2C(CInputMethodSubtype &props, const SubProperty &property)
55 props.name = Utils::MallocCString(property.name);
56 props.id = Utils::MallocCString(property.id);
57 props.label = Utils::MallocCString(property.label);
59 props.icon = Utils::MallocCString(property.icon);
61 props.mode = Utils::MallocCString(property.mode);
62 props.locale = Utils::MallocCString(property.locale);
63 props.language = Utils::MallocCString(property.language);