本文整理汇总了C++中JSDOMSelection::globalObject方法的典型用法代码示例。如果您正苦于以下问题:C++ JSDOMSelection::globalObject方法的具体用法?C++ JSDOMSelection::globalObject怎么用?C++ JSDOMSelection::globalObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSDOMSelection
的用法示例。
在下文中一共展示了JSDOMSelection::globalObject方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: jsDOMSelectionExtentNode
JSValue jsDOMSelectionExtentNode(ExecState* exec, JSValue slotBase, const Identifier&)
{
JSDOMSelection* castedThis = static_cast<JSDOMSelection*>(asObject(slotBase));
UNUSED_PARAM(exec);
DOMSelection* imp = static_cast<DOMSelection*>(castedThis->impl());
JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->extentNode()));
return result;
}
示例2: jsDOMSelectionConstructor
EncodedJSValue jsDOMSelectionConstructor(ExecState* exec, EncodedJSValue thisValue, EncodedJSValue, PropertyName)
{
JSDOMSelection* domObject = jsDynamicCast<JSDOMSelection*>(JSValue::decode(thisValue));
if (!domObject)
return throwVMTypeError(exec);
if (!domObject)
return throwVMTypeError(exec);
return JSValue::encode(JSDOMSelection::getConstructor(exec->vm(), domObject->globalObject()));
}
示例3: jsDOMSelectionExtentNode
EncodedJSValue jsDOMSelectionExtentNode(ExecState* exec, EncodedJSValue slotBase, EncodedJSValue thisValue, PropertyName)
{
JSDOMSelection* castedThis = jsDynamicCast<JSDOMSelection*>(JSValue::decode(thisValue));
UNUSED_PARAM(slotBase);
if (!castedThis)
return throwVMTypeError(exec);
UNUSED_PARAM(exec);
DOMSelection& impl = castedThis->impl();
JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(impl.extentNode()));
return JSValue::encode(result);
}
示例4: jsDOMSelectionPrototypeFunctionGetRangeAt
EncodedJSValue JSC_HOST_CALL jsDOMSelectionPrototypeFunctionGetRangeAt(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
JSDOMSelection* castedThis = jsDynamicCast<JSDOMSelection*>(thisValue);
if (!castedThis)
return throwVMTypeError(exec);
ASSERT_GC_OBJECT_INHERITS(castedThis, JSDOMSelection::info());
DOMSelection& impl = castedThis->impl();
ExceptionCode ec = 0;
int index(toInt32(exec, exec->argument(0), NormalConversion));
if (exec->hadException())
return JSValue::encode(jsUndefined());
JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(impl.getRangeAt(index, ec)));
setDOMException(exec, ec);
return JSValue::encode(result);
}
示例5: jsDOMSelectionPrototypeFunctionGetRangeAt
EncodedJSValue JSC_HOST_CALL jsDOMSelectionPrototypeFunctionGetRangeAt(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
if (!thisValue.inherits(&JSDOMSelection::s_info))
return throwVMTypeError(exec);
JSDOMSelection* castedThis = static_cast<JSDOMSelection*>(asObject(thisValue));
ASSERT_GC_OBJECT_INHERITS(castedThis, &JSDOMSelection::s_info);
DOMSelection* imp = static_cast<DOMSelection*>(castedThis->impl());
ExceptionCode ec = 0;
int index(exec->argument(0).toInt32(exec));
if (exec->hadException())
return JSValue::encode(jsUndefined());
JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->getRangeAt(index, ec)));
setDOMException(exec, ec);
return JSValue::encode(result);
}