Lines Matching defs:text
107 if (info.text != nullptr) { free(info.text); }
118 string text = json["text"];
130 result.text = static_cast<char *>(malloc(text.size() + 1));
131 if (result.text == nullptr) {
140 status |= memcpy_s(result.text, text.size() + 1,
141 text.c_str(), text.size() + 1);
147 result.text = nullptr;
166 if (info.bundleName == nullptr || info.componentType == nullptr || info.text == nullptr) {