HomeSort by relevance Sort by last modified time
    Searched refs:Plugin (Results 1 - 25 of 353) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
auth_handler.py 26 from boto.plugin import Plugin
33 class AuthHandler(Plugin):
plugin.py 24 Implements plugin related api.
26 To define a new plugin just subclass Plugin, like this.
28 class AuthPlugin(Plugin):
31 Then start creating subclasses of your new plugin.
44 class Plugin(object):
51 """Returns true if the requested capability is supported by this plugin
89 if not config.has_option('Plugin', 'plugin_directory'):
91 directory = config.get('Plugin', 'plugin_directory')
  /frameworks/base/core/java/android/webkit/
PluginList.java 34 private ArrayList<Plugin> mPlugins;
45 mPlugins = new ArrayList<Plugin>();
61 * Adds a plugin to the list.
68 public synchronized void addPlugin(Plugin plugin) {
69 if (!mPlugins.contains(plugin)) {
70 mPlugins.add(plugin);
75 * Removes a plugin from the list.
82 public synchronized void removePlugin(Plugin plugin) {
111 Plugin plugin = mPlugins.get(position); local
    [all...]
Plugin.java 26 * Represents a plugin (Java equivalent of the PluginPackageAndroid
34 public class Plugin {
61 public Plugin(String name,
173 * Invokes the click handler for this plugin.
200 // string of the plugin.
  /external/parameter-framework/upstream/test/introspection-subsystem/
IntrospectionSubsystemBuilder.cpp 30 #include <Plugin.h>
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
PolicySubsystemBuilder.cpp 17 #include <Plugin.h>
  /external/pdfium/third_party/lcms2-2.6/src/
cmserr.c 77 cmsBool _cmsRegisterMemHandlerPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
194 // Auxiliar to fill memory management functions from plugin (or context 0 defaults)
195 void _cmsInstallAllocFunctions(cmsPluginMemHandler* Plugin, _cmsMemPluginChunkType* ptr)
197 if (Plugin == NULL) {
203 ptr ->MallocPtr = Plugin -> MallocPtr;
204 ptr ->FreePtr = Plugin -> FreePtr;
205 ptr ->ReallocPtr = Plugin -> ReallocPtr;
212 if (Plugin ->MallocZeroPtr != NULL) ptr ->MallocZeroPtr = Plugin -> MallocZeroPtr;
213 if (Plugin ->CallocPtr != NULL) ptr ->CallocPtr = Plugin -> CallocPtr
    [all...]
cmsplugin.c 516 // Plugin memory management -------------------------------------------------------------------------------------------------
547 cmsPluginBase* Plugin;
549 for (Plugin = (cmsPluginBase*) Plug_in;
550 Plugin != NULL;
551 Plugin = Plugin -> Next) {
553 if (Plugin -> Magic != cmsPluginMagicNumber) {
554 cmsSignalError(id, cmsERROR_UNKNOWN_EXTENSION, "Unrecognized plugin");
558 if (Plugin ->ExpectedVersion > LCMS_VERSION) {
559 cmsSignalError(id, cmsERROR_UNKNOWN_EXTENSION, "plugin needs Little CMS %d, current version is %d"
    [all...]
lcms2_internal.h 329 cmsBool _cmsRegisterMemHandlerPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
332 cmsBool _cmsRegisterInterpPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
335 cmsBool _cmsRegisterParametricCurvesPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
338 cmsBool _cmsRegisterFormattersPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
341 cmsBool _cmsRegisterTagTypePlugin(cmsContext ContextID, cmsPluginBase* Plugin);
344 cmsBool _cmsRegisterTagPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
347 cmsBool _cmsRegisterRenderingIntentPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
350 cmsBool _cmsRegisterMultiProcessElementPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
353 cmsBool _cmsRegisterOptimizationPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
356 cmsBool _cmsRegisterTransformPlugin(cmsContext ContextID, cmsPluginBase* Plugin);
    [all...]
cmsxform.c 525 cmsPluginTransform* Plugin = (cmsPluginTransform*) Data;
537 if (Plugin ->Factory == NULL) return FALSE;
544 fl ->Factory = Plugin ->Factory;
592 _cmsTransformCollection* Plugin;
602 for (Plugin = ctx ->TransformCollection;
603 Plugin != NULL;
604 Plugin = Plugin ->Next) {
606 if (Plugin ->Factory(&p->xform, &p->UserData, &p ->FreeUserData, &p ->Lut, InputFormat, OutputFormat, dwFlags)) {
608 // Last plugin in the declaration order takes control. We just kee
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
UiPlugin.java 13 import org.eclipse.core.runtime.Plugin;
20 * The main plugin class to be used in the desktop.
22 public class UiPlugin extends Plugin {
24 private static UiPlugin plugin; field in class:UiPlugin
32 if (plugin == null) {
33 plugin = this;
49 plugin = null;
56 return plugin;
  /external/parameter-framework/upstream/test/functional-tests/include/
Config.hpp 67 struct Plugin
71 /** Each plugin has a location and a path.
75 using Plugins = Plugin::Collection;
ConfigFiles.hpp 61 std::string toXml(const Config::Plugin::Collection &plugins)
69 pluginsLocationXml += "<Plugin Name='" + path + "'/>\n";
  /frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
MavenDependencyCollectorPlugin.groovy 19 import org.gradle.api.Plugin
22 public class MavenDependencyCollectorPlugin implements Plugin<Project> {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java 18 import org.eclipse.core.runtime.Plugin;
28 * Class for collecting all test cases in an eclipse plugin
41 * Searches through given plugin, adding all TestCase classes to given suite
43 * @param plugin - Plugin to search for tests
48 public void addTestCases(TestSuite suite, Plugin plugin, String expectedPackage) {
49 if (plugin != null) {
50 Enumeration<?> entries = plugin.getBundle().findEntries("/", "*.class", true);
106 * Load the class given by the plugin aka bundle file pat
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
plugin.h 0 // plugin.h -- plugin manager for gold -*- C++ -*-
30 #include "plugin-api.h"
51 // This class represents a single plugin library.
53 class Plugin
56 Plugin(const char* filename)
66 ~Plugin()
108 Plugin(const Plugin&);
109 Plugin& operator=(const Plugin&)
    [all...]
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenPlugin.groovy 18 import org.gradle.api.Plugin
22 * Plugin to expose build rules for sample generation and packaging.
24 class SampleGenPlugin implements Plugin {
  /prebuilts/gradle-plugin/com/android/tools/internal/build/test/devicepool/0.1/
devicepool-0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/gradle/osdetector-gradle-plugin/1.4.0/
osdetector-gradle-plugin-1.4.0.jar 
  /system/core/metricsd/uploader/proto/
system_profile.proto 428 message Plugin {
429 // The plugin's self-reported name and filename (without path).
433 // The plugin's version.
436 // True if the plugin is disabled.
441 // True if the plugin is PPAPI.
444 repeated Plugin plugin = 7;
534 // The relevant plugin's information (name, etc.)
535 optional Plugin plugin = 1
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar 
  /prebuilts/tools/common/m2/repository/com/google/gradle/osdetector-gradle-plugin/1.2.1/
osdetector-gradle-plugin-1.2.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.0.9/
maven-plugin-registry-2.0.9.jar 

Completed in 621 milliseconds

1 2 3 4 5 6 7 8 91011>>