HomeSort by relevance Sort by last modified time
    Searched refs:BooleanObject (Results 1 - 12 of 12) 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));
BooleanPrototype.h 24 #include "BooleanObject.h"
28 class BooleanPrototype : public BooleanObject {
BooleanConstructor.cpp 43 BooleanObject* obj = new (exec) BooleanObject(exec->globalData(), asInternalFunction(exec->callee())->globalObject()->booleanObjectStructure());
74 BooleanObject* obj = new (exec) BooleanObject(exec->globalData(), globalObject->booleanObjectStructure());
BooleanPrototype.cpp 41 : BooleanObject(exec->globalData(), structure)
63 if (!thisValue.inherits(&BooleanObject::s_info))
79 if (!thisValue.inherits(&BooleanObject::s_info))
JSGlobalObject.cpp 198 m_booleanObjectStructure.set(exec->globalData(), this, BooleanObject::createStructure(exec->globalData(), m_booleanPrototype.get()));
JSONObject.cpp 29 #include "BooleanObject.h"
140 if (object->inherits(&BooleanObject::s_info))
  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
BooleanObject.h 3 #include <JavaScriptCore/BooleanObject.h>
  /external/v8/include/
v8.h 95 class BooleanObject;
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 23 #include "BooleanObject.h"
232 else if (object->inherits(&BooleanObject::s_info))
266 if (type == Object && object->inherits(&BooleanObject::s_info))
    [all...]
  /external/v8/test/cctest/
test-api.cc     [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 150 milliseconds