HomeSort by relevance Sort by last modified time
    Searched refs:isJSArray (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
JSArray.h 185 inline bool isJSArray(JSGlobalData* globalData, JSCell* cell) { return cell->vptr() == globalData->jsArrayVPtr; }
186 inline bool isJSArray(JSGlobalData* globalData, JSValue v) { return v.isCell() && isJSArray(globalData, v.asCell()); }
ArrayPrototype.cpp 169 bool isRealArray = isJSArray(&exec->globalData(), thisValue);
286 if (isJSArray(&exec->globalData(), thisObj)) {
369 if (isJSArray(&exec->globalData(), thisValue))
393 if (isJSArray(&exec->globalData(), thisValue) && exec->argumentCount() == 1) {
451 if (isJSArray(&exec->globalData(), thisObj))
588 if ((!begin) && (isJSArray(&exec->globalData(), thisObj)))
601 if ((!begin) && (isJSArray(&exec->globalData(), thisObj)))
631 if (isJSArray(&exec->globalData(), thisObj))
667 if (callType == CallTypeJS && isJSArray(&exec->globalData(), thisObj)) {
725 if (callType == CallTypeJS && isJSArray(&exec->globalData(), thisObj))
    [all...]
JSONObject.cpp 485 m_isJSArray = isJSArray(&exec->globalData(), m_object.get());
658 ASSERT(isJSArray(&m_exec->globalData(), asObject(inValue)) || asObject(inValue)->inherits(&JSArray::s_info));
683 if (isJSArray(&m_exec->globalData(), array) && array->canGetIndex(index))
706 if (isJSArray(&m_exec->globalData(), array) && array->canSetIndex(indexStack.last()))
719 ASSERT(!isJSArray(&m_exec->globalData(), asObject(inValue)) && !asObject(inValue)->inherits(&JSArray::s_info));
786 if (isJSArray(&m_exec->globalData(), object) || object->inherits(&JSArray::s_info))
FunctionPrototype.cpp 122 else if (isJSArray(&exec->globalData(), array))
  /external/webkit/Source/WebCore/bindings/js/
ScriptValue.cpp 131 if (isJSArray(&scriptState->globalData(), value)) {
SerializedScriptValue.cpp 287 return isJSArray(&m_exec->globalData(), object) || object->inherits(&JSArray::s_info);
334 if (isJSArray(&m_exec->globalData(), array)) {
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 78 if (isJSArray(globalData, base) && asArray(base)->canGetIndex(i))
123 if (isJSArray(globalData, baseValue)) {
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 869 if (isJSArray(globalData, baseValue) && propertyName == callFrame->propertyNames().length) {
    [all...]

Completed in 197 milliseconds