Home
last modified time | relevance | path

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

123

/external/webkit/Source/WebCore/bindings/v8/custom/
DV8ArrayBufferViewCustom.h53 offset = toUInt32(args[1], ok); in constructWebGLArrayWithArrayBufferArgument()
61 length = toUInt32(args[2], ok); in constructWebGLArrayWithArrayBufferArgument()
132 len = toUInt32(srcArray->Get(v8::String::New("length"))); in constructWebGLArray()
178 offset = toUInt32(args[1]); in setWebGLArrayHelper()
190 offset = toUInt32(args[1]); in setWebGLArrayHelper()
191 uint32_t length = toUInt32(array->Get(v8::String::New("length"))); in setWebGLArrayHelper()
DV8DataViewCustom.cpp64 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0])); in getInt8Callback()
81 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0])); in getUint8Callback()
98 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0])); in setInt8Callback()
114 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0])); in setUint8Callback()
DV8SVGLengthCustom.cpp93 EXCEPTION_BLOCK(int, unitType, toUInt32(args[0])); in convertToSpecifiedUnitsCallback()
/external/webkit/Source/JavaScriptCore/runtime/
DArrayPrototype.cpp174 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncToString()
237 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncToLocaleString()
271 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncJoin()
345 unsigned length = curArg.get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncConcat()
373 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncPop()
400 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncPush()
414 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncReverse()
442 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncShift()
476 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncSlice()
495 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec); in arrayProtoFuncSort()
[all …]
DJSByteArray.cpp61 unsigned index = propertyName.toUInt32(ok); in getOwnPropertySlot()
72 unsigned index = propertyName.toUInt32(ok); in getOwnPropertyDescriptor()
92 unsigned index = propertyName.toUInt32(ok); in put()
DIdentifier.h63 static uint32_t toUInt32(const UString&, bool& ok);
64 uint32_t toUInt32(bool& ok) const { return toUInt32(m_string, ok); } in toUInt32() function
DStringConstructor.cpp38 buf[i] = static_cast<UChar>(exec->argument(i).toUInt32(exec)); in stringFromCharCodeSlowCase()
45 return JSValue::encode(jsSingleCharacterString(exec, exec->argument(0).toUInt32(exec))); in stringFromCharCode()
DArrayConstructor.cpp59 uint32_t n = args.at(0).toUInt32(exec); in constructArrayWithSizeQuirk()
DJSValue.h92 inline uint32_t toUInt32(double number) in toUInt32() function
195 uint32_t toUInt32(ExecState*) const;
DStringObject.cpp86 unsigned i = propertyName.toUInt32(isStrictUInt32); in deleteProperty()
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLAllCollectionCustom.cpp77 unsigned index = Identifier::toUInt32(string, ok); in callHTMLAllCollection()
88 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok); in callHTMLAllCollection()
125 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); in item()
DJSHTMLCollectionCustom.cpp73 unsigned index = Identifier::toUInt32(string, ok); in callHTMLCollection()
84 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok); in callHTMLCollection()
121 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); in item()
DJSArrayBufferViewHelper.h95 unsigned offset = (exec->argumentCount() > 1) ? exec->argument(1).toUInt32(exec) : 0; in constructArrayBufferViewWithArrayBufferArgument()
100 length = exec->argument(2).toUInt32(exec); in constructArrayBufferViewWithArrayBufferArgument()
137 uint32_t length = srcArray->get(exec, JSC::Identifier(exec, "length")).toUInt32(exec); in constructArrayBufferView()
DJSDataViewCustom.cpp70 unsigned byteOffset = exec->argument(0).toUInt32(exec); in getDataViewMember()
127 unsigned byteOffset = exec->argument(0).toUInt32(exec); in setDataViewMember()
DJSUint32ArrayCustom.cpp38 impl()->set(index, static_cast<unsigned int>(value.toUInt32(exec))); in indexSetter()
DJSSQLTransactionSyncCustom.cpp67 unsigned length = lengthValue.toUInt32(exec); in executeSql()
DJSSVGLengthCustom.cpp83 unsigned short unitType = exec->argument(0).toUInt32(exec); in convertToSpecifiedUnits()
DJSSQLTransactionCustom.cpp68 unsigned length = lengthValue.toUInt32(exec); in executeSql()
DJSNodeListCustom.cpp81 unsigned index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); in callNodeList()
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
Dtst_qscriptvalue.cpp82 void toUInt32();
363 void tst_QScriptValue::toUInt32() in toUInt32() function in tst_QScriptValue
367 value.toUInt32(); in toUInt32()
/external/webkit/Source/WebCore/bindings/v8/
DV8Binding.h128 uint32_t toUInt32(v8::Handle<v8::Value> value, bool& ok);
131 inline uint32_t toUInt32(v8::Handle<v8::Value> value) in toUInt32() function
134 return toUInt32(value, ok); in toUInt32()
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
Dtst_qscriptvalue_generated_totype.cpp1548 void tst_QScriptValue::toUInt32() in toUInt32() function in tst_QScriptValue
1552 QCOMPARE(value.toUInt32(), expected); in toUInt32()
1553 QCOMPARE(value.toUInt32(), expected); in toUInt32()
Dtst_qscriptvalue.h122 void toUInt32();
/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptvalue.cpp469 quint32 QScriptValue::toUInt32() const in toUInt32() function in QScriptValue
471 return d_ptr->toUInt32(); in toUInt32()
Dqscriptvalue.h124 quint32 toUInt32() const;

123