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

  /external/webkit/JavaScriptCore/API/
JSContextRef.cpp 63 JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass)
75 return JSGlobalContextCreateInGroup(toRef(&JSGlobalData::sharedInstance()), globalObjectClass);
79 return JSGlobalContextCreateInGroup(0, globalObjectClass);
82 JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass)
95 if (!globalObjectClass) {
100 JSGlobalObject* globalObject = new (globalData.get()) JSCallbackObject<JSGlobalObject>(globalObjectClass);
102 JSValue prototype = globalObjectClass->prototype(exec);
JSContextRef.h 77 @param globalObjectClass The class to use when creating the global object. Pass
79 @result A JSGlobalContext with a global object of class globalObjectClass.
81 JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
88 @param globalObjectClass The class to use when creating the global object. Pass
92 @result A JSGlobalContext with a global object of class globalObjectClass and a context
95 JS_EXPORT JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  /external/webkit/JavaScriptCore/API/tests/
testapi.c 785 JSClassRef globalObjectClass = JSClassCreate(&globalObjectClassDefinition);
786 context = JSGlobalContextCreateInGroup(NULL, globalObjectClass);
    [all...]
  /external/webkit/JavaScriptGlue/
ChangeLog     [all...]
  /external/webkit/JavaScriptCore/
ChangeLog-2007-10-14 724 <rdar://problem/4949002> JSGlobalContextCreate can cause crashes because it passes a NULL JSContextRef to the globalObjectClass's initialize callback
    [all...]

Completed in 1008 milliseconds