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

  /external/webkit/JavaScriptCore/runtime/
BooleanObject.cpp 22 #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)
BooleanObject.h 28 class BooleanObject : public JSWrapperObject {
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 12 milliseconds