HomeSort by relevance Sort by last modified time
    Searched defs:indexStack (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSONObject.cpp 657 Vector<uint32_t, 16> indexStack;
682 indexStack.append(0);
696 uint32_t index = indexStack.last();
700 indexStack.removeLast();
722 JSValue filteredValue = callReviver(array, jsString(m_exec, UString::from(indexStack.last())), outValue);
724 array->deleteProperty(m_exec, indexStack.last());
726 if (isJSArray(&m_exec->globalData(), array) && array->canSetIndex(indexStack.last()))
727 array->setIndex(indexStack.last(), filteredValue);
729 array->put(m_exec, indexStack.last(), filteredValue);
733 indexStack.last()++
    [all...]
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 258 Vector<uint32_t, 16> indexStack;
288 indexStack.append(0);
303 uint32_t index = indexStack.last();
311 indexStack.removeLast();
321 indexStack.last()++;
336 context.putProperty(outArray, indexStack.last(), outValue);
337 indexStack.last()++;
353 indexStack.append(0);
368 uint32_t index = indexStack.last();
377 indexStack.removeLast()
    [all...]

Completed in 24 milliseconds