Home
last modified time | relevance | path

Searched refs:lengthValue (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/bindings/js/
DJSHTMLOptionsCollectionCustom.cpp49 double lengthValue = value.toNumber(exec); in setLength() local
50 if (!isnan(lengthValue) && !isinf(lengthValue)) { in setLength()
51 if (lengthValue < 0.0) in setLength()
53 else if (lengthValue > static_cast<double>(UINT_MAX)) in setLength()
56 newLength = static_cast<unsigned>(lengthValue); in setLength()
DJSSQLTransactionCustom.cpp58 JSValuePtr lengthValue = object->get(exec, exec->propertyNames().length); in executeSql() local
61 unsigned length = lengthValue.toUInt32(exec); in executeSql()
/external/webkit/WebCore/inspector/
DInspectorController.cpp858 … JSValueRef lengthValue = JSObjectGetProperty(ctx, object, jsStringRef("length").get(), exception); in setSetting() local
863 const unsigned length = static_cast<unsigned>(JSValueToNumber(ctx, lengthValue, 0)); in setSetting()
2041 JSValueRef lengthValue = JSValueMakeNumber(m_scriptContext, length); in updateScriptResource() local
2045 …ptContext, resource->scriptObject, jsStringRef("contentLength").get(), lengthValue, kJSPropertyAtt… in updateScriptResource()