HomeSort by relevance Sort by last modified time
    Searched refs:module (Results 101 - 125 of 1592) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/storage/
SQLTransactionErrorCallback.idl 29 module storage {
SQLTransactionSyncCallback.idl 31 module storage {
StorageInfoErrorCallback.idl 31 module storage {
  /external/webkit/Source/WebCore/svg/
SVGDescElement.idl 26 module svg {
SVGFEFloodElement.idl 26 module svg {
SVGFEMergeElement.idl 26 module svg {
SVGNumber.idl 23 module svg {
SVGPathSegLinetoHorizontalAbs.idl 27 module svg {
SVGPathSegLinetoHorizontalRel.idl 27 module svg {
SVGPathSegLinetoVerticalAbs.idl 27 module svg {
SVGPathSegLinetoVerticalRel.idl 27 module svg {
SVGSymbolElement.idl 26 module svg {
SVGTitleElement.idl 26 module svg {
  /external/webkit/Source/WebCore/webaudio/
AudioDestinationNode.idl 25 module audio {
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
GCController.idl 26 module WTR {
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
arch_ti.h 47 #include <linux/module.h>
  /external/bluetooth/glib/gobject/
gtypemodule.c 45 * interface. The model of #GTypeModule is a dynamically loaded module
47 * implementations. When the module is loaded, it registers its types
50 * types and interface implementations are in use, the module is kept
51 * loaded. When the types and interfaces are gone, the module may be
52 * unloaded. If the types and interfaces become used again, the module
53 * will be reloaded. Note that the last unref can not happen in module
57 * Keeping track of whether the module should be loaded or not is done by
59 * zero, the module is loaded. The use count is maintained internally by
62 * a module for the first type, g_type_module_use() will be used to load
64 * module no longer needs to be loaded except for the typ
108 GTypeModule *module = G_TYPE_MODULE (object); local
123 GTypeModule *module = G_TYPE_MODULE (object); local
321 GTypeModule *module = G_TYPE_MODULE (plugin); local
337 GTypeModule *module = G_TYPE_MODULE (plugin); local
352 GTypeModule *module = G_TYPE_MODULE (plugin); local
    [all...]
  /external/chromium/base/
resource_util.cc 9 bool GetDataResourceFromModule(HMODULE module, int resource_id,
11 if (!module)
19 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id),
24 DWORD data_size = SizeofResource(module, hres_info);
25 HGLOBAL hres = LoadResource(module, hres_info);
  /external/freetype/src/autofit/
afmodule.c 5 /* Auto-fitter module implementation (body). */
42 af_autofitter_init( FT_Autofitter module )
44 return af_loader_init( module->loader, module->root.library->memory );
49 af_autofitter_done( FT_Autofitter module )
51 af_loader_done( module->loader );
56 af_autofitter_load_glyph( FT_Autofitter module,
64 return af_loader_load_glyph( module->loader, slot->face,
  /external/kernel-headers/original/linux/
module.h 22 #include <asm/module.h>
46 struct module;
50 ssize_t (*show)(struct module_attribute *, struct module *, char *);
51 ssize_t (*store)(struct module_attribute *, struct module *,
53 void (*setup)(struct module *, const char *);
54 int (*test)(struct module *);
55 void (*free)(struct module *);
61 struct module *mod;
64 /* These are either module local, or the kernel's dummy ones. */
81 #ifdef MODULE
246 struct module struct
    [all...]
  /external/bluetooth/glib/gmodule/
gmodule.c 1 /* GMODULE - GLIB wrapper code for dynamic module loading
55 * Also, the module for the program itself is kept seperatedly for
103 GModule *module; local
109 for (module = modules; module; module = module->next)
110 if (handle == module->handle)
112 retval = module;
122 GModule *module; local
335 GModule *module; local
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 3 * Dealing with the kernel and kernel module samples
29 /* kernel module */
40 /* kernel and module support */
73 * opd_create_module - allocate and initialise a module description
74 * @param name module name
81 struct opd_module * module = xmalloc(sizeof(struct opd_module)); local
83 module->name = xstrdup(name);
84 module->image = NULL;
85 module->start = start;
86 module->end = end
101 struct opd_module * module; local
117 struct opd_module * module; local
324 struct opd_module * module; local
354 struct opd_module * module; local
413 struct opd_module * module; local
    [all...]
  /external/apache-harmony/auth/src/test/resources/
auth.conf 7 com.intel.security.auth.module.LoginModule1 required AAAA=true BBB=false;
8 com.intel.security.auth.module.LoginModule2 optional debug=true;
9 com.intel.security.auth.module.LoginModule3 sufficient;
14 com.intel.security.auth.module.LoginModule1 required debug1=true test1=false;
19 com.intel.security.auth.module.LoginModule2 required debug1="true" test1="false";
22 Login3 { com.intel.security.auth.module.LoginModule3 required;
26 com.intel.security.auth.module.LoginModule4 required debug1=true test1=false; };
29 { com.intel.security.auth.module.LoginModule5 required debug1=true test1=false; };
31 Login6 { com.intel.security.auth.module.LoginModule6 required debug1=true test1=false; };
36 com.intel.security.auth.module.LoginModule1 required AAAA="true" BBB=false
    [all...]
  /external/v8/test/mjsunit/harmony/
module-parsing.js 30 // Test basic module syntax, with and without automatic semicolon insertion.
32 module A {}
34 module A1 = A
35 module A2 = A;
36 module A3 = A2
38 module B {
50 module C0 {}
52 export module C {
54 export module D { export let x }
67 export module M1 {
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
LdapLoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.LdapLoginModule;
41 // module options
57 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#abort()}.
94 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#commit()}.
97 LdapLoginModule module = new LdapLoginModule(); local
100 module.initialize(subject, new MockCallbackHandler(), null, options);
102 assertTrue("Login should be successful", module.login());
103 module.commit();
111 module.initialize(subject, new MockCallbackHandler(), null, options)
124 LdapLoginModule module = new LdapLoginModule(); local
137 LdapLoginModule module = new LdapLoginModule(); local
168 LdapLoginModule module = new LdapLoginModule(); local
192 LdapLoginModule module = new LdapLoginModule(); local
    [all...]

Completed in 1152 milliseconds

1 2 3 45 6 7 8 91011>>