Searched refs:module (Results 176 - 200 of 864) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h35 char *module; member in struct:__sanitizer::AddressInfo
51 module = internal_strdup(mod_name);
58 char *module; member in struct:__sanitizer::DataInfo
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dprogram.hpp30 #include "core/module.hpp"
42 const std::vector<clover::module> &binaries);
47 const std::map<clover::device *, clover::module> &binaries() const;
56 std::map<clover::device *, clover::module> __binaries;
/external/chromium/chrome/common/extensions/docs/js/
H A Dapi_page_generator.js49 // The current module for this page (if this page is an api module);
50 var module; variable
52 // Mapping from typeId to module.
58 // If this page is an apiModule, the name of the api module
213 module = mod;
214 apiModuleName = API_MODULE_PREFIX + module.namespace;
215 pageData.apiDefinition = module;
335 return schema.filter(function(module) {
336 return !module
[all...]
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.h24 // A helper class that implements the enumerate module functionality on the File
28 // What type of module we are dealing with. Loaded modules are modules we
38 // The blacklist status of the module. Suspected Bad modules have been
44 // blacklist and the module does not match the current entry in the
47 // The module is not on the blacklist. Assume it is good.
49 // Module is a suspected bad module.
67 // The type of module found
69 // The module status (benign/bad/etc).
71 // The module path, not including filename.
73 // The name of the module (filenam
[all...]
/external/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.h26 // A helper class that implements the enumerate module functionality on the File
30 // What type of module we are dealing with. Loaded modules are modules we
40 // The blacklist status of the module. Suspected Bad modules have been
46 // blacklist and the module does not match the current entry in the
49 // The module is not on the blacklist. Assume it is good.
51 // Module is a suspected bad module.
76 // The type of module found
78 // The module status (benign/bad/etc).
80 // The module path, not including filename.
82 // The name of the module (filenam
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_broker_impl.cc67 PluginModule* module = plugin_instance->module();
68 const base::FilePath& broker_path = module->path();
76 broker_ = module->GetBroker();
78 broker_ = new PepperBroker(module);
/external/chromium/base/win/
H A Dpe_image_unittest.cc29 LPCSTR module,
63 LPCSTR module,
75 LPCSTR module,
155 HMODULE module = LoadLibrary(L"advapi32.dll");
156 ASSERT_TRUE(NULL != module);
158 PEImage pe(module);
196 FreeLibrary(module);
201 HMODULE module = LoadLibrary(L"advapi32.dll"); local
202 ASSERT_TRUE(NULL != module);
204 PEImage pe(module);
28 ImportsCallback(const PEImage &image, LPCSTR module, DWORD ordinal, LPCSTR name, DWORD hint, PIMAGE_THUNK_DATA iat, PVOID cookie) argument
62 ImportChunksCallback(const PEImage &image, LPCSTR module, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PVOID cookie) argument
73 DelayImportChunksCallback(const PEImage &image, PImgDelayDescr delay_descriptor, LPCSTR module, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PIMAGE_THUNK_DATA bound_iat, PIMAGE_THUNK_DATA unload_iat, PVOID cookie) argument
[all...]
/external/chromium_org/base/win/
H A Dpe_image_unittest.cc29 LPCSTR module,
63 LPCSTR module,
75 LPCSTR module,
203 HMODULE module = LoadLibrary(L"advapi32.dll"); local
204 ASSERT_TRUE(NULL != module);
206 PEImage pe(module);
248 FreeLibrary(module);
253 HMODULE module = LoadLibrary(L"advapi32.dll"); local
254 ASSERT_TRUE(NULL != module);
256 PEImage pe(module);
28 ImportsCallback(const PEImage &image, LPCSTR module, DWORD ordinal, LPCSTR name, DWORD hint, PIMAGE_THUNK_DATA iat, PVOID cookie) argument
62 ImportChunksCallback(const PEImage &image, LPCSTR module, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PVOID cookie) argument
73 DelayImportChunksCallback(const PEImage &image, PImgDelayDescr delay_descriptor, LPCSTR module, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PIMAGE_THUNK_DATA bound_iat, PIMAGE_THUNK_DATA unload_iat, PVOID cookie) argument
[all...]
/external/chromium_org/sandbox/win/src/
H A Dapp_container.cc97 HMODULE module = GetModuleHandle(kKerneldllName); local
99 GetProcAddress(module, "AppContainerRegisterSid"));
123 HMODULE module = GetModuleHandle(kKerneldllName); local
125 GetProcAddress(module, "AppContainerUnregisterSid"));
153 HMODULE module = GetModuleHandle(kKerneldllName); local
155 GetProcAddress(module, "AppContainerLookupMoniker"));
157 GetProcAddress(module, "AppContainerFreeMemory"));
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp84 module
90 return module::deserialize(cs);
167 // When there is no "main" function in a module, the internalize pass will
168 // treat the module like a library, and it won't internalize any functions.
170 // the internalizer pass that this module is not a library by passing a
189 module
193 module m;
204 compat::vector<module::argument> args;
231 args.push_back(module::argument(module
[all...]
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp202 /// @param module for module instance
213 llvm::Function *createFunction(llvm::Module &module, argument
224 llvm::Function::Create(functType, linkage, functName, &module);
894 /// @param module code for module instance
902 llvm::Module &module,
906 llvm::Function *printFunct = module.getFunction("printStr");
915 new llvm::GlobalVariable(module,
936 /// @param module cod
901 generateStringPrint(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, std::string toPrint, bool useGlobal = true) argument
945 generateIntegerPrint(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &printFunct, llvm::Value &toPrint, std::string format, bool useGlobal = true) argument
997 createFinallyBlock(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &toAddTo, std::string &blockName, std::string &functionId, llvm::BasicBlock &terminatorBlock, llvm::BasicBlock &unwindResumeBlock, llvm::Value **exceptionCaughtFlag, llvm::Value **exceptionStorage, llvm::Value **caughtResultStorage) argument
1073 createCatchBlock(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &toAddTo, std::string &blockName, std::string &functionId, llvm::BasicBlock &terminatorBlock, llvm::Value &exceptionCaughtFlag) argument
1126 createCatchWrappedInvokeFunction(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, llvm::Function &toInvoke, std::string ourId, unsigned numExceptionsToCatch, unsigned exceptionTypesToCatch[]) argument
1393 createThrowExceptionFunction(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, std::string ourId, int32_t nativeThrowType, llvm::Function &nativeThrowFunct) argument
1511 createUnwindExceptionTest(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, std::string nativeThrowFunctName) argument
1648 createStandardUtilityFunctions(unsigned numTypeInfos, llvm::Module &module, llvm::IRBuilder<> &builder) argument
1960 llvm::Module *module = new llvm::Module("my cool jit", context); local
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp84 module
90 return module::deserialize(cs);
167 // When there is no "main" function in a module, the internalize pass will
168 // treat the module like a library, and it won't internalize any functions.
170 // the internalizer pass that this module is not a library by passing a
189 module
193 module m;
204 compat::vector<module::argument> args;
231 args.push_back(module::argument(module
[all...]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
H A DLoginContextTest.java78 // configuration contains requested login module
81 assertTrue("Requested module", MyConfig.getLastAppName() == moduleName);
119 assertEquals("Default module", "other", MyConfig.getLastAppName());
126 * Precondition: configuration contains requested login module and
141 assertTrue("Default module",
152 * Precondition: configuration contains requested login module and
200 * Precondition: parameters for login module initialization
211 // add required module to the current configuration
221 // only one module must be created
224 MyLoginModule module
[all...]
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py14 using the module definitions provided in each file. This allows us to, for
30 """Helper code for finding a module given a name and current module.
76 """Represents a stylesheet resource referenced by a module via the
87 """Represents a raw script resource referenced by a module via the
159 """Represents a javascript module. It can either be directly requested, e.g.
161 module via the base.require(xxx) directive.
165 - filename: the file of the actual module
166 - contents: the actual text contents of the module
167 - style_sheets: StyleSheet objects that this module relie
[all...]
/external/chromium_org/chrome/test/webdriver/test/
H A Drun_webdriver_tests.py20 # Add the PYTHON_BINDINGS first so that our 'test' module is found instead of
88 """Return the module from the given test name.
91 test_name: dot-separated string for a module, a test case or a test
93 Examples: omnibox (a module)
98 tuple with first item corresponding to the module and second item
99 corresponding to the parts of the name that did not specify the module
107 module = __import__('.'.join(parts_copy))
114 if type(getattr(module, comp)) is not types.ModuleType:
116 module = getattr(module, com
[all...]
/external/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.mli15 (** [write_bitcode_file m path] writes the bitcode for module [m] to the file at
20 (** [write_bitcode_to_fd ~unbuffered fd m] writes the bitcode for module
27 (** [output_bitcode ~unbuffered c m] writes the bitcode for module [m]
/external/llvm/test/Bindings/Ocaml/
H A Danalysis.ml30 Some msg -> bomb "valid module failed verification!"
43 | None -> bomb "invalid module passed verification!"
51 (* Don't bother to test assert_valid_{module,function}. *)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dfilter.rb6 module ANTLR3
10 Lexer code will include this module. It modifies the standard
18 module FilterMode
/external/chromium/base/i18n/
H A Dicu_util.cc64 // 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_org/base/i18n/
H A Dicu_util.cc68 // 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/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_printf.c63 LLVMModuleRef module = gallivm->module; local
65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
H A Dcv-dbgfmt.c37 cv_dbgfmt_create(yasm_object *object, yasm_dbgfmt_module *module, int version) argument
42 dbgfmt_cv->dbgfmt.module = module;
/external/chromium_org/tools/gyp/test/module/src/
H A Dprogram.c26 void CallModule(const char* module) { argument
40 if (_makepath_s(module_path, MAX_PATH, drive, dir, module, MODULE_SUFFIX)) {
41 fprintf(stderr, "Failed to calculate module path.\n");
47 fprintf(stderr, "Failed to open module: %s\n", module_path);
63 int path_size = snprintf(module_path, MAX_PATH, "%s/%s%s", bin_dir, module,
67 fprintf(stderr, "Failed to calculate module path.\n");
74 fprintf(stderr, "Failed to open module: %s\n", module_path);
/external/kernel-headers/original/linux/
H A Dipmi_smi.h39 #include <linux/module.h>
83 struct module *owner;
207 void *data, struct module *owner);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_printf.c63 LLVMModuleRef module = gallivm->module; local
65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));

Completed in 779 milliseconds

1234567891011>>