HomeSort by relevance Sort by last modified time
    Searched refs:slotBase (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/JavaScriptCore/runtime/
PropertySlot.cpp 38 return callData.native.function(exec, slot.m_data.getterFunc, slot.slotBase(), exec->emptyList());
41 return asFunction(slot.m_data.getterFunc)->call(exec, slot.slotBase(), exec->emptyList());
PropertySlot.h 90 void setValueSlot(JSValue slotBase, JSValue* valueSlot)
94 m_slotBase = slotBase;
98 void setValueSlot(JSValue slotBase, JSValue* valueSlot, size_t offset)
102 m_slotBase = slotBase;
126 void setCustom(JSValue slotBase, GetValueFunc getValue)
128 ASSERT(slotBase);
131 m_slotBase = slotBase;
134 void setCustomIndex(JSValue slotBase, unsigned index, GetValueFunc getValue)
136 ASSERT(slotBase);
139 m_slotBase = slotBase;
    [all...]
RegExpConstructor.cpp 200 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 1);
205 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 2);
210 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 3);
215 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 4);
220 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 5);
225 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 6);
230 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 7);
235 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 8);
240 return asRegExpConstructor(slot.slotBase())->getBackref(exec, 9);
245 return jsString(exec, asRegExpConstructor(slot.slotBase())->input())
    [all...]
RegExpObject.cpp 82 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->global());
87 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase());
92 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->multiline());
97 return jsString(exec, asRegExpObject(slot.slotBase())->regExp()->pattern());
102 return jsNumber(exec, asRegExpObject(slot.slotBase())->lastIndex());
JSFunction.cpp 127 JSFunction* thisObj = asFunction(slot.slotBase());
134 JSFunction* thisObj = asFunction(slot.slotBase());
141 JSFunction* thisObj = asFunction(slot.slotBase());
Operations.h 342 inline size_t normalizePrototypeChain(CallFrame* callFrame, JSValue base, JSValue slotBase, const Identifier& propertyName, size_t& slotOffset)
347 while (slotBase != cell) {
350 // If we didn't find slotBase in base's prototype chain, then base
362 if (slotBase == cell)
JSActivation.cpp 144 JSActivation* activation = asActivation(slot.slotBase());
  /external/webkit/WebCore/bindings/js/
JSDataGridColumnListCustom.cpp 48 JSDataGridColumnList* thisObj = static_cast<JSDataGridColumnList*>(asObject(slot.slotBase()));
JSMimeTypeArrayCustom.cpp 38 JSMimeTypeArray* thisObj = static_cast<JSMimeTypeArray*>(asObject(slot.slotBase()));
JSPluginArrayCustom.cpp 38 JSPluginArray* thisObj = static_cast<JSPluginArray*>(asObject(slot.slotBase()));
JSPluginCustom.cpp 37 JSPlugin* thisObj = static_cast<JSPlugin*>(asObject(slot.slotBase()));
JSNamedNodeMapCustom.cpp 45 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slot.slotBase()));
JSHTMLFrameSetElementCustom.cpp 52 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slot.slotBase()));
JSNodeListCustom.cpp 61 JSNodeList* thisObj = static_cast<JSNodeList*>(asObject(slot.slotBase()));
JSStyleSheetListCustom.cpp 57 JSStyleSheetList* thisObj = static_cast<JSStyleSheetList*>(asObject(slot.slotBase()));
JSHTMLFormElementCustom.cpp 49 JSHTMLElement* jsForm = static_cast<JSHTMLFormElement*>(asObject(slot.slotBase()));
JSPluginElementFunctions.cpp 62 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slot.slotBase()));
70 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slot.slotBase()));
JSStorageCustom.cpp 46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slot.slotBase()));
JSHTMLAllCollectionCustom.cpp 117 JSHTMLAllCollection* thisObj = static_cast<JSHTMLAllCollection*>(asObject(slot.slotBase()));
JSCSSStyleDeclarationCustom.cpp 147 JSCSSStyleDeclaration* thisObj = static_cast<JSCSSStyleDeclaration*>(asObject(slot.slotBase()));
JSHTMLCollectionCustom.cpp 114 JSHTMLCollection* thisObj = static_cast<JSHTMLCollection*>(asObject(slot.slotBase()));
JSHTMLDocumentCustom.cpp 60 JSHTMLDocument* thisObj = static_cast<JSHTMLDocument*>(asObject(slot.slotBase()));
  /external/webkit/WebCore/bridge/
runtime_array.cpp 50 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slot.slotBase()));
56 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slot.slotBase()));
runtime_object.cpp 72 RuntimeObjectImp* thisObj = static_cast<RuntimeObjectImp*>(asObject(slot.slotBase()));
90 RuntimeObjectImp* thisObj = static_cast<RuntimeObjectImp*>(asObject(slot.slotBase()));
109 RuntimeObjectImp* thisObj = static_cast<RuntimeObjectImp*>(asObject(slot.slotBase()));
runtime_method.cpp 55 RuntimeMethod* thisObj = static_cast<RuntimeMethod*>(asObject(slot.slotBase()));

Completed in 339 milliseconds

1 2