Home
last modified time | relevance | path

Searched refs:toArrayIndex (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptstring_p.h43 inline quint32 toArrayIndex(bool* ok = 0) const;
96 quint32 QScriptStringPrivate::toArrayIndex(bool* ok) const in toArrayIndex() function
98 quint32 idx = QScriptConverter::toArrayIndex(m_string); in toArrayIndex()
Dqscriptstring.cpp101 quint32 QScriptString::toArrayIndex(bool* ok) const in toArrayIndex() function in QScriptString
103 return d_ptr->toArrayIndex(ok); in toArrayIndex()
Dqscriptstring.h43 quint32 toArrayIndex(bool* ok = 0) const;
Dqscriptconverter_p.h42 static quint32 toArrayIndex(const JSStringRef jsstring) in toArrayIndex() function
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptstring/
Dtst_qscriptstring.cpp39 void toArrayIndex();
66 QCOMPARE(str.toArrayIndex(), quint32(0xffffffff)); in test()
156 void tst_QScriptString::toArrayIndex() in toArrayIndex() function in tst_QScriptString
165 quint32 result = engine.toStringHandle(input).toArrayIndex(ptr); in toArrayIndex()
/external/webkit/Source/WebCore/bridge/
Druntime_array.cpp86 unsigned index = propertyName.toArrayIndex(ok); in getOwnPropertySlot()
107 unsigned index = propertyName.toArrayIndex(ok); in getOwnPropertyDescriptor()
138 unsigned index = propertyName.toArrayIndex(ok); in put()
/external/webkit/Source/JavaScriptCore/runtime/
DArguments.cpp184 unsigned i = propertyName.toArrayIndex(isArrayIndex); in getOwnPropertySlot()
215 unsigned i = propertyName.toArrayIndex(isArrayIndex); in getOwnPropertyDescriptor()
273 unsigned i = propertyName.toArrayIndex(isArrayIndex); in put()
322 unsigned i = propertyName.toArrayIndex(isArrayIndex); in deleteProperty()
DIdentifier.h65 unsigned toArrayIndex(bool& ok) const;
DJSArray.h206 inline unsigned Identifier::toArrayIndex(bool& ok) const in toArrayIndex() function
DJSArray.cpp280 unsigned i = propertyName.toArrayIndex(isArrayIndex); in getOwnPropertySlot()
297 unsigned i = propertyName.toArrayIndex(isArrayIndex); in getOwnPropertyDescriptor()
324 unsigned i = propertyName.toArrayIndex(isArrayIndex); in put()
484 unsigned i = propertyName.toArrayIndex(isArrayIndex); in deleteProperty()
/external/webkit/Source/WebCore/bindings/js/
DJSDOMWindowCustom.cpp254 unsigned i = propertyName.toArrayIndex(ok); in getOwnPropertySlot()
328 unsigned i = propertyName.toArrayIndex(ok); in getOwnPropertyDescriptor()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2003-10-25244 …(ArrayInstanceImp::get): Update to use a public toArrayIndex function instead of our own getArrayI…
250 * kjs/ustring.h: Add toArrayIndex.
251 * kjs/ustring.cpp: (UString::toArrayIndex): Added. Implements the rule from array.
252 * kjs/identifier.h: Add a forwarding function so we can use toArrayIndex.
DChangeLog-2011-02-1616032 (JSC::Identifier::toArrayIndex):
16394 (JSC::toArrayIndex):
16504 (JSC::Identifier::toArrayIndex):
16526 (JSC::UString::toArrayIndex):
16593 (JSC::toArrayIndex):
16937 (JSC::UString::toArrayIndex):
17114 (JSC::Identifier::toArrayIndex):
DChangeLog-2010-05-247015 (QScriptString::toArrayIndex):
7027 (QScriptStringPrivate::toArrayIndex):
7037 (tst_QScriptString::toArrayIndex):
DChangeLog-2007-10-1412767 (KJS::UString::toArrayIndex):
14797 (ArrayInstance::deleteProperty): use toArrayIndex instead of toUInt32 when
DChangeLog-2009-06-1633434 check of the boolean result from toArrayIndex.
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
Dtst_qscriptvalue.cpp316 quint32 idx = engine.toStringHandle(propertyName).toArrayIndex(&ok); in getPropertySimple()