Searched defs:BooleanObject (Results 1 - 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
H A DBooleanObject.cpp22 #include "BooleanObject.h"
26 ASSERT_CLASS_FITS_IN_CELL(BooleanObject);
28 const ClassInfo BooleanObject::info = { "Boolean", 0, 0, 0 };
30 BooleanObject::BooleanObject(NonNullPassRefPtr<Structure> structure) function in class:JSC::BooleanObject
H A DBooleanObject.h28 class BooleanObject : public JSWrapperObject { class in namespace:JSC
30 explicit BooleanObject(NonNullPassRefPtr<Structure>);
41 BooleanObject* asBooleanObject(JSValue);
43 inline BooleanObject* asBooleanObject(JSValue value)
45 ASSERT(asObject(value)->inherits(&BooleanObject::info));
46 return static_cast<BooleanObject*>(asObject(value));

Completed in 93 milliseconds