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

  /external/webkit/Source/JavaScriptCore/runtime/
BooleanObject.cpp 22 #include "BooleanObject.h"
26 ASSERT_CLASS_FITS_IN_CELL(BooleanObject);
28 const ClassInfo BooleanObject::s_info = { "Boolean", &JSWrapperObject::s_info, 0, 0 };
30 BooleanObject::BooleanObject(JSGlobalData& globalData, Structure* structure)
BooleanObject.h 28 class BooleanObject : public JSWrapperObject {
30 explicit BooleanObject(JSGlobalData&, Structure*);
40 BooleanObject* asBooleanObject(JSValue);
42 inline BooleanObject* asBooleanObject(JSValue value)
44 ASSERT(asObject(value)->inherits(&BooleanObject::s_info));
45 return static_cast<BooleanObject*>(asObject(value));
  /external/v8/include/
v8.h 95 class BooleanObject;
    [all...]

Completed in 154 milliseconds