Home
last modified time | relevance | path

Searched refs:toUInt32 (Results 1 – 25 of 32) sorted by relevance

12

/external/webkit/JavaScriptCore/runtime/
DArrayPrototype.cpp162 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncToString()
208 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncToLocaleString()
264 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncJoin()
302 unsigned length = curArg.get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncConcat()
329 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncPop()
350 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncPush()
361 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncReverse()
387 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncShift()
415 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncSlice()
468 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncSort()
[all …]
DIdentifier.h61 uint32_t toUInt32(bool* ok) const { return _ustring.toUInt32(ok); } in toUInt32() function
62 …uint32_t toUInt32(bool* ok, bool tolerateEmptyString) const { return _ustring.toUInt32(ok, tolerat… in toUInt32() function
DJSByteArray.cpp55 unsigned index = propertyName.toUInt32(&ok, false); in getOwnPropertySlot()
75 unsigned index = propertyName.toUInt32(&ok, false); in put()
DStringConstructor.cpp37 *p++ = static_cast<UChar>((*it).toUInt32(exec)); in stringFromCharCodeSlowCase()
44 return jsSingleCharacterString(exec, args.at(0).toUInt32(exec)); in stringFromCharCode()
DJSValue.h168 uint32_t toUInt32(ExecState*) const;
169 uint32_t toUInt32(ExecState*, bool& ok) const;
374 inline uint32_t toUInt32(double val) in toUInt32() function
391 inline uint32_t JSValue::toUInt32(ExecState* exec) const in toUInt32() function
408 inline uint32_t JSValue::toUInt32(ExecState* exec, bool& ok) const in toUInt32() function
DArrayConstructor.cpp50 uint32_t n = args.at(0).toUInt32(exec); in constructArrayWithSizeQuirk()
DArguments.cpp67 unsigned length = min(get(exec, exec->propertyNames().length).toUInt32(exec), maxSize); in copyToRegisters()
102 unsigned length = get(exec, exec->propertyNames().length).toUInt32(exec); in fillArgList()
DFunctionPrototype.cpp122 … unsigned length = asArray(array)->get(exec, exec->propertyNames().length).toUInt32(exec); in functionProtoFuncApply()
DUString.h327 uint32_t toUInt32(bool* ok = 0) const;
328 uint32_t toUInt32(bool* ok, bool tolerateEmptyString) const;
DArguments.h71 return get(exec, exec->propertyNames().length).toUInt32(exec); in numProvidedArguments()
DJSONObject.cpp200 unsigned length = array->get(exec, exec->globalData().propertyNames->length).toUInt32(exec); in Stringifier()
462 m_size = m_object->get(exec, exec->globalData().propertyNames->length).toUInt32(exec); in appendNextProperty()
DUString.cpp1444 uint32_t UString::toUInt32(bool* ok) const in toUInt32() function in JSC::UString
1460 uint32_t UString::toUInt32(bool* ok, bool tolerateEmptyString) const in toUInt32() function in JSC::UString
DJSArray.cpp253 unsigned newLength = value.toUInt32(exec); in put()
/external/webkit/WebCore/bindings/js/
DJSSVGTransformListCustom.cpp86 unsigned index = args.at(0).toUInt32(exec, indexOk); in getItem()
101 unsigned index = args.at(1).toUInt32(exec, indexOk); in insertItemBefore()
116 unsigned index = args.at(1).toUInt32(exec, indexOk); in replaceItem()
131 unsigned index = args.at(0).toUInt32(exec, indexOk); in removeItem()
DJSHTMLCollectionCustom.cpp69 unsigned index = string.toUInt32(&ok, false); in callHTMLCollection()
80 unsigned index = args.at(1).toString(exec).toUInt32(&ok, false); in callHTMLCollection()
117 uint32_t index = args.at(0).toString(exec).toUInt32(&ok, false); in item()
DJSSVGPointListCustom.cpp86 unsigned index = args.at(0).toUInt32(exec, indexOk); in getItem()
101 unsigned index = args.at(1).toUInt32(exec, indexOk); in insertItemBefore()
DJSNodeListCustom.cpp42 unsigned index = args.at(0).toString(exec).toUInt32(&ok); in callNodeList()
DJSNamedNodesCollection.cpp71 unsigned index = propertyName.toUInt32(&ok); in getOwnPropertySlot()
DJSSQLTransactionCustom.cpp68 unsigned length = lengthValue.toUInt32(exec); in executeSql()
/external/webkit/JavaScriptGlue/
DJSUtils.cpp302 … unsigned int length = object->get(exec, Identifier(exec, "length")).toUInt32(exec); in KJSValueToCFTypeInternal()
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore_debug.def262 ?toUInt32@UString@JSC@@QBEIPA_N@Z
263 ?toUInt32@UString@JSC@@QBEIPA_N_N@Z
DJavaScriptCore.def264 ?toUInt32@UString@JSC@@QBEIPA_N@Z
265 ?toUInt32@UString@JSC@@QBEIPA_N_N@Z
/external/webkit/JavaScriptCore/
DChangeLog-2002-12-03185 (UString::toUInt32):
1543 toUInt32(unsigned&), not the real method.
1545 (ValueImp::toUInt32): Likewise.
1576 * kjs/internal.h: Make toUInt32 private to make sure no one calls it directly
1679 (NumberImp::toUInt32): Implement.
1742 … (ValueImp::toUInt32): New interface, mainly useful so we can detect array indices and not turn
1744 (ValueImp::toInteger): Use the new toUInt32. Probably can use more improvement.
1745 (ValueImp::toInt32): Use the new toUInt32. Probably can use more improvement.
1746 (ValueImp::toUInt16): Use the new toUInt32. Probably can use more improvement.
/external/webkit/JavaScriptCore/jit/
DJITStubs.cpp2093 … argCount = argObject->get(callFrame, callFrame->propertyNames().length).toUInt32(callFrame); in DEFINE_STUB_FUNCTION()
2435 …JSValue result = jsNumber(stackFrame.globalData, (val.toInt32(callFrame)) << (shift.toUInt32(callF… in DEFINE_STUB_FUNCTION()
2462 …JSValue result = jsNumber(stackFrame.globalData, (val.toInt32(callFrame)) >> (shift.toUInt32(callF… in DEFINE_STUB_FUNCTION()
2571 …JSValue result = jsNumber(stackFrame.globalData, (val.toUInt32(callFrame)) >> (shift.toUInt32(call… in DEFINE_STUB_FUNCTION()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp1650 …JSValue result = jsNumber(callFrame, (val.toInt32(callFrame)) << (shift.toUInt32(callFrame) & 0x1f… in privateExecute()
1672 …JSValue result = jsNumber(callFrame, (val.toInt32(callFrame)) >> (shift.toUInt32(callFrame) & 0x1f… in privateExecute()
1693 …JSValue result = jsNumber(callFrame, (val.toUInt32(callFrame)) >> (shift.toUInt32(callFrame) & 0x1… in privateExecute()
3111 … argCount = argObject->get(callFrame, callFrame->propertyNames().length).toUInt32(callFrame); in privateExecute()

12