/external/icu4c/common/ |
D | icuplug.c | 260 static void uplug_callPlug(UPlugData *plug, UPlugReason reason, UErrorCode *status) { in uplug_callPlug() argument 262 if(plug==NULL||U_FAILURE(*status)) { in uplug_callPlug() 265 token = (*(plug->entrypoint))(plug, reason, status); in uplug_callPlug() 272 static void uplug_unloadPlug(UPlugData *plug, UErrorCode *status) { in uplug_unloadPlug() argument 273 if(plug->awaitingLoad) { /* shouldn't happen. Plugin hasn'tbeen loaded yet.*/ in uplug_unloadPlug() 277 if(U_SUCCESS(plug->pluginStatus)) { in uplug_unloadPlug() 279 uplug_callPlug(plug, UPLUG_REASON_UNLOAD, status); in uplug_unloadPlug() 283 static void uplug_queryPlug(UPlugData *plug, UErrorCode *status) { in uplug_queryPlug() argument 284 …if(!plug->awaitingLoad || !(plug->level == UPLUG_LEVEL_UNKNOWN) ) { /* shouldn't happen. Plugin h… in uplug_queryPlug() 288 plug->level = UPLUG_LEVEL_INVALID; in uplug_queryPlug() [all …]
|
/external/icu4c/common/unicode/ |
D | icuplug.h | 182 UPlugData *plug, 197 uplug_setPlugNoUnload(UPlugData *plug, UBool dontUnload); 206 uplug_setPlugLevel(UPlugData *plug, UPlugLevel level); 215 uplug_getPlugLevel(UPlugData *plug); 234 uplug_getPlugLoadStatus(UPlugData *plug); 243 uplug_setPlugName(UPlugData *plug, const char *name); 252 uplug_getPlugName(UPlugData *plug); 261 uplug_getSymbolName(UPlugData *plug); 271 uplug_getLibraryName(UPlugData *plug, UErrorCode *status); 281 uplug_getLibrary(UPlugData *plug); [all …]
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebPluginDatabase.mm | 125 …// Allow other plug-ins to win over QT because if the user has installed a plug-in that can handle… 126 // that the QT plug-in can handle, they probably intended to override QT. 158 … // If no plug-in was found from the extension, attempt to map from the extension to a MIME type 159 …// and find the a plug-in from the MIME type. This is done in case the plug-in has not fully speci… 236 // Create map from plug-in path to WebBasePluginPackage 240 // Find all plug-ins on disk 243 // Find plug-ins to remove from database (i.e., plug-ins that no longer exist on disk) 248 // Any plug-ins that were removed from disk since the last refresh should be removed from 254 // will be the set of new plug-ins that should be added to the database. 281 // Register plug-in views and representations. [all …]
|
D | WebNetscapePluginView.mm | 84 …ginsBool 74656 /* TRUE if the browser supports hardware compositing of Core Animation plug-ins */ 313 // "Clip-out" the plug-in when: 321 // The following code tries to give plug-ins the same size they will eventually have. 325 // The QuickTime plug-in has problems if you give it a width or height of 0. 326 // Since other plug-ins also might have the same sort of trouble, we make sure 327 // to always give plug-ins a size other than 0,0. 337 // Core Animation plug-ins need to be updated (with a 0,0,0,0 clipRect) when 338 // moved to a background tab. We don't do this for Core Graphics plug-ins as 440 … // Clip to dirty region so plug-in does not draw over already-drawn regions of the window that are 441 … // not going to be redrawn this update. This forces plug-ins to play nice with z-index ordering. [all …]
|
D | WebPluginController.mm | 201 LOG_ERROR("can't add a plug-in to a defunct WebPluginController"); 213 LOG(Plugins, "initializing plug-in %@", view); 226 LOG(Plugins, "starting plug-in %@", view); 327 LOG_ERROR("could not load URL %@ because plug-in has already been destroyed", request); 332 LOG_ERROR("could not load URL %@ because plug-in has already been stopped", request); 341 … LOG_ERROR("JavaScript requests can only be made on the frame that contains the plug-in"); 366 …LOG_ERROR("could not show status message (%@) because plug-in has already been destroyed", message… 415 // Cancel the load since this plug-in does its own loading.
|
D | npapi.mm | 40 // general plug-in to browser functions 70 // The plugin view is always the ndata of the instance. Sometimes, plug-ins will call an instance-s… 71 // with a NULL instance. To workaround this, call the last plug-in view that made a call to a plug-… 72 // Currently, the current plug-in view is only set before NPP_New in [WebNetscapePluginView start].
|
D | WebNetscapePluginPackage.mm | 219 // Single-file plug-in with resource fork 327 // The DjVu plug-in will crash copying the vtable if it's too big so we cap it to 328 // what the plug-in expects here. 503 …// Workaround for 3270576. The RealPlayer plug-in fails to load if its preference file is out of d… 663 // Unload when removed from final plug-in database 672 // Handle the case where all instances close a plug-in package, but another 674 // the plug-in database is refreshed) 678 // Should load when the first instance opens the plug-in package 741 // Cannot unload a plug-in package while an instance is still using it
|
D | WebBaseNetscapePluginView.mm | 145 …// Enable "kiosk mode" when instantiating the QT plug-in inside of Dashboard. See <rdar://problem/… 538 …// FIXME 7417484: This is a workaround for plug-ins not drawing immediately. We'd like to detect w… 539 …// plug-in actually draws instead of just assuming it will do so within 0.5 seconds of being resta… 597 …// Stop the plug-in when it is removed from its superview. It is not sufficient to do this in -vi… 598 …// the WebView might still has a hostWindow at that point, which prevents the plug-in from being d… 599 …// There is no need to start the plug-in when moving into a superview. -viewDidMoveToWindow takes… 625 …// Starting the plug-in can result in it removing itself from the window so we need to ensure that… 633 // Call setWindow to explicitly "clip out" the plug-in from sight. 809 // mouseDown and mouseUp so plug-ins get the right-click event as they do in Carbon (3125743).
|
D | WebNetscapePluginEventHandlerCarbon.mm | 34 // Send null events 50 times a second when active, so plug-ins like Flash get high frame rates. 240 …// Only send keyUp events after we receive the TSM callback because this is what plug-in expect fr… 339 // We originally thought that if the plug-in didn't accept this event, 341 … // In practice, this is not a good idea, because plug-ins tend to eat the event but return false.
|
/external/icu4c/tools/icuinfo/ |
D | icuinfo.cpp | 180 UPlugData *plug; in cmd_listplugins() local 199 for(i=0;(plug=uplug_getPlugInternal(i))!=NULL;i++) { in cmd_listplugins() 201 const char *name = uplug_getPlugName(plug); in cmd_listplugins() 202 const char *sym = uplug_getSymbolName(plug); in cmd_listplugins() 203 const char *lib = uplug_getLibraryName(plug, &libStatus); in cmd_listplugins() 204 const char *config = uplug_getConfiguration(plug); in cmd_listplugins() 205 UErrorCode loadStatus = uplug_getPlugLoadStatus(plug); in cmd_listplugins() 210 udbg_enumName(UDBG_UPlugLevel,(int32_t)uplug_getPlugLevel(plug)), in cmd_listplugins()
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
D | NetscapePluginHostManager.mm | 137 // The plug-in vendor port has gone away for some reason. Try to reinitialize it. 142 // And spawn the plug-in host again. 147 // FIXME: Check for invalid dest and try to re-spawn the plug-in agent. 148 LOG_ERROR("Failed to spawn plug-in host, error %x", kr); 152 NSString *visibleName = [NSString stringWithFormat:UI_STRING("%@ (%@ Internet plug-in)", 153 … "visible name of the plug-in host process. The first argument is the plug-in name " 175 LOG_ERROR("Failed to check in with plug-in host, error %x", kr); 187 // Get the plug-in agent port. 190 LOG_ERROR("Failed to look up the plug-in agent port"); 196 // Tell the plug-in agent that we exist. [all …]
|
D | NetscapePluginInstanceProxy.mm | 128 // For full frame plug-ins, the first requestID will always be the one for the already 133 // Assign a plug-in ID. 186 …// Clear the object map, this will cause any outstanding JS objects that the plug-in had a referen… 207 // If the plug-in host has died, the proxy will be null. 227 …// If the plug-in host crashes while we're waiting for a reply, the last reference to the instance… 231 …// We don't care about the reply here - we just want to block until the plug-in instance has been … 539 // Check if another plug-in view or even this view is waiting for the frame to load. 573 // Don't continue if stringByEvaluatingJavaScriptFromString caused the plug-in to stop. 652 // want to potentially kill the plug-in inside of its URL request. 655 … // For security reasons, only allow JS requests to be made on the frame that contains the plug-in. [all …]
|
/external/webkit/WebKit/mac/ |
D | ChangeLog | 69 A stray mouse moved event is sent to plug-ins after mouse exit 73 mouse moved event to plug-ins at this point. 91 Assertion crashes and freezes when plug-in property access results in an exception 94 A plug-in can call back whil processing this call (e.g. for NPN_SetException), so we need 132 Route exception string to a global that's checked after calling into plug-in (just like in 143 …nView updateAndSetWindow]): When clipping out NPDrawingModelCoreAnimation plug-ins, provide a zero… 149 …etNewPortStateForUpdate:]): When clipping out NPDrawingModelCoreAnimation plug-ins, provide a zero…
|
D | ChangeLog-2010-01-29 | 173 to willCallPluginFunction/didCallPluginFunction. This prevents the plug-in 177 instance proxy in case the plug-in host crashes while waiting for reply. 341 …rlight. For now, we'll distinguish older broken versions of Silverlight by asking the plug-in if it 352 Explicitly track when the plug-in shows and hides a full-screen window to determine 353 whether a plug-in is currently full-screen, rather than relying on menu bar visibility. 354 This ensures that we activate the plug-in host process and client application as 355 appropriate when the plug-in enters or exits full-screen. 434 …d pass acceleratedCompositingEnabled bool to NetscapePluginHostManager when instantiating plug-ins) 447 …<rdar://problem/6398111> Integrate hardware layers with out-of-process plug-ins layer hosting mech… 457 …<rdar://problem/6398111> Integrate hardware layers with out-of-process plug-ins layer hosting mech… [all …]
|
D | ChangeLog-2007-10-14 | 992 … Return ObjectContentNetscapePlugin and ObjectContentOtherPlugin depending on the plug-in type. 1408 … #ifdef'd out Netscape style plug-ins on 64-bit because Mac OS X doesn't support 64-bit Carbon UI. 1533 ifdef, since all non-CFM plug-ins are bundles. 1536 non-bundle and bundle-based CFM plug-ins, and code that sets isBundle and isCFM. 1783 … <rdar://problem/4699455> REGRESSION (Safari 2->Safari 3): Adobe Reader 7.0.8 plug-in doesn't work 1786 …This is necessary because the Adobe 7.x Acrobat plug-in has a hard coded check for a view named "W… 1982 … <rdar://problem/5341133> REGRESSION (Safari 2->Safari 3): DjVu plug-in doesn't load in Safari 3 1984 …The DjVu plug-in uses the size of the passed in NPNetscapeFuncs struct to copy it over to a NPNets… 1988 …Fix this by special-casing the DjVu plug-in and setting the NPNetscapeFuncs size to be the same si… 2336 the stream is a "fake" stream for full frame plug-ins. [all …]
|
D | ChangeLog-2006-02-09 | 2442 <rdar://problem/4340787> Safari & Dashcode create 2 instances of the QC plug-in 2533 <rdar://problem/4237941> Dashboard needs a way to stop Netscape plug-ins from getting null events 4094 …work around, we modify the CGrafPort to only cover the content area before we let the plug-in draw. 4702 - fixed <rdar://problem/4132797> don't register thin PPC WebKit plug-ins 4709 calls isNativeLibraryData to determine whether or not to register the plug-in. 4839 … - improve handling of plug-ins when the WebView or a superview is hidden with -[NSView setHidden] 4842 Add "hidden" to the list of reasons to clip out all plug-in drawing. 6412 …<rdar://problem/4051145> The QuickTime Cocoa plug-in needs an SPI that it can call to check for UR… 6440 …heckIfAllowedToLoadRequest:inFrame:resultObject:selector:]): Implement this new plug-in SPI method. 6447 …yForNavigationAction:request:frame:decisionListener:]): Don't open externally on a plug-in request. [all …]
|
/external/webkit/WebKitExamplePlugins/ |
D | ChangeLog | 17 Add Core Animation movie plug-in example. 86 Update the example plug-in for new changes to the Cocoa event model. 142 Add a sample Core Animation NPAPI plug-in. 213 Add input method test plug-in.
|
/external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/ |
D | PHP SmartyPants Readme.txt | 19 PHP SmartyPants is a free web publishing plug-in for WordPress and 113 1. Rename the "SmartyPants.pl" plug-in to "SmartyPants" (case is 114 important). Movable Type requires plug-ins to have a ".pl" 117 2. Copy the "SmartyPants" plug-in file to your Blosxom plug-ins folder. 118 If you're not sure where your Blosxom plug-ins folder is, see the 125 "SmartyPants" plug-in, and edit the value of the `$smartypants_attr`
|
/external/bluetooth/bluez/audio/ |
D | bluetooth.conf | 29 type plug
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebResourceLoadDelegate.idl | 170 … @discussion Called when a plug-in is not found, fails to load or is not available for some reason. 172 @param error The plug-in error. In the userInfo dictionary of the error, the object for the 174 …key is a string of the plug-in's name, the object for the WebKitErrorPlugInPageURLStringKey key is… 178 @param dataSource The dataSource that contains the plug-in.
|
/external/webkit/WebKit/English.lproj/ |
D | Localizable.strings | 16 /* visible name of the plug-in host process. The first argument is the plug-in name and the second … 17 "%@ (%@ Internet plug-in)" = "%@ (%@ Internet plug-in)"; 377 "The plug-in can’t be found" = "The plug-in can’t be found"; 380 "The plug-in can’t be loaded" = "The plug-in can’t be loaded";
|
/external/webkit/WebKit/mac/Misc/ |
D | WebKitErrors.m | 50 #define WebKitErrorDescriptionCannotFindPlugin UI_STRING("The plug-in can’t be found", "WebKitError… 51 #define WebKitErrorDescriptionCannotLoadPlugin UI_STRING("The plug-in can’t be loaded", "WebKitErro…
|
/external/proguard/examples/ |
D | proguard.pro | 53 # If you want to preserve the WTK obfuscation plug-in, you'll have to specify
|
/external/libxml2/include/libxml/ |
D | xmlschemas.h | 212 xmlSchemaSAXUnplug (xmlSchemaSAXPlugPtr plug);
|
/external/bluetooth/glib/debian/ |
D | control | 38 the GTK+ widget toolkit, or wish to develop plug-ins for The GIMP.
|