Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 3781) sorted by relevance

12345678910>>...152

/external/clang/test/Modules/Inputs/
Dmodule.map1 module c_library [extern_c] { module inner { header "c-header.h" } }
2 module cxx_library { header "cxx-header.h" requires cplusplus }
3 module c_library_bad [extern_c] { header "c-header-bad.h" }
4 module diamond_top { header "diamond_top.h" }
5 module diamond_left {
9 module diamond_right {
13 module diamond_bottom {
17 module irgen { header "irgen.h" }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
[all …]
/external/clang/test/ARCMT/Inputs/
Dmodule.map1 module c_library [extern_c] { module inner { header "c-header.h" } }
2 module cxx_library { header "cxx-header.h" requires cplusplus }
3 module c_library_bad [extern_c] { header "c-header-bad.h" }
4 module diamond_top { header "diamond_top.h" }
5 module diamond_left {
9 module diamond_right {
13 module diamond_bottom {
17 module irgen { header "irgen.h" }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
[all …]
/external/libcxx/include/
Dmodule.modulemap1 // define the module for __config outside of the top level 'std' module
4 module std_config [system] [extern_c] {
8 module std [system] {
17 module depr [extern_c] {
19 module ctype_h {
23 module errno_h {
29 module inttypes_h {
36 module locale_h {
40 module math_h {
44 module setjmp_h {
[all …]
/external/python/cpython2/Lib/test/
Dtest_bisect.py49 module = None variable in TestBisect
53 (self.module.bisect_right, [], 1, 0),
54 (self.module.bisect_right, [1], 0, 0),
55 (self.module.bisect_right, [1], 1, 1),
56 (self.module.bisect_right, [1], 2, 1),
57 (self.module.bisect_right, [1, 1], 0, 0),
58 (self.module.bisect_right, [1, 1], 1, 2),
59 (self.module.bisect_right, [1, 1], 2, 2),
60 (self.module.bisect_right, [1, 1, 1], 0, 0),
61 (self.module.bisect_right, [1, 1, 1], 1, 3),
[all …]
Dtest_warnings.py19 def warnings_state(module): argument
32 original_filters = module.filters
34 module.filters = original_filters[:]
35 module.simplefilter("once")
36 warning_tests.warnings = module
40 module.filters = original_filters
58 sys.modules['warnings'] = self.module
72 self.assertTrue(hasattr(self.module, '__all__'))
76 self.assertSetEqual(set(self.module.__all__),
80 module = c_warnings variable in CPublicAPITests
[all …]
/external/llvm/test/MC/Mips/
Dmodule-directive-bad.s5 .module fp=64
6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
9 .module fp=32
10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
13 .module fp=64
14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
17 .module fp=32
18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
21 .module fp=64
22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
[all …]
/external/syslinux/com32/lib/sys/module/
Delf_module.c50 extern int load_segments(struct elf_module *module, Elf_Ehdr *elf_hdr);
52 static int prepare_dynlinking(struct elf_module *module) { in prepare_dynlinking() argument
53 Elf_Dyn *dyn_entry = module->dyn_table; in prepare_dynlinking()
64 if (module->nr_needed < MAX_NR_DEPS) in prepare_dynlinking()
65 module->needed[module->nr_needed++] = dyn_entry->d_un.d_ptr; in prepare_dynlinking()
72 module->hash_table = in prepare_dynlinking()
73 (Elf_Word*)module_get_absolute(dyn_entry->d_un.d_ptr, module); in prepare_dynlinking()
76 module->ghash_table = in prepare_dynlinking()
77 (Elf_Word*)module_get_absolute(dyn_entry->d_un.d_ptr, module); in prepare_dynlinking()
80 module->str_table = in prepare_dynlinking()
[all …]
Dcommon.c46 void print_elf_symbols(struct elf_module *module) { in print_elf_symbols() argument
50 for (i = 1; i < module->symtable_size/module->syment_size; i++) in print_elf_symbols()
52 crt_sym = (Elf_Sym*)(module->sym_table + i*module->syment_size); in print_elf_symbols()
54 fprintf(stderr,"%s %d\n", module->str_table + crt_sym->st_name, crt_sym->st_value); in print_elf_symbols()
93 int image_load(struct elf_module *module) in image_load() argument
95 module->u.l._file = findpath(module->name); in image_load()
97 if (module->u.l._file == NULL) { in image_load()
98 dprintf("Could not open object file '%s'\n", module->name); in image_load()
102 module->u.l._cr_offset = 0; in image_load()
107 if (module->u.l._file != NULL) { in image_load()
[all …]
Dexec.c23 int get_module_type(struct elf_module *module) in get_module_type() argument
25 if(module->main_func) return EXEC_MODULE; in get_module_type()
41 struct elf_module *module = module_alloc(name);
43 if (module == NULL)
46 res = module_load(module);
48 module_unload(module);
52 if (module->main_func == NULL) {
54 module_unload(module);
84 __syslinux_current = module;
85 __mem_set_tag_global((malloc_tag_t)module);
[all …]
/external/autotest/client/site_tests/security_ModuleLocking/
Dsecurity_ModuleLocking.py44 def module_loaded(self, module): argument
50 module = module.replace('-', '_')
51 match = "%s " % (module)
57 def rmmod(self, module): argument
63 if self.module_loaded(module):
64 utils.system("rmmod %s" % (module))
66 def modprobe(self, module): argument
72 if not self.module_loaded(module):
73 utils.system("modprobe %s" % (module))
75 def _module_path(self, module): argument
[all …]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
Ddata_unittest.py25 from mojom.generate import module as mojom
32 module = mojom.Module('test_module', 'test_namespace')
42 struct = data.StructFromData(module, struct_data)
44 data.StructFieldFromData(module, field, struct), struct.fields_data)
49 module = mojom.Module('test_module', 'test_namespace')
56 union = data.UnionFromData(module, union_data)
58 data.UnionFieldFromData(module, field, union), union.fields_data)
63 module = mojom.Module('test_module', 'test_namespace')
71 struct = mojom.Struct('TestStruct', module=module)
74 union = mojom.Union('TestUnion', module=module)
[all …]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
Ddata.py9 import module as mojom
102 def FixupExpression(module, value, scope, kind): argument
107 result = LookupValue(module.values, value[1], scope, kind)
172 def ImportFromData(module, data): argument
186 module.kinds[kind.spec] = kind
194 module.values[value.GetSpec()] = value
209 def StructFromData(module, data): argument
210 struct = mojom.Struct(module=module)
213 struct.spec = 'x:' + module.namespace + '.' + struct.name
214 module.kinds[struct.spec] = struct
[all …]
/external/pdfium/xfa/fxbarcode/datamatrix/
DBC_DefaultPlacement.cpp99 void CBC_DefaultPlacement::module(int32_t row, in module() function in CBC_DefaultPlacement
116 module(row - 2, col - 2, pos, 1); in utah()
117 module(row - 2, col - 1, pos, 2); in utah()
118 module(row - 1, col - 2, pos, 3); in utah()
119 module(row - 1, col - 1, pos, 4); in utah()
120 module(row - 1, col, pos, 5); in utah()
121 module(row, col - 2, pos, 6); in utah()
122 module(row, col - 1, pos, 7); in utah()
123 module(row, col, pos, 8); in utah()
126 module(m_numrows - 1, 0, pos, 1); in corner1()
[all …]
/external/llvm/include/llvm/
Dmodule.modulemap1 module LLVM_Analysis {
4 module * { export * }
10 module LLVM_AsmParser { requires cplusplus umbrella "AsmParser" module * { export * } }
12 // A module covering CodeGen/ and Target/. These are intertwined
13 // and codependent, and thus notionally form a single module.
14 module LLVM_Backend {
17 module CodeGen {
19 module * { export * }
25 // translation unit (or none) and aren't part of this module.
34 module Target {
[all …]
/external/clang/include/clang/
Dmodule.modulemap1 module Clang_Analysis {
7 module * { export * }
10 module Clang_AST {
19 module * { export * }
22 module Clang_ASTMatchers { requires cplusplus umbrella "ASTMatchers" module * { export * } }
24 module Clang_Basic {
51 module * { export * }
54 module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
55 module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
58 // logically form a single module.
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-config/
Dfind-cycles.pl32 my ($module, $dependency_str) = /^\s*([^:]+):\s*(.*)\s*$/;
35 $DEPS{$module} = \@dependencies;
49 foreach my $module (@modules) {
50 @dependencies{@{$DEPS{$module}}} = 1;
54 foreach my $module (@modules) {
55 delete $dependencies{$module};
97 foreach my $module (@modules) { find_cycles($module); }
101 foreach my $module (@modules) {
102 unless (defined $CYCLES{$module}) {
103 my %cycle = ($module, 1);
[all …]
/external/python/cpython2/Doc/c-api/
Dmodule.rst8 .. index:: object: module
10 There are only a few functions special to module objects.
15 .. index:: single: ModuleType (in module types)
17 This instance of :c:type:`PyTypeObject` represents the Python module type. This
23 Return true if *p* is a module object, or a subtype of a module object.
31 Return true if *p* is a module object, but not a subtype of
40 single: __name__ (module attribute)
41 single: __doc__ (module attribute)
42 single: __file__ (module attribute)
44 Return a new module object with the :attr:`__name__` attribute set to *name*.
[all …]
/external/clang/test/Modules/Inputs/submodules/
Dmodule.map1 module std {
2 module vector { header "vector.h" }
3 module type_traits { header "type_traits.h" }
4 explicit module hash_map { header "hash_map.h" }
7 module import_self {
8 module a { header "import-self-a.h" }
9 module b { header "import-self-b.h" export * }
10 module c { header "import-self-c.h" }
11 module d { header "import-self-d.h" }
14 module missing_headers {
[all …]
/external/freetype/src/pshinter/
Dpshmod.c41 ps_hinter_done( PS_Hinter_Module module ) in ps_hinter_done() argument
43 module->t1_funcs.hints = NULL; in ps_hinter_done()
44 module->t2_funcs.hints = NULL; in ps_hinter_done()
46 ps_hints_done( &module->ps_hints ); in ps_hinter_done()
52 ps_hinter_init( PS_Hinter_Module module ) in ps_hinter_init() argument
54 FT_Memory memory = module->root.memory; in ps_hinter_init()
55 void* ph = &module->ps_hints; in ps_hinter_init()
58 ps_hints_init( &module->ps_hints, memory ); in ps_hinter_init()
60 psh_globals_funcs_init( &module->globals_funcs ); in ps_hinter_init()
62 t1_hints_funcs_init( &module->t1_funcs ); in ps_hinter_init()
[all …]
/external/pdfium/third_party/freetype/src/pshinter/
Dpshmod.c41 ps_hinter_done( PS_Hinter_Module module ) in ps_hinter_done() argument
43 module->t1_funcs.hints = NULL; in ps_hinter_done()
44 module->t2_funcs.hints = NULL; in ps_hinter_done()
46 ps_hints_done( &module->ps_hints ); in ps_hinter_done()
52 ps_hinter_init( PS_Hinter_Module module ) in ps_hinter_init() argument
54 FT_Memory memory = module->root.memory; in ps_hinter_init()
55 void* ph = &module->ps_hints; in ps_hinter_init()
58 ps_hints_init( &module->ps_hints, memory ); in ps_hinter_init()
60 psh_globals_funcs_init( &module->globals_funcs ); in ps_hinter_init()
62 t1_hints_funcs_init( &module->t1_funcs ); in ps_hinter_init()
[all …]
/external/autotest/client/site_tests/graphics_Gralloc/src/
Dgralloctest.c50 struct gralloc_module_t *module; member
176 static int register_buffer(struct gralloc_module_t *module, in register_buffer() argument
180 ret = module->registerBuffer(module, info->handle); in register_buffer()
184 static int unregister_buffer(struct gralloc_module_t *module, in unregister_buffer() argument
188 ret = module->unregisterBuffer(module, info->handle); in unregister_buffer()
192 static int lock(struct gralloc_module_t *module, struct grallocinfo *info) in lock() argument
196 ret = module->lock(module, info->handle, info->usage, 0, 0, in lock()
202 static int unlock(struct gralloc_module_t *module, struct grallocinfo *info) in unlock() argument
205 ret = module->unlock(module, info->handle); in unlock()
209 static int lock_ycbcr(struct gralloc_module_t *module, struct grallocinfo *info) in lock_ycbcr() argument
[all …]
/external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
Dcommon.cpp54 enum module::argument::type
58 return module::argument::image2d_rd; in get_image_type()
60 return module::argument::image2d_wr; in get_image_type()
62 return module::argument::image3d_rd; in get_image_type()
64 return module::argument::image3d_wr; in get_image_type()
69 std::vector<module::argument>
72 std::vector<module::argument> args; in make_kernel_args()
103 target_align, module::argument::zero_ext); in make_kernel_args()
107 args.emplace_back(module::argument::scalar, sizeof(cl_uint), in make_kernel_args()
110 module::argument::zero_ext, in make_kernel_args()
[all …]
/external/freetype/src/autofit/
Dafmodule.c76 AF_Module module ) in af_property_get_face_globals() argument
90 error = af_face_globals_new( face, &globals, module ); in af_property_get_face_globals()
127 AF_Module module = (AF_Module)ft_module; in af_property_set() local
158 module->fallback_style = ss; in af_property_set()
184 module->default_script = *default_script; in af_property_set()
201 error = af_property_get_face_globals( prop->face, &globals, module ); in af_property_set()
218 module->warping = 0; in af_property_set()
220 module->warping = 1; in af_property_set()
230 module->warping = *warping; in af_property_set()
287 module->darken_params[0] = x1; in af_property_set()
[all …]
/external/syslinux/com32/lib/sys/module/i386/
Delf_module.c29 int load_segments(struct elf_module *module, Elf_Ehdr *elf_hdr) { in load_segments() argument
45 image_seek(elf_hdr->e_phoff, module); in load_segments()
52 image_read(pht, elf_hdr->e_phnum * elf_hdr->e_phentsize, module); in load_segments()
98 if (elf_malloc(&module->module_addr, in load_segments()
106 module->base_addr = (Elf32_Addr)(module->module_addr) - min_alloc; in load_segments()
107 module->module_size = max_alloc - min_alloc; in load_segments()
110 memset(module->module_addr, 0, module->module_size); in load_segments()
117 if (cr_pht->p_offset < module->u.l._cr_offset) { in load_segments()
121 Elf32_Off aux_off = module->u.l._cr_offset - cr_pht->p_offset; in load_segments()
123 if (image_read((char *)module_get_absolute(cr_pht->p_vaddr, module) + aux_off, in load_segments()
[all …]
/external/clang/test/Modules/
Dtarget-features.m8 …ple aarch64-unknown-unknown -fmodules -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs …
12 …riple armv7-unknown-unknown -fmodules -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs …
14 …ple aarch64-unknown-unknown -fmodules -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs …
16 …triple i386-unknown-unknown -fmodules -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs …
18 …iple x86_64-unknown-unknown -fmodules -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs …
23 // AARCH32-NOT: module 'TargetFeatures' requires
24 // AARCH64-NOT: module 'TargetFeatures' requires
25 // X86_32-NOT: module 'TargetFeatures' requires
26 // X86_64-NOT: module 'TargetFeatures' requires
28 // AARCH32-NOT: module 'TargetFeatures.arm' requires
[all …]

12345678910>>...152