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

  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp 157 double indexDouble = value.toInteger(exec);
158 if (indexDouble < 0) {
159 indexDouble += length;
160 return indexDouble < 0 ? 0 : static_cast<unsigned>(indexDouble);
162 return indexDouble > length ? length : static_cast<unsigned>(indexDouble);
    [all...]

Completed in 514 milliseconds