/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8ArrayBufferViewCustom.h | 53 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()
|
D | V8DataViewCustom.cpp | 64 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()
|
D | V8SVGLengthCustom.cpp | 93 EXCEPTION_BLOCK(int, unitType, toUInt32(args[0])); in convertToSpecifiedUnitsCallback()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | ArrayPrototype.cpp | 174 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 …]
|
D | JSByteArray.cpp | 61 unsigned index = propertyName.toUInt32(ok); in getOwnPropertySlot() 72 unsigned index = propertyName.toUInt32(ok); in getOwnPropertyDescriptor() 92 unsigned index = propertyName.toUInt32(ok); in put()
|
D | Identifier.h | 63 static uint32_t toUInt32(const UString&, bool& ok); 64 uint32_t toUInt32(bool& ok) const { return toUInt32(m_string, ok); } in toUInt32() function
|
D | StringConstructor.cpp | 38 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()
|
D | ArrayConstructor.cpp | 59 uint32_t n = args.at(0).toUInt32(exec); in constructArrayWithSizeQuirk()
|
D | JSValue.h | 92 inline uint32_t toUInt32(double number) in toUInt32() function 195 uint32_t toUInt32(ExecState*) const;
|
D | StringObject.cpp | 86 unsigned i = propertyName.toUInt32(isStrictUInt32); in deleteProperty()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSHTMLAllCollectionCustom.cpp | 77 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()
|
D | JSHTMLCollectionCustom.cpp | 73 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()
|
D | JSArrayBufferViewHelper.h | 95 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()
|
D | JSDataViewCustom.cpp | 70 unsigned byteOffset = exec->argument(0).toUInt32(exec); in getDataViewMember() 127 unsigned byteOffset = exec->argument(0).toUInt32(exec); in setDataViewMember()
|
D | JSUint32ArrayCustom.cpp | 38 impl()->set(index, static_cast<unsigned int>(value.toUInt32(exec))); in indexSetter()
|
D | JSSQLTransactionSyncCustom.cpp | 67 unsigned length = lengthValue.toUInt32(exec); in executeSql()
|
D | JSSVGLengthCustom.cpp | 83 unsigned short unitType = exec->argument(0).toUInt32(exec); in convertToSpecifiedUnits()
|
D | JSSQLTransactionCustom.cpp | 68 unsigned length = lengthValue.toUInt32(exec); in executeSql()
|
D | JSNodeListCustom.cpp | 81 unsigned index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); in callNodeList()
|
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/ |
D | tst_qscriptvalue.cpp | 82 void toUInt32(); 363 void tst_QScriptValue::toUInt32() in toUInt32() function in tst_QScriptValue 367 value.toUInt32(); in toUInt32()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8Binding.h | 128 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/ |
D | tst_qscriptvalue_generated_totype.cpp | 1548 void tst_QScriptValue::toUInt32() in toUInt32() function in tst_QScriptValue 1552 QCOMPARE(value.toUInt32(), expected); in toUInt32() 1553 QCOMPARE(value.toUInt32(), expected); in toUInt32()
|
D | tst_qscriptvalue.h | 122 void toUInt32();
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
D | qscriptvalue.cpp | 469 quint32 QScriptValue::toUInt32() const in toUInt32() function in QScriptValue 471 return d_ptr->toUInt32(); in toUInt32()
|
D | qscriptvalue.h | 124 quint32 toUInt32() const;
|