HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 26 - 50 of 435) sorted by null

12 3 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
21 # $(call emugl-end-module)
23 emugl-begin-host-static-library = $(call emugl-begin-module,$1,HOST_STATIC_LIBRARY,HOST)
24 emugl-begin-host-shared-library = $(call emugl-begin-module,$1,HOST_SHARED_LIBRARY,HOST)
25 emugl-begin-host-executable = $(call emugl-begin-module,$1,HOST_EXECUTABLE,HOST)
32 emugl-begin-module = \
42 $(call _emugl-init-module,$1,$2,$3)
44 # Used to end a module definition, see function definitions above
45 emugl-end-module = \
49 $(if $(EMUGL_DEBUG),$(call emugl-dump-module))
    [all...]
  /development/tools/idegen/src/com/android/idegen/
AggregatedModule.java 33 * Module while is a composition of many other modules.
37 public class AggregatedModule extends Module {
42 private Set<Module> modules;
45 public AggregatedModule(String aggregatedName, Set<Module> modules) {
65 for (Module module : modules) {
66 if (module.isAndroidModule()) {
76 for (Module module : modules) {
77 Iterables.addAll(result, module.getIntermediatesDirs())
    [all...]
ModuleCache.java 40 HashMap<String, Module> modulesByName = Maps.newHashMap();
54 public Module getAndCache(String moduleName) throws IOException {
57 Module module = modulesByName.get(moduleName); local
58 if (module == null) {
61 logger.warning("Unable to find make file for module: " + moduleName);
63 module = new StandardModule(moduleName, makeFile);
64 module.build();
65 modulesByName.put(moduleName, module);
68 return module;
82 AggregatedModule module = new AggregatedModule(aggregatedName, modules); local
98 modulesByName.put(module.getName(), module); local
    [all...]
  /build/core/tasks/
factory_ramdisk.mk 32 # A module name may end up in multiple modules (so multiple built files)
34 # This function selects the module built file based on the install path.
36 # $(2): the module built files
37 define install-one-factory-ramdisk-module
57 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
Krb5LoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
31 import org.apache.harmony.auth.module.Krb5LoginModule;
52 // module options
100 // create login module for testing
101 Krb5LoginModule module = new Krb5LoginModule(); local
102 module.initialize(null, new MockCallbackHandler(), null, options);
108 module.login();
117 module.login();
134 Krb5LoginModule module = new Krb5LoginModule(); local
138 module.initialize(null, null, null, options)
    [all...]
  /external/chromium/base/i18n/
icu_util.cc 64 // We expect to find the ICU data module alongside the current module.
69 HMODULE module = LoadLibrary(data_path.value().c_str()); local
70 if (!module) {
75 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
  /external/chromium/base/
native_library_win.cc 34 HMODULE module = (*load_library_api)(library_path.value().c_str()); local
38 return module;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_stream.py 33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for stream module."""
test_stream_hixie75.py 33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
  /external/chromium_org/base/i18n/
icu_util.cc 68 // We expect to find the ICU data module alongside the current module.
73 HMODULE module = LoadLibrary(data_path.value().c_str()); local
74 if (!module) {
79 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
  /external/chromium_org/base/
native_library_win.cc 34 HMODULE module = (*load_library_api)(library_path.value().c_str()); local
38 return module;
  /external/chromium_org/base/win/
startup_information.cc 54 HMODULE module = ::GetModuleHandleW(L"kernel32.dll"); local
57 ::GetProcAddress(module, "InitializeProcThreadAttributeList"));
60 ::GetProcAddress(module, "UpdateProcThreadAttribute"));
63 ::GetProcAddress(module, "DeleteProcThreadAttributeList"));
  /external/chromium_org/cloud_print/common/win/
cloud_print_utils.cc 28 HMODULE module = NULL; local
30 GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, &dummy, &module);
34 int count = ::LoadString(module, id, reinterpret_cast<LPWSTR>(&buffer), 0);
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_registry.cc 51 PluginModule* module) {
53 live_modules_[path] = module;
86 // the initialized module, it will still try to unregister itself in its
93 scoped_refptr<PluginModule> module = new PluginModule( local
96 AddLiveModule(current.path, module.get());
98 if (!module->InitAsInternalPlugin(current.internal_entry_points)) {
99 DLOG(ERROR) << "Failed to load pepper module: " << current.path.value();
104 if (!module->InitAsLibrary(current.path)) {
105 DLOG(ERROR) << "Failed to load pepper module: " << current.path.value();
109 preloaded_modules_[current.path] = module;
    [all...]
  /external/chromium_org/ppapi/cpp/private/
net_address_private.cc 8 #include "ppapi/cpp/module.h"
76 Module* module = Module::Get(); local
77 if (!module)
83 module->pp_module(),
88 module->pp_module(),
93 module->pp_module(),
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
egl_st.c 100 const char module[] = "st_GL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
118 _eglLog(_EGL_WARNING, "unable to load %s" UTIL_DL_EXT, module);
  /external/chromium_org/third_party/mesa/src/src/gbm/main/
backend.c 56 void *module; local
73 module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
74 if (!module) {
76 "failed to load module: %s\n", dlerror());
80 init = dlsym(module, entrypoint);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
dbgfmt.h 39 const struct yasm_dbgfmt_module *module; member in struct:yasm_dbgfmt_base
43 /** Debug format module interface. */
55 * Module-level implementation of yasm_dbgfmt_create().
62 /** Module-level implementation of yasm_dbgfmt_destroy().
67 /** Module-level implementation of yasm_dbgfmt_generate().
83 * \param module debug format module
88 (const yasm_dbgfmt_module *module, yasm_object *object);
109 (((yasm_dbgfmt_base *)dbgfmt)->module->keyword)
111 #define yasm_dbgfmt_create(module, object)
    [all...]
listfmt.h 39 const struct yasm_listfmt_module *module; member in struct:yasm_listfmt_base
43 /** YASM list format module interface. */
52 * Module-level implementation of yasm_listfmt_create().
61 /** Module-level implementation of yasm_listfmt_destroy().
66 /** Module-level implementation of yasm_listfmt_output().
82 * \param module list format module
88 (const yasm_listfmt_module *module, const char *in_filename,
111 (((yasm_listfmt_base *)listfmt)->module->keyword)
113 #define yasm_listfmt_create(module, in_filename, obj_filename)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdfext.asm 0 module thismodule
2 module $thismodule label
1 module thismodule label
  /external/chromium_org/tools/gyp/test/small/
gyptest-small.py 38 # Carve the module name out of the path.
40 # Find the complete module path.
42 # Load the module.
43 module = imp.load_source(name, full_filename) variable
45 suites.append(unittest.defaultTestLoader.loadTestsFromModule(module))
  /external/freetype/src/autofit/
afglobal.h 73 AF_Module module; /* to access global properties */ member in struct:AF_FaceGlobalsRec_
86 AF_Module module );
afloader.h 31 * The autofitter module's (global) data structure to communicate with
59 af_loader_init( AF_Module module ); variable
63 af_loader_reset( AF_Module module,
68 af_loader_done( AF_Module module ); variable
72 af_loader_load_glyph( AF_Module module,
  /external/mesa3d/src/gallium/targets/egl-static/
egl_st.c 100 const char module[] = "st_GL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
118 _eglLog(_EGL_WARNING, "unable to load %s" UTIL_DL_EXT, module);
  /external/mesa3d/src/gbm/main/
backend.c 56 void *module; local
73 module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
74 if (!module) {
76 "failed to load module: %s\n", dlerror());
80 init = dlsym(module, entrypoint);

Completed in 1311 milliseconds

12 3 4 5 6 7 8 91011>>