Searched refs:toUInt32 (Results 1 - 25 of 47) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DataViewCustom.cpp64 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0]));
81 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0]));
98 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0]));
114 EXCEPTION_BLOCK(unsigned, byteOffset, toUInt32(args[0]));
H A DV8ArrayBufferViewCustom.h53 offset = toUInt32(args[1], ok);
61 length = toUInt32(args[2], ok);
132 len = toUInt32(srcArray->Get(v8::String::New("length")));
178 offset = toUInt32(args[1]);
190 offset = toUInt32(args[1]);
191 uint32_t length = toUInt32(array->Get(v8::String::New("length")));
H A DV8SVGLengthCustom.cpp93 EXCEPTION_BLOCK(int, unitType, toUInt32(args[0]));
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSByteArray.cpp61 unsigned index = propertyName.toUInt32(ok);
72 unsigned index = propertyName.toUInt32(ok);
92 unsigned index = propertyName.toUInt32(ok);
H A DStringConstructor.cpp38 buf[i] = static_cast<UChar>(exec->argument(i).toUInt32(exec));
45 return JSValue::encode(jsSingleCharacterString(exec, exec->argument(0).toUInt32(exec)));
H A DArrayConstructor.cpp59 uint32_t n = args.at(0).toUInt32(exec);
H A DIdentifier.h63 static uint32_t toUInt32(const UString&, bool& ok);
64 uint32_t toUInt32(bool& ok) const { return toUInt32(m_string, ok); } function in class:JSC::Identifier
H A DArrayPrototype.cpp174 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
237 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
271 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
345 unsigned length = curArg.get(exec, exec->propertyNames().length).toUInt32(exec);
373 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
400 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
414 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
442 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
476 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
495 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exe
[all...]
H A DStringObject.cpp86 unsigned i = propertyName.toUInt32(isStrictUInt32);
H A DJSValue.h92 inline uint32_t toUInt32(double number) function in namespace:JSC
195 uint32_t toUInt32(ExecState*) const;
/external/webkit/Source/WebCore/bindings/js/
H A DJSUint32ArrayCustom.cpp38 impl()->set(index, static_cast<unsigned int>(value.toUInt32(exec)));
H A DJSArrayBufferViewHelper.h95 unsigned offset = (exec->argumentCount() > 1) ? exec->argument(1).toUInt32(exec) : 0;
100 length = exec->argument(2).toUInt32(exec);
137 uint32_t length = srcArray->get(exec, JSC::Identifier(exec, "length")).toUInt32(exec);
H A DJSHTMLAllCollectionCustom.cpp77 unsigned index = Identifier::toUInt32(string, ok);
88 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok);
125 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok);
H A DJSHTMLCollectionCustom.cpp73 unsigned index = Identifier::toUInt32(string, ok);
84 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok);
121 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok);
H A DJSSQLTransactionSyncCustom.cpp67 unsigned length = lengthValue.toUInt32(exec);
H A DJSSVGLengthCustom.cpp83 unsigned short unitType = exec->argument(0).toUInt32(exec);
H A DJSDataViewCustom.cpp70 unsigned byteOffset = exec->argument(0).toUInt32(exec);
127 unsigned byteOffset = exec->argument(0).toUInt32(exec);
H A DJSSQLTransactionCustom.cpp68 unsigned length = lengthValue.toUInt32(exec);
H A DJSNodeListCustom.cpp81 unsigned index = Identifier::toUInt32(exec->argument(0).toString(exec), ok);
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.h122 void toUInt32();
H A Dtst_qscriptvalue_generated_totype.cpp1548 void tst_QScriptValue::toUInt32() function in class:tst_QScriptValue
1552 QCOMPARE(value.toUInt32(), expected);
1553 QCOMPARE(value.toUInt32(), expected);
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp82 void toUInt32();
363 void tst_QScriptValue::toUInt32() function in class:tst_QScriptValue
367 value.toUInt32();
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Binding.h128 uint32_t toUInt32(v8::Handle<v8::Value> value, bool& ok);
131 inline uint32_t toUInt32(v8::Handle<v8::Value> value) function in namespace:WebCore
134 return toUInt32(value, ok);
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp389 \sa isNumber(), toInteger(), toInt32(), toUInt32(), toUInt16()
450 \sa toNumber(), toUInt32()
469 quint32 QScriptValue::toUInt32() const function in class:QScriptValue
471 return d_ptr->toUInt32();
H A Dqscriptvalue.h124 quint32 toUInt32() const;

Completed in 179 milliseconds

12