Lines Matching defs:content
536 xmlChar *content = nullptr;
538 content = xmlNodeGetContent(cur);
539 if (content != nullptr) {
540 ret.insert(reinterpret_cast<const char*>(content));
541 xmlFree(content);
613 xmlChar *content = nullptr;
615 content = xmlNodeGetContent(cur);
616 if (content != nullptr && !xmlStrcmp(cur->name, reinterpret_cast<const xmlChar *>(SUPPORTED_REGIONS_NAME))) {
617 Split(reinterpret_cast<const char*>(content), ",", supportedRegions);
618 } else if (content != nullptr && !xmlStrcmp(cur->name,
620 Split(reinterpret_cast<const char*>(content), ",", whiteLanguages);
621 } else if (content != nullptr && !xmlStrcmp(cur->name,
623 Split(reinterpret_cast<const char*>(content), ",", forbiddenRegions);
624 } else if (content != nullptr && !xmlStrcmp(cur->name,
626 Split(reinterpret_cast<const char*>(content), ",", blockedLanguages);
628 if (content != nullptr) {
629 xmlFree(content);
718 xmlChar *content = xmlNodeGetContent(cur);
719 if (content == nullptr) {
720 HILOG_INFO_I18N("get xml node content failed");
724 LocaleInfo localeinfo(reinterpret_cast<const char*>(content), localeInfoConfigs);
727 const char* value = reinterpret_cast<const char*>(content);
729 xmlFree(content);