Searched refs:JSObjectGetPropertyAtIndex (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSObjectRef.h564 @discussion Calling JSObjectGetPropertyAtIndex is equivalent to calling JSObjectGetProperty with a string containing propertyIndex, but JSObjectGetPropertyAtIndex provides optimized access to numeric properties.
566 JS_EXPORT JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception);
H A DJSValue.mm301 JSValueRef result = JSObjectGetPropertyAtIndex([_context JSGlobalContextRef], object, (unsigned)index, &exception);
707 id objc = convertor.convert(JSObjectGetPropertyAtIndex(context, js, i, 0));
H A DJSObjectRef.cpp378 JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception) function
/macosx-10.10/JavaScriptCore-7600.1.17/API/tests/
H A Dtestapi.c1501 JSObjectGetPropertyAtIndex(context, myObject, 0, &exception);
1620 ASSERT(JSValueIsUndefined(context, JSObjectGetPropertyAtIndex(context, o, 0, &exception)));
1627 ASSERT(1 == JSValueToNumber(context, JSObjectGetPropertyAtIndex(context, o, 0, &exception), &exception));
1748 v = JSObjectGetPropertyAtIndex(context, o, 0, NULL);
1750 v = JSObjectGetPropertyAtIndex(context, o, 1, NULL);

Completed in 159 milliseconds