HomeSort by relevance Sort by last modified time
    Searched refs:JSValueIsStrictEqual (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/API/
JSValueRef.h 153 JS_EXPORT bool JSValueIsStrictEqual(JSContextRef ctx, JSValueRef a, JSValueRef b);
JSValueRef.cpp 157 bool JSValueIsStrictEqual(JSContextRef ctx, JSValueRef a, JSValueRef b)
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue_p.h 724 if (!JSValueIsStrictEqual(*m_engine, proto, *prototype))
803 return JSValueIsStrictEqual(*m_engine, *this, *other);
810 return JSValueIsStrictEqual(*m_engine, *this, *other);
817 return JSValueIsStrictEqual(*m_engine, *this, *other);
825 return JSValueIsStrictEqual(*m_engine, *this, *other);
    [all...]
qscriptoriginalglobalobject_p.h 204 bool result = JSValueIsInstanceOfConstructor(m_context, value, constructor, &exception) || JSValueIsStrictEqual(m_context, value, prototype);
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.c 252 if (argumentCount > 0 && JSValueIsStrictEqual(context, arguments[0], JSValueMakeNumber(context, 0)))
268 if (argumentCount > 0 && JSValueIsStrictEqual(context, arguments[0], JSValueMakeNumber(context, 0)))
800 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object2), object1));
806 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object2), object3));
808 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object1), object2));
810 result &= assertTrue(!JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object3), object1), "It is possible to close a prototype chain cycle");
    [all...]

Completed in 269 milliseconds