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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/
PRESUBMIT.py 15 'F0401', # Unable to import module namespace
  /external/chromium_org/third_party/sqlite/src/src/
shell_icu_win.c 15 HMODULE module; local
20 module = LoadLibrary(L"icudt.dll");
21 if (!module)
24 addr = GetProcAddress(module, ICU_DATA_SYMBOL);
  /external/chromium_org/base/
file_version_info.h 47 // Creates a FileVersionInfo for the specified module. Returns NULL in case
50 HMODULE module);
52 // Creates a FileVersionInfo for the current module. Returns NULL in case
54 // This function should be inlined so that the "current module" is evaluated
55 // correctly, instead of being the module that contains base.
58 HMODULE module = reinterpret_cast<HMODULE>(&__ImageBase); local
59 return CreateFileVersionInfoForModule(module);
62 // Creates a FileVersionInfo for the current module. Returns NULL in case
  /external/chromium_org/chrome/common/
chrome_version_info_win.cc 20 base::FilePath module; local
22 if (PathService::Get(base::FILE_MODULE, &module)) {
24 !InstallUtil::IsPerUserInstall(module.value().c_str());
47 base::FilePath module; local
48 if (PathService::Get(base::FILE_MODULE, &module)) {
50 !InstallUtil::IsPerUserInstall(module.value().c_str());
  /external/chromium_org/third_party/libxml/src/
testModule.c 45 xmlModulePtr module = NULL; local
48 /* build the module filename, and confirm the module exists */
54 module = xmlModuleOpen((const char*)filename, 0);
55 if (module)
57 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
68 xmlModuleClose(module);
79 printf("%s : Module support not compiled in\n", argv[0]);
  /external/chromium_org/tools/idl_parser/
run_tests.py 14 module = __import__(testname[:-3]) variable
15 suite.addTests(unittest.defaultTestLoader.loadTestsFromModule(module))
  /external/chromium_org/v8/src/
icu_util.cc 46 // We expect to find the ICU data module alongside the current module.
47 HMODULE module = LoadLibraryA(ICU_UTIL_DATA_SHARED_MODULE_NAME); local
48 if (!module) return false;
50 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 3 This module is no longer required except for backward compatibility.
7 warnpy3k("The 'new' module has been removed in Python 3.0; use the 'types' "
8 "module instead.", stacklevel=2)
15 from types import ModuleType as module namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 3 This module is no longer required except for backward compatibility.
7 warnpy3k("The 'new' module has been removed in Python 3.0; use the 'types' "
8 "module instead.", stacklevel=2)
15 from types import ModuleType as module namespace
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
LoginContext.java 83 private Module[] modules;
168 modules = new Module[entries.length];
170 modules[i] = new Module(entries[i]);
266 for (Module module : modules) {
268 // if a module fails during Class.forName(), then it breaks overall
270 module.create(subject, callbackHandler, sharedState);
272 if (module.module.login()) {
273 ++total[module.getFlag()]
492 LoginModule module; field in class:LoginContext.Module
    [all...]
  /external/chromium/googleurl/src/
gurl_test_main.cc 64 // We expect to find the ICU data module alongside the current module.
65 // Because the module name is ASCII-only, "A" API should be safe.
68 HMODULE module = LoadLibraryA("icudt.dll"); local
69 if (!module) {
70 module = LoadLibraryA(ICU_UTIL_DATA_SHARED_MODULE_NAME);
71 if (!module)
75 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
86 // We expect to find the ICU data module alongside the current module
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi_test.cc 32 HMODULE module = LoadLibrary(L"gcapi_dll.dll"); local
33 if (module == NULL) {
39 module, "GoogleChromeCompatibilityCheck");
57 FreeLibrary(module);
  /external/chromium_org/content/renderer/pepper/
ppapi_unittest.h 30 PluginModule* module() const { return module_.get(); } function in class:content::PpapiUnittest
37 // Deletes the instance and module to simulate module shutdown.
44 // Note: module must be declared first since we want it to get destroyed last.
  /external/chromium_org/ppapi/cpp/
ppp_entrypoints.cc 7 // plugin implementors can export their derivation of Module by just
13 #include "ppapi/cpp/module.h"
16 static pp::Module* g_module_singleton = NULL;
21 // Give a default implementation of Module::Get(). See module.cc for details.
22 pp::Module* Module::Get() {
36 pp::Module* module = pp::CreateModule(); local
37 if (!module)
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_entrypoints.cc 13 #include "ppapi/cpp/module.h"
16 static pp::Module* g_module_singleton = NULL;
20 Module* Module::Get() {
28 class ChromotingModule : public pp::Module {
38 ChromotingModule* module = new ChromotingModule(); local
39 if (!module)
42 if (!module->InternalInit(module_id, get_browser_interface)) {
43 delete module;
52 g_module_singleton = module;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_init.h 41 LLVMModuleRef module; member in struct:gallivm_state
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
program.cpp 35 const std::vector<clover::module> &binaries) :
37 for_each([&](clover::device *dev, const clover::module &bin) {
50 auto module = (dev->ir_format() == PIPE_SHADER_IR_TGSI ? local
54 __binaries.insert({ dev, module });
68 const std::map<clover::device *, clover::module> &
  /external/chromium_org/url/
gurl_test_main.cc 39 // We expect to find the ICU data module alongside the current module.
40 // Because the module name is ASCII-only, "A" API should be safe.
43 HMODULE module = LoadLibraryA("icudt.dll"); local
44 if (!module) {
45 module = LoadLibraryA(ICU_UTIL_DATA_SHARED_MODULE_NAME);
46 if (!module)
50 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
61 // We expect to find the ICU data module alongside the current module
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.h 41 LLVMModuleRef module; member in struct:gallivm_state
  /external/mesa3d/src/gallium/state_trackers/clover/core/
program.cpp 35 const std::vector<clover::module> &binaries) :
37 for_each([&](clover::device *dev, const clover::module &bin) {
50 auto module = (dev->ir_format() == PIPE_SHADER_IR_TGSI ? local
54 __binaries.insert({ dev, module });
68 const std::map<clover::device *, clover::module> &
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
JndiLoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.JndiLoginModule;
39 // module options
62 * {@link org.apache.harmony.auth.module.JndiLoginModule#abort()}.
95 * {@link org.apache.harmony.auth.module.JndiLoginModule#commit()}.
98 JndiLoginModule module = new JndiLoginModule(); 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)
125 JndiLoginModule module = new JndiLoginModule(); local
139 JndiLoginModule module = new JndiLoginModule(); local
170 JndiLoginModule module = new JndiLoginModule(); local
197 JndiLoginModule module = new JndiLoginModule(); local
    [all...]
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...]
KeyStoreLoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
29 import org.apache.harmony.auth.module.KeyStoreLoginModule;
35 // module options
84 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
86 module.initialize(subject, null, null, options);
88 assertTrue("Login should be successful", module.login());
89 module.commit();
104 module.initialize(subject, null, null, options);
106 assertFalse("Commit shouldn't be successful", module.commit());
115 KeyStoreLoginModule module = new KeyStoreLoginModule() local
125 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
153 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
    [all...]
  /ndk/build/core/
definitions.mk 347 # For each module 'foo', __ndk_modules.foo.<field> is used
348 # to store module-specific information.
350 # type -> type of module (e.g. 'static', 'shared', ...)
351 # depends -> list of other modules this module depends on
353 # Also, LOCAL_XXXX values defined for a module are recorded in XXXX, e.g.:
355 # PATH -> recorded LOCAL_PATH for the module
356 # CFLAGS -> recorded LOCAL_CFLAGS for the module
361 # MAKEFILE -> The Android.mk where the module is defined.
363 # OBJECTS -> List of module objects
364 # BUILT_MODULE -> location of module built file (e.g. obj/<app>/<abi>/libfoo.so
    [all...]
  /device/generic/goldfish/opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
21 # $(call emugl-end-module)
23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
31 emugl-begin-module = \
40 $(call _emugl-init-module,$1,$2,$3)
42 # Used to end a module definition, see function definitions above
43 emugl-end-module = \
47 $(if $(EMUGL_DEBUG),$(call emugl-dump-module))
49 # Managing module exports and imports
    [all...]

Completed in 1727 milliseconds

1 2 3 4 5 6 7 8 91011>>