HomeSort by relevance Sort by last modified time
    Searched refs:Plugin (Results 26 - 50 of 455) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
GlobalActions.java 23 public interface GlobalActions extends Plugin {
PluginFragment.java 22 public abstract class PluginFragment extends Fragment implements Plugin {
VolumeDialog.java 27 public interface VolumeDialog extends Plugin {
NotificationListenerController.java 27 public interface NotificationListenerController extends Plugin {
  /external/pdfium/third_party/lcms2-2.6/src/
cmsplugin.c 520 // Plugin memory management -------------------------------------------------------------------------------------------------
551 cmsPluginBase* Plugin;
553 for (Plugin = (cmsPluginBase*) Plug_in;
554 Plugin != NULL;
555 Plugin = Plugin -> Next) {
557 if (Plugin -> Magic != cmsPluginMagicNumber) {
558 cmsSignalError(id, cmsERROR_UNKNOWN_EXTENSION, "Unrecognized plugin");
562 if (Plugin ->ExpectedVersion > LCMS_VERSION) {
563 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...]
  /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...]
  /prebuilts/go/darwin-x86/src/plugin/
plugin.go 5 // Package plugin implements loading and symbol resolution of Go plugins.
9 // A plugin is a Go main package with exported functions and variables that
12 // go build -buildmode=plugin
14 // When a plugin is first opened, the init functions of all packages not
16 // A plugin is only initialized once, and cannot be closed.
17 package plugin package
19 // Plugin is a loaded Go plugin.
20 type Plugin struct {
26 // Open opens a Go plugin
    [all...]
plugin_dlopen.go 7 package plugin package
42 func open(name string) (*Plugin, error) {
49 return nil, errors.New("plugin.Open(" + name + "): realpath failed")
64 return nil, errors.New("plugin.Open: " + C.GoString(cErr))
66 // TODO(crawshaw): look for plugin note, confirm it is a Go plugin
75 return nil, errors.New("plugin.Open: plugin was built with a different version of package " + mismatchpkg)
78 plugins = make(map[string]*Plugin)
80 // This function can be called from the init function of a plugin
    [all...]
  /prebuilts/go/linux-x86/src/plugin/
plugin.go 5 // Package plugin implements loading and symbol resolution of Go plugins.
9 // A plugin is a Go main package with exported functions and variables that
12 // go build -buildmode=plugin
14 // When a plugin is first opened, the init functions of all packages not
16 // A plugin is only initialized once, and cannot be closed.
17 package plugin package
19 // Plugin is a loaded Go plugin.
20 type Plugin struct {
26 // Open opens a Go plugin
    [all...]
plugin_dlopen.go 7 package plugin package
42 func open(name string) (*Plugin, error) {
49 return nil, errors.New("plugin.Open(" + name + "): realpath failed")
64 return nil, errors.New("plugin.Open: " + C.GoString(cErr))
66 // TODO(crawshaw): look for plugin note, confirm it is a Go plugin
75 return nil, errors.New("plugin.Open: plugin was built with a different version of package " + mismatchpkg)
78 plugins = make(map[string]*Plugin)
80 // This function can be called from the init function of a plugin
    [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 {
  /frameworks/base/core/java/android/webkit/
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.
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/
NotificationMenuRowPlugin.java 25 import com.android.systemui.plugins.Plugin;
38 public interface NotificationMenuRowPlugin extends Plugin {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
PluginManagerImpl.java 57 * @see Plugin
98 // Plugin dependencies that don't have another good home can go here, but
106 public <T extends Plugin> T getOneShotPlugin(Class<T> cls) {
117 public <T extends Plugin> T getOneShotPlugin(String action, Class<?> cls) {
138 public <T extends Plugin> void addPluginListener(PluginListener<T> listener, Class<?> cls) {
142 public <T extends Plugin> void addPluginListener(PluginListener<T> listener, Class<?> cls,
147 public <T extends Plugin> void addPluginListener(String action, PluginListener<T> listener,
152 public <T extends Plugin> void addPluginListener(String action, PluginListener<T> listener,
237 .setContentTitle("Plugin \"" + label + "\" has updated")
278 "com.android.systemui.plugin");
    [all...]
PluginDependencyProvider.java 43 <T> T get(Plugin p, Class<T> cls) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/plugins/
PluginManagerTest.java 86 Plugin mockPlugin = mock(Plugin.class);
89 Plugin result = mPluginManager.getOneShotPlugin("myAction", TestPlugin.class);
176 public static interface TestPlugin extends Plugin {
PluginInstanceManagerTest.java 67 // Static since the plugin needs to be generated by the PluginInstanceManager using newInstance.
68 private static Plugin sMockPlugin;
92 sMockPlugin = mock(Plugin.class);
143 verify(mMockListener).onPluginDisconnected(ArgumentCaptor.forClass(Plugin.class).capture());
159 // Plugin shouldn't be connected because it is the wrong version.
175 verify(mMockListener).onPluginDisconnected(ArgumentCaptor.forClass(Plugin.class).capture());
213 // Now hand it a real class and make sure it disables the plugin.
240 when(info.serviceInfo.loadLabel(any())).thenReturn("Test Plugin");
286 public static class TestPlugin implements Plugin {
  /frameworks/support/buildSrc/src/main/groovy/android/support/
SupportAndroidLibraryPlugin.groovy 27 import org.gradle.api.Plugin
32 * Support library specific com.android.library plugin that sets common configurations needed for
35 class SupportAndroidLibraryPlugin implements Plugin<Project> {
45 project.apply(ImmutableMap.of("plugin", "com.android.library"));
46 project.apply(ImmutableMap.of("plugin", ErrorProneBasePlugin.class));
  /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 
  /external/parameter-framework/upstream/test/functional-tests/include/
ConfigFiles.hpp 61 std::string toXml(const Config::Plugin::Collection &plugins)
69 pluginsLocationXml += "<Plugin Name='" + path + "'/>\n";
  /prebuilts/tools/common/m2/repository/net/ltgt/gradle/gradle-errorprone-plugin/0.0.10/
gradle-errorprone-plugin-0.0.10.jar 
  /prebuilts/tools/common/m2/repository/net/ltgt/gradle/gradle-errorprone-plugin/0.0.9/
gradle-errorprone-plugin-0.0.9.jar 

Completed in 547 milliseconds

12 3 4 5 6 7 8 91011>>