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

1 2 3 4 5

  /external/webkit/WebCore/bindings/js/
JSHTMLElementCustom.cpp 41 scope.push(asObject(toJS(exec, globalObject(), element->ownerDocument())));
45 scope.push(asObject(toJS(exec, globalObject(), form)));
48 scope.push(asObject(toJS(exec, globalObject(), element)));
JSWorkerContextBase.cpp 81 const ClassInfo* classInfo = asObject(value)->classInfo();
83 return static_cast<JSDedicatedWorkerContext*>(asObject(value));
92 const ClassInfo* classInfo = asObject(value)->classInfo();
94 return static_cast<JSSharedWorkerContext*>(asObject(value));
JSAbstractWorkerCustom.cpp 53 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
63 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSEventSourceCustom.cpp 52 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
62 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
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()));
JSStorageCustom.cpp 46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slot.slotBase()));
60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
86 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
JSNamedNodeMapCustom.cpp 45 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slot.slotBase()));
JSNodeFilterCustom.cpp 52 return static_cast<JSNodeFilter*>(asObject(value))->impl();
JSXSLTProcessorCustom.cpp 53 JSNode* node = static_cast<JSNode*>(asObject(nodeVal));
66 WebCore::Node* node = static_cast<JSNode*>(asObject(nodeVal))->impl();
67 Document* doc = static_cast<Document*>(static_cast<JSDocument*>(asObject(docVal))->impl());
78 JSNode* node = static_cast<JSNode*>(asObject(nodeVal));
JSDesktopNotificationsCustom.cpp 70 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener)), false, currentWorld(exec)), args.at(2).toBoolean(exec));
80 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSSVGElementInstanceCustom.cpp 55 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
65 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
JSWebSocketCustom.cpp 68 impl()->addEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), args.at(2).toBoolean(exec));
78 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec));
  /external/webkit/JavaScriptCore/runtime/
BooleanObject.h 45 ASSERT(asObject(value)->inherits(&BooleanObject::info));
46 return static_cast<BooleanObject*>(asObject(value));
StructureChain.cpp 38 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
44 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
ConstructData.cpp 36 return constructData.native.function(exec, asObject(object), args);
InternalFunction.h 62 ASSERT(asObject(value)->inherits(&InternalFunction::info));
63 return static_cast<InternalFunction*>(asObject(value));
CallData.cpp 36 return callData.native.function(exec, asObject(functionObject), thisValue, args);
Operations.cpp 74 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
77 if (asObject(v)->getCallData(callData) != CallTypeNone)
92 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
95 if (asObject(v)->getCallData(callData) != CallTypeNone)
105 if (asObject(v)->getCallData(callData) != CallTypeNone)
DateInstance.h 76 ASSERT(asObject(value)->inherits(&DateInstance::info));
77 return static_cast<DateInstance*>(asObject(value));
JSActivation.h 102 ASSERT(asObject(value)->inherits(&JSActivation::info));
103 return static_cast<JSActivation*>(asObject(value));
RegExpObject.h 81 ASSERT(asObject(value)->inherits(&RegExpObject::info));
82 return static_cast<RegExpObject*>(asObject(value));
StringObject.h 63 ASSERT(asObject(value)->inherits(&StringObject::info));
64 return static_cast<StringObject*>(asObject(value));

Completed in 57 milliseconds

1 2 3 4 5