本文整理汇总了C++中XSLImportRule类的典型用法代码示例。如果您正苦于以下问题:C++ XSLImportRule类的具体用法?C++ XSLImportRule怎么用?C++ XSLImportRule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了XSLImportRule类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: loadChildSheet
void XSLStyleSheet::loadChildSheet(const String& href)
{
OwnPtr<XSLImportRule> childRule = XSLImportRule::create(this, href);
XSLImportRule* c = childRule.get();
m_children.append(childRule.release());
c->loadSheet();
}
开发者ID:glenkim-dev,项目名称:blink-crosswalk,代码行数:7,代码来源:XSLStyleSheetLibxslt.cpp
示例2: document
xmlDocPtr XSLStyleSheet::locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* uri)
{
bool matchedParent = (parentDoc == document());
for (unsigned i = 0; i < m_children.size(); ++i) {
XSLImportRule* import = m_children.at(i).get();
XSLStyleSheet* child = import->styleSheet();
if (!child)
continue;
if (matchedParent) {
if (child->processed())
continue; // libxslt has been given this sheet already.
// Check the URI of the child stylesheet against the doc URI.
// In order to ensure that libxml canonicalized both URLs, we get the original href
// string from the import rule and canonicalize it using libxml before comparing it
// with the URI argument.
CString importHref = import->href().utf8();
xmlChar* base = xmlNodeGetBase(parentDoc, (xmlNodePtr)parentDoc);
xmlChar* childURI = xmlBuildURI((const xmlChar*)importHref.data(), base);
bool equalURIs = xmlStrEqual(uri, childURI);
xmlFree(base);
xmlFree(childURI);
if (equalURIs) {
child->markAsProcessed();
return child->document();
}
continue;
}
xmlDocPtr result = import->styleSheet()->locateStylesheetSubResource(parentDoc, uri);
if (result)
return result;
}
return 0;
}
开发者ID:glenkim-dev,项目名称:blink-crosswalk,代码行数:35,代码来源:XSLStyleSheetLibxslt.cpp
示例3: loadChildSheet
void XSLStyleSheet::loadChildSheet(const String& href)
{
auto childRule = std::make_unique<XSLImportRule>(this, href);
XSLImportRule* c = childRule.get();
m_children.append(childRule.release());
c->loadSheet();
}
开发者ID:rodrigo-speller,项目名称:webkit,代码行数:7,代码来源:XSLStyleSheetLibxslt.cpp
示例4: clearDocuments
void XSLStyleSheet::clearDocuments()
{
m_stylesheetDoc = 0;
for (unsigned i = 0; i < m_children.size(); ++i) {
XSLImportRule* import = m_children.at(i).get();
if (import->styleSheet())
import->styleSheet()->clearDocuments();
}
}
开发者ID:glenkim-dev,项目名称:blink-crosswalk,代码行数:9,代码来源:XSLStyleSheetLibxslt.cpp
示例5: length
bool XSLStyleSheet::isLoading()
{
unsigned len = length();
for (unsigned i = 0; i < len; ++i) {
StyleBase* rule = item(i);
if (rule->isImportRule()) {
XSLImportRule* import = static_cast<XSLImportRule*>(rule);
if (import->isLoading())
return true;
}
}
return false;
}
开发者ID:jackiekaon,项目名称:owb-mirror,代码行数:13,代码来源:XSLStyleSheet.cpp
示例6: loadChildSheet
void XSLStyleSheet::loadChildSheet(const String& href)
{
XSLImportRule* childRule = XSLImportRule::create(this, href);
m_children.append(childRule);
childRule->loadSheet();
}
开发者ID:howardroark2018,项目名称:chromium,代码行数:6,代码来源:XSLStyleSheetLibxslt.cpp
注:本文中的XSLImportRule类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论