Searched refs:targetObject (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/bridge/objc/
H A Dobjc_runtime.mm93 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
98 if (id objcValue = [targetObject valueForKey:(NSString *)_name.get()])
124 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
130 [targetObject setValue:value forKey:(NSString *)_name.get()];
245 id targetObject = objcInstance->getObject();
247 if ([targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)]){
263 id targetObject = thisObject->_instance->getObject();
264 if (![targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)])
283 id targetObject = _instance->getObject();
285 if ([targetObject respondsToSelecto
[all...]
H A Dobjc_class.mm163 id targetObject = (static_cast<ObjcInstance*>(instance))->getObject();
164 id attributes = [targetObject attributeKeys];
234 id targetObject = objcInstance->getObject();
236 if (![targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)])
H A Dobjc_instance.mm410 id targetObject = getObject();
411 if (![targetObject respondsToSelector:@selector(setValue:forUndefinedKey:)])
419 if ([targetObject respondsToSelector:@selector(setValue:forUndefinedKey:)]){
425 [targetObject setValue:objcValue.objectValue forUndefinedKey:[NSString stringWithCString:name.ascii().data() encoding:NSASCIIStringEncoding]];
444 id targetObject = getObject();
451 if ([targetObject respondsToSelector:@selector(valueForUndefinedKey:)]){
455 id objcValue = [targetObject valueForUndefinedKey:[NSString stringWithCString:name.ascii().data() encoding:NSASCIIStringEncoding]];
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFireWireUserClient.cpp628 IOService *targetObject; local
634 targetObject = fObjectTable[ getSelectorObjectLookupIndex(actualSelector)] ;
636 if ( !targetObject )
640 targetObject = (IOService*)userObject ; // "interesting code" note:
646 if (targetObject)
648 (targetObject)->release() ; // exporter retains returned objects, we have to release it here..
659 result = ((IOFireWireUserClient*) targetObject)->userOpen();
663 result = ((IOFireWireUserClient*) targetObject)->userOpenWithSessionRef((IOFireWireLib::UserObjectHandle) arguments->scalarInput[0]);
667 result = ((IOFireWireUserClient*) targetObject)->userClose();
671 result = ((IOFireWireUserClient*) targetObject)
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DFunctionPrototype.cpp186 JSObject* targetObject = asObject(target); local
200 if (targetObject->inherits(&JSFunction::s_info)) {
210 return JSValue::encode(JSBoundFunction::create(exec, globalObject, targetObject, exec->argument(0), boundArgs, length, name->value(exec)));
/macosx-10.9.5/WebCore-7537.78.1/bridge/qt/
H A Dqt_runtime.cpp1352 JSObjectRef targetObject = 0; local
1366 targetObject = toRef(QtInstance::getQtInstance(targetMethod->m_object.data(), d->m_instance->rootObject(), QtInstance::QtOwnership)->createRuntimeObject(toJS(context)));
1371 targetObject = JSValueToObject(context, arguments[0], exception);
1382 JSValueRef functionProperty = JSObjectGetProperty(context, targetObject, functionName.get(), &conversionException);
1410 QtConnectionObject* conn = new QtConnectionObject(context, QtInstance::getQtInstance(sender, d->m_instance->rootObject(), QtInstance::QtOwnership), signalIndex, targetObject, targetFunction);
1432 if (!conn->match(context, sender, signalIndex, targetObject, targetFunction))

Completed in 71 milliseconds