本文整理汇总了C++中NodeIterator::nextNode方法的典型用法代码示例。如果您正苦于以下问题:C++ NodeIterator::nextNode方法的具体用法?C++ NodeIterator::nextNode怎么用?C++ NodeIterator::nextNode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NodeIterator
的用法示例。
在下文中一共展示了NodeIterator::nextNode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: callAsFunction
JSValue* JSNodeIteratorPrototypeFunction::callAsFunction(ExecState* exec, JSObject* thisObj, const List& args)
{
if (!thisObj->inherits(&JSNodeIterator::info))
return throwError(exec, TypeError);
NodeIterator* imp = static_cast<NodeIterator*>(static_cast<JSNodeIterator*>(thisObj)->impl());
switch (id) {
case JSNodeIterator::NextNodeFuncNum: {
ExceptionCode ec = 0;
KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->nextNode(ec)));
setDOMException(exec, ec);
return result;
}
case JSNodeIterator::PreviousNodeFuncNum: {
ExceptionCode ec = 0;
KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->previousNode(ec)));
setDOMException(exec, ec);
return result;
}
case JSNodeIterator::DetachFuncNum: {
imp->detach();
return jsUndefined();
}
}
return 0;
}
示例2: jsNodeIteratorPrototypeFunctionNextNode
EncodedJSValue JSC_HOST_CALL jsNodeIteratorPrototypeFunctionNextNode(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
if (!thisValue.inherits(&JSNodeIterator::s_info))
return throwVMTypeError(exec);
JSNodeIterator* castedThis = static_cast<JSNodeIterator*>(asObject(thisValue));
ASSERT_GC_OBJECT_INHERITS(castedThis, &JSNodeIterator::s_info);
NodeIterator* imp = static_cast<NodeIterator*>(castedThis->impl());
ExceptionCode ec = 0;
JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->nextNode(exec, ec)));
setDOMException(exec, ec);
if (exec->hadException())
return JSValue::encode(jsUndefined());
return JSValue::encode(result);
}