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

  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 33 JSCell* specificValue;
36 PropertyMapEntry(UString::Rep* key, unsigned attributes, JSCell* specificValue)
40 , specificValue(specificValue)
45 PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, JSCell* specificValue, unsigned index)
49 , specificValue(specificValue)
JSObject.cpp 132 JSCell* specificValue;
133 if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly)
204 JSCell* specificValue;
205 if (m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) {
415 bool JSObject::getPropertySpecificValue(ExecState*, const Identifier& propertyName, JSCell*& specificValue) const
418 if (m_structure->get(propertyName, attributes, specificValue) != WTF::notFound)
Structure.cpp 311 m_propertyTable->entries()[entryIndex - 1].specificValue = 0;
332 m_propertyTable->entries()[entryIndex - 1].specificValue = 0;
338 PassRefPtr<Structure> Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
343 if (Structure* existingTransition = structure->table.get(make_pair(propertyName.ustring().rep(), attributes), specificValue)) {
354 PassRefPtr<Structure> Structure::addPropertyTransition(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
358 ASSERT(!Structure::addPropertyTransitionToExistingStructure(structure, propertyName, attributes, specificValue, offset));
361 specificValue = 0;
366 offset = transition->put(propertyName, attributes, specificValue);
380 transition->m_specificValueInPrevious = specificValue;
400 offset = transition->put(propertyName, attributes, specificValue);
    [all...]

Completed in 149 milliseconds