HomeSort by relevance Sort by last modified time
    Searched full:additionalargs (Results 1 - 1 of 1) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp 585 unsigned additionalArgs = std::max<int>(exec->argumentCount() - 2, 0);
586 if (additionalArgs != deleteCount) {
587 if (additionalArgs < deleteCount) {
589 ((JSArray *)thisObj)->shiftCount(exec, deleteCount - additionalArgs);
593 thisObj->put(exec, k + additionalArgs, v);
595 thisObj->deleteProperty(exec, k + additionalArgs);
597 for (unsigned k = length; k > length - deleteCount + additionalArgs; --k)
602 ((JSArray *)thisObj)->unshiftCount(exec, additionalArgs - deleteCount);
606 thisObj->put(exec, k + additionalArgs - 1, obj);
608 thisObj->deleteProperty(exec, k + additionalArgs - 1)
    [all...]

Completed in 1468 milliseconds