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

  /external/webkit/Source/JavaScriptCore/heap/
Handle.h 44 // Creating a JSValue Handle is invalid
45 template <> class Handle<JSValue>;
59 typedef JSValue (HandleBase::*UnspecifiedBoolType);
83 static JSValue toJSValue(T* cell) { return reinterpret_cast<JSCell*>(cell); }
88 typedef JSValue ExternalType;
89 static ExternalType getFromSlot(HandleSlot slot) { return slot ? *slot : JSValue(); }
90 static JSValue toJSValue(const JSValue& v) { return v; }
128 bool isObject() const { return jsValue().isObject(); }
129 bool getNumber(double number) const { return jsValue().getNumber(number);
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSValueInlineMethods.h 29 #include "JSValue.h"
33 ALWAYS_INLINE int32_t JSValue::toInt32(ExecState* exec) const
40 inline uint32_t JSValue::toUInt32(ExecState* exec) const
46 inline bool JSValue::isUInt32() const
51 inline uint32_t JSValue::asUInt32() const
57 inline double JSValue::uncheckedGetNumber() const
63 ALWAYS_INLINE JSValue JSValue::toJSNumber(ExecState* exec) const
68 inline JSValue jsNaN()
70 return JSValue(nonInlineNaN())
    [all...]
WriteBarrier.h 29 #include "JSValue.h"
35 inline void writeBarrier(JSGlobalData&, const JSCell*, JSValue)
44 typedef JSValue* HandleSlot;
50 template <> struct JSValueChecker<JSValue> {
111 void set(JSGlobalData& globalData, const JSCell* owner, JSValue value)
117 m_value = JSValue::encode(value);
120 void setWithoutWriteBarrier(JSValue value)
125 m_value = JSValue::encode(value);
128 JSValue get() const
130 return JSValue::decode(m_value)
    [all...]
JSValue.h 99 class JSValue {
108 static EncodedJSValue encode(JSValue);
109 static JSValue decode(EncodedJSValue);
117 JSValue();
118 JSValue(JSNullTag);
119 JSValue(JSUndefinedTag);
120 JSValue(JSTrueTag);
121 JSValue(JSFalseTag);
122 JSValue(JSCell* ptr);
123 JSValue(const JSCell* ptr)
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue_p.h 57 JSValue -> QSVP is associated with engine, but there is no information about real type, the state
167 JSValue = 0x2000, // JS values are equal or higher then this value.
312 : m_state(JSValue)
338 case JSValue:
354 case JSValue:
370 case JSValue:
386 case JSValue:
402 case JSValue:
416 case JSValue:
430 case JSValue
    [all...]
  /external/v8/src/
objects.h 66 // - JSValue
    [all...]

Completed in 75 milliseconds