Searched refs:wrapper (Results 1 - 25 of 351) sorted by last modified time

1234567891011>>

/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSKext.cpp91 static void * _OSKextExtractPointer(OSData * wrapper);
442 /* Create an OSData wrapper for the allocated buffer.
449 "Can't allocate linked executable wrapper for %s.",
1399 /* Create an OSData wrapper around the linked executable.
1472 "Kext %s failed to create executable wrapper.",
1659 "Failed to create wrapper for device tree entry %s kext path %s.",
1690 "Failed to create executable wrapper for device tree entry %s.",
2605 "Can't create wrapper for mkext file entry '%s' of kext %s.",
2918 "Failed to create wrapper for kext load request.");
8780 static void * _OSKextExtractPointer(OSData * wrapper) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/projects/sample/autoconf/
H A Dltmain.sh1655 # The PATH hackery in wrapper scripts is required on Windows
4789 # We don't need to create a wrapper script.
4832 # Now create the wrapper script.
4888 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
4894 This wrapper executable should never be moved out of the build directory.
4897 Currently, it simply execs the wrapper *script* "/bin/sh $output",
4968 char * find_executable(const char *wrapper);
5085 /* Searches for the full path of the wrapper. Returns
5088 find_executable (const char* wrapper)
5098 DEBUG("(find_executable) : %s\n", wrapper
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDMain.cpp237 struct ByteReaderWrapper *wrapper = (struct ByteReaderWrapper *)arg; local
238 return wrapper->byteBlock(byte, address);
246 struct ByteReaderWrapper wrapper; local
247 wrapper.byteBlock = byteBlock;
250 address, (void*)&wrapper);
H A DEDOperand.cpp306 RegisterReaderWrapper *wrapper = (RegisterReaderWrapper *)arg; local
307 return wrapper->regBlock(value, regID);
311 RegisterReaderWrapper wrapper; local
312 wrapper.regBlock = regBlock;
313 return evaluate(result, readerWrapperCallback, (void*)&wrapper);
/macosx-10.10/llvmCore-3425.0.34/autoconf/
H A Dltmain.sh1655 # The PATH hackery in wrapper scripts is required on Windows
4789 # We don't need to create a wrapper script.
4832 # Now create the wrapper script.
4888 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
4894 This wrapper executable should never be moved out of the build directory.
4897 Currently, it simply execs the wrapper *script* "/bin/sh $output",
4968 char * find_executable(const char *wrapper);
5085 /* Searches for the full path of the wrapper. Returns
5088 find_executable (const char* wrapper)
5098 DEBUG("(find_executable) : %s\n", wrapper
[all...]
/macosx-10.10/Chess-310.6/Sources/
H A DMBCInteractivePlayer.mm462 - (void) speakMove:(MBCMove *) move withWrapper:(NSString *)wrapper
467 [NSString stringWithFormat:wrapper, text];
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/mac/
H A DWKView.mm3313 RetainPtr<NSFileWrapper> wrapper;
3318 wrapper = adoptNS([[NSFileWrapper alloc] initRegularFileWithContents:data.get()]);
3319 [wrapper setPreferredFilename:_data->_promisedFilename];
3322 if (!wrapper) {
3328 NSString *path = [[dropDestination path] stringByAppendingPathComponent:[wrapper preferredFilename]];
3330 if (![wrapper writeToURL:[NSURL fileURLWithPath:path] options:NSFileWrapperWritingWithNameUpdating originalContentsURL:nil error:nullptr])
/macosx-10.10/WebKit2-7600.1.25/UIProcess/mac/
H A DPageClientImpl.mm315 ASSERT([download->wrapper() isKindOfClass:[_WKDownload class]]);
316 [static_cast<_WKDownload *>(download->wrapper()) setOriginatingWebView:m_webView];
H A DWebContextMenuProxyMac.mm329 WKSelectionHandlerWrapper *wrapper = [[WKSelectionHandlerWrapper alloc] initWithSelectionHandler:selectionHandler];
330 [menuItem setRepresentedObject:wrapper];
331 [wrapper release];
333 WKUserDataWrapper *wrapper = [[WKUserDataWrapper alloc] initWithUserData:items[i].userData()];
334 [menuItem setRepresentedObject:wrapper];
335 [wrapper release];
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DPageClientImplIOS.mm244 ASSERT([download->wrapper() isKindOfClass:[_WKDownload class]]);
245 [static_cast<_WKDownload *>(download->wrapper()) setOriginatingWebView:m_webView];
H A DWKContentView.mm478 [[wrapper(_page->process().context()) _geolocationProvider] decidePolicyForGeolocationRequestFromOrigin:toAPI(&origin) frame:toAPI(&frame) request:toAPI(&permissionRequest) window:[self window]];
/macosx-10.10/Security-57031.1.35/Security/sec/ipc/
H A Dsecurityd_client.h77 #define SECURITYD_XPC(sdp, wrapper, ...) ((gSecurityd && gSecurityd->sdp) ? gSecurityd->sdp(__VA_ARGS__) : wrapper(sdp ## _id, __VA_ARGS__))
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLogContentView.js369 var wrapper = event.target.enclosingNodeOrSelfWithClass(WebInspector.LogContentView.ItemWrapperStyleClassName); variable
371 if (!wrapper) {
372 // No wrapper under the mouse, so look at the selection to try and find one.
374 wrapper = selection.focusNode.parentNode.enclosingNodeOrSelfWithClass(WebInspector.LogContentView.ItemWrapperStyleClassName);
378 if (!wrapper)
385 if (wrapper === this._mouseDownWrapper && !this._mouseMoveIsRowSelection)
392 this._updateMessagesSelection(wrapper.messageElement, false, true);
406 var wrapper = event.target.enclosingNodeOrSelfWithClass(WebInspector.LogContentView.ItemWrapperStyleClassName); variable
408 if (wrapper && (selection.isCollapsed || event.shiftKey)) {
411 var message = wrapper
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.cpp280 inline AVCFPlayerLayerRef videoLayer(AVFWrapper* wrapper) argument
282 return wrapper ? wrapper->videoLayer() : 0;
285 inline AVCFPlayerRef avPlayer(AVFWrapper* wrapper) argument
287 return wrapper ? wrapper->avPlayer() : 0;
290 inline AVCFURLAssetRef avAsset(AVFWrapper* wrapper) argument
292 return wrapper ? wrapper->avAsset() : 0;
295 inline AVCFPlayerItemRef avPlayerItem(AVFWrapper* wrapper) argument
300 imageGenerator(AVFWrapper* wrapper) argument
306 avLegibleOutput(AVFWrapper* wrapper) argument
311 safeMediaSelectionGroupForLegibleMedia(AVFWrapper* wrapper) argument
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DImageUtilities.js759 var wrapper = document.createElement("div");
761 wrapper.className = className;
763 wrapper.title = title;
764 wrapper.appendChild(svgDocument);
766 callback(wrapper);
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityObject.cpp114 return !wrapper();
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOM.mm332 // FIXME: Create an XPath objective C wrapper
812 if (DOMNodeFilter *wrapper = getDOMWrapper(impl))
813 return [[wrapper retain] autorelease];
815 DOMNodeFilter *wrapper = [[DOMNodeFilter alloc] _init];
816 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(impl);
818 addDOMWrapper(wrapper, impl);
819 return [wrapper autorelease];
822 WebCore::NodeFilter* core(DOMNodeFilter *wrapper)
824 return wrapper ? reinterpret_cast<WebCore::NodeFilter*>(wrapper
[all...]
/macosx-10.10/curl-83.1.2/curl/
H A Dltmain.sh1262 # True iff FILE is a libtool wrapper script
1271 # True iff FILE is a libtool wrapper executable
1296 # True iff FILE is a libtool wrapper script or wrapper executable
2589 # This variable tells wrapper scripts just to set shlibpath_var
2593 # Check if any of the arguments is a wrapper script.
2909 # This variable tells wrapper scripts just to set variables rather
3104 wrapper=$func_ltwrapper_scriptname_result
3107 wrapper=$func_stripname_result
3111 wrapper
[all...]
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dsetup_gnv_curl_build.com67 $! Set the compiler options for GNV CC wrapper to inherit.
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKWebView.mm374 return wrapper(_page->backForwardList());
1678 return [wrapper(*WebKit::encodeLegacySessionState(sessionState).release().leakRef()) autorelease];
1775 completionHandlerBlock(wrapper(*data), nil);
1790 completionHandlerBlock(wrapper(*data), nil);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DNavigationState.mm219 [historyDelegate _webView:m_webView didNavigateWithNavigationData:wrapper(*API::NavigationData::create(navigationDataStore))];
279 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate) _webViewWillEndNavigationGesture:m_webView withNavigationToBackForwardListItem:willNavigate ? wrapper(item) : nil];
291 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate) _webViewDidEndNavigationGesture:m_webView withNavigationToBackForwardListItem:willNavigate ? wrapper(item) : nil];
303 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate) _webView:m_webView willSnapshotBackForwardListItem:wrapper(item)];
317 RetainPtr<NSURLRequest> nsURLRequest = adoptNS(wrapper(*API::URLRequest::create(request).leakRef()));
501 auto recoveryAttempter = adoptNS([[WKReloadFrameErrorRecoveryAttempter alloc] initWithWebView:webView frameHandle:wrapper(*frameHandle) urlString:originalError.userInfo[NSURLErrorFailingURLStringErrorKey]]);
703 return [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate.get()) _webView:m_navigationState.m_webView canAuthenticateAgainstProtectionSpace:wrapper(*protectionSpace)];
719 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate.get()) webView:m_navigationState.m_webView didReceiveAuthenticationChallenge:wrapper(*authenticationChallenge)
761 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate.get()) _webView:m_navigationState.m_webView didReceiveAuthenticationChallenge:wrapper(*authenticationChallenge)];
H A DSessionStateCoding.mm37 return [wrapper(*WebKit::encodeLegacySessionState(sessionState).release().leakRef()) autorelease];
/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSWrapperMap.mm530 // get GC'ed while we create the wrapper below.
533 JSObjectRef wrapper = makeWrapper([m_context JSGlobalContextRef], m_classRef, object);
534 JSObjectSetPrototype([m_context JSGlobalContextRef], wrapper, toRef(prototype));
535 return [JSValue valueWithJSValueRef:wrapper inContext:m_context];
602 JSValue *wrapper;
604 wrapper = [[self classInfoForClass:(Class)object] constructor];
607 wrapper = [classInfo wrapperForObject:object];
611 // This general approach to wrapper caching is pretty effective, but there are a couple of problems:
616 jsWrapper = toJS(exec, valueInternalValue(wrapper)).toObject(exec);
618 return wrapper;
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSDOMWindowBase.cpp281 JSC::JSObject* wrapper = result->value.get(); local
282 if (!wrapper)
284 JSDOMWindowBase* jsWindow = JSC::jsCast<JSDOMWindowBase*>(wrapper);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebFrame.mm930 // FIXME: Someone with access to Apple's sources could remove this needless wrapper call.
2257 return rootObject->firstChild()->wrapper();
2259 return rootObject->wrapper();

Completed in 332 milliseconds

1234567891011>>