Lines Matching refs:callBacks
150 JSObjectRef JSObjectCreate(void *data, JSObjectCallBacksPtr callBacks) in JSObjectCreate() argument
152 JSObjectRef result = JSObjectCreateInternal(data, callBacks, 0, kJSUserObjectDataTypeUnknown); in JSObjectCreate()
159 JSObjectRef JSObjectCreateInternal(void *data, JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr … in JSObjectCreateInternal() argument
162 JSUserObject* ptr = new JSUserObject(callBacks, markProc, data, type); in JSObjectCreateInternal()
386 JSObjectCallBacks callBacks; in JSObjectCreateWithCFType() local
390 callBacks.dispose = CFJSObjectDispose; in JSObjectCreateWithCFType()
391 callBacks.equal = CFJSObjectEqual; in JSObjectCreateWithCFType()
392 callBacks.copyCFValue = CFJSObjectCopyCFValue; in JSObjectCreateWithCFType()
393 callBacks.copyProperty = CFJSObjectCopyProperty; in JSObjectCreateWithCFType()
394 callBacks.setProperty = CFJSObjectSetProperty; in JSObjectCreateWithCFType()
395 callBacks.callFunction = 0; in JSObjectCreateWithCFType()
396 callBacks.copyPropertyNames = CFJSObjectCopyPropertyNames; in JSObjectCreateWithCFType()
397 …cfJSObject = JSObjectCreateInternal((void*)CFRetain(inRef), &callBacks, 0, kJSUserObjectDataTypeCF… in JSObjectCreateWithCFType()