Home
last modified time | relevance | path

Searched full:module (Results 1 – 25 of 6131) sorted by relevance

12345678910>>...246

/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/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/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/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/okhttp/
Dcheckstyle.xml2 <!DOCTYPE module PUBLIC
6 <module name="Checker">
7 <module name="NewlineAtEndOfFile"/>
8 <module name="FileLength"/>
9 <module name="FileTabCharacter"/>
12 <module name="RegexpSingleline">
15 </module>
18 <module name="RegexpSingleline">
21 </module>
24 <module name="RegexpSingleline">
[all …]
/external/okhttp/okio/
Dcheckstyle.xml2 <!DOCTYPE module PUBLIC
6 <module name="Checker">
7 <module name="NewlineAtEndOfFile"/>
8 <module name="FileLength"/>
9 <module name="FileTabCharacter"/>
12 <module name="RegexpSingleline">
15 </module>
18 <module name="RegexpSingleline">
21 </module>
24 <module name="RegexpSingleline">
[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/dagger2/
Dcheckstyle.xml2 <!DOCTYPE module PUBLIC
6 <module name="Checker">
7 <!--module name="NewlineAtEndOfFile"/-->
8 <module name="FileLength"/>
9 <module name="FileTabCharacter"/>
12 <module name="RegexpSingleline">
15 </module>
18 <module name="RegexpSingleline">
21 </module>
24 <module name="RegexpSingleline">
[all …]
/external/clang/include/clang/Lex/
DModuleMap.h11 // module as it relates to headers.
20 #include "clang/Basic/Module.h"
39 /// \brief A mechanism to observe the actions of the module map parser as it
40 /// reads module map files.
45 /// \brief Called when a module map file has been read.
50 /// \param IsSystem Whether this is a module map from a system include path.
54 /// \brief Called when a header is added during module map parsing.
59 /// \brief Called when an umbrella header is added during module map parsing.
80 /// \brief Language options used to parse the module map itself.
85 // The module that the main source file is associated with (the module
[all …]
/external/nanohttpd/src/main/checkstyle/
Dnanohttpd-style.xml2 <!DOCTYPE module PUBLIC
11 <module name="Checker">
12 <module name="SuppressionFilter">
14 </module>
20 <module name="NewlineAtEndOfFile" />
24 <module name="Translation" />
28 <module name="FileLength" />
32 <module name="FileTabCharacter" />
37 <!-- <module name="Header"> -->
40 <!-- </module> -->
[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/clang/test/Modules/
Dexponential-paths.cpp6 // Build module map with 40 modules; two layers with importing and re-exporting
9 // RUN: echo 'module a0 { header "a0.h" export * }' > %t/module.modulemap
10 // RUN: echo 'module b0 { header "b0.h" export * }' >> %t/module.modulemap
11 // RUN: echo 'module a1 { header "a1.h" export * }' >> %t/module.modulemap
12 // RUN: echo 'module b1 { header "b1.h" export * }' >> %t/module.modulemap
13 // RUN: echo 'module a2 { header "a2.h" export * }' >> %t/module.modulemap
14 // RUN: echo 'module b2 { header "b2.h" export * }' >> %t/module.modulemap
15 // RUN: echo 'module a3 { header "a3.h" export * }' >> %t/module.modulemap
16 // RUN: echo 'module b3 { header "b3.h" export * }' >> %t/module.modulemap
17 // RUN: echo 'module a4 { header "a4.h" export * }' >> %t/module.modulemap
[all …]
Drebuild.m3 // Build Module and set its timestamp
4 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
5 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
6 // RUN: cp %t/Module.pcm %t/Module.pcm.saved
7 // RUN: wc -c %t/Module.pcm > %t/Module.size.saved
10 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash -…
11 // RUN: diff %t/Module.pcm %t/Module.pcm.saved
14 // Rebuild Module, reset its timestamp, and verify its size hasn't changed
15 // RUN: rm %t/Module.pcm
16 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
[all …]
DWerror.m5 // Initial module build (-Werror=header-guard)
6 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \
9 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
12 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \
14 // RUN: diff %t/Module.pcm %t-saved/Module.pcm
17 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \
20 // RUN: not diff %t/Module.pcm %t-saved/Module.pcm
21 // RUN: cp %t/Module.pcm %t-saved/Module.pcm
24 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \
27 // RUN: diff %t/Module.pcm %t-saved/Module.pcm
[all …]
/external/autotest/client/site_tests/security_ModuleLocking/
Dsecurity_ModuleLocking.py12 Handle examining the system for specific module loading capabilities.
44 def module_loaded(self, module): argument
46 Detect if the given module is already loaded in the kernel.
48 @param module: name of module to check
50 module = module.replace('-', '_')
51 match = "%s " % (module)
57 def rmmod(self, module): argument
59 Unload a module if it is already loaded in the kernel.
61 @param module: name of module to unload
63 if self.module_loaded(module):
[all …]
/external/clang/docs/
DModules.rst80module import behaves quite differently from the corresponding ``#include <stdio.h>``: when the co…
83 …``std.io`` module is only compiled once, and importing the module into a translation unit is a con…
85 * **Fragility**: Each module is parsed as a standalone entity, so it has a consistent preprocessor …
87module as a representation of that API. Because modules can only be built standalone, tools can re…
91 Many programming languages have a module or package system, and because of the variety of features …
97 … Thus, a struct declared in one module will still conflict with a struct of the same name declared…
99 … expose the full complexity of the language. Maintaining a stable binary module format across arch…
107 …bjective-C provides syntax for importing a module via an *@import declaration*, which imports the …
113module (which would contain, e.g., the entire C or C++ standard library) and make its API availabl…
127 …s automatically translate ``#include`` directives into the corresponding module import. For exampl…
[all …]
/external/syslinux/com32/include/sys/
Dmodule.h2 * syslinux/module.h
18 #include <i386/module.h>
20 #include <x86_64/module.h>
26 * The maximum length of the module file name (including path), stored
27 * in the struct module descriptor.
54 * A module may have multiple routines that need to be executed before
61 * struct elf_module - structure encapsulating a module loaded in memory.
63 * Each SYSLINUX ELF module must have an associated struct elf_module descriptor
65 * resources needed by the module itself or by other modules that depend on it.
74 * symbol information from the root COM32 module loaded by the SYSLINUX core.
[all …]
/external/syslinux/com32/lib/sys/module/
Delf_module.c17 #include <sys/module.h>
50 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()
[all …]
Dcommon.c14 #include <sys/module.h>
46 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()
[all …]
/external/clang/include/clang/Basic/
DModule.h1 //===--- Module.h - Describe a module ---------------------------*- C++ -*-===//
11 /// \brief Defines the clang::Module class, which describes a module in the
43 /// \brief Describes the name of a module.
46 /// \brief Describes a module or submodule.
47 class Module {
49 /// \brief The name of this module.
52 /// \brief The location of the module definition.
55 /// \brief The parent of this module. This will be NULL for the top-level
56 /// module.
57 Module *Parent;
[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')
64 imported_module = mojom.Module('import_module', 'import_namespace')
65 #TODO(azani): Init values in module.py.
[all …]
/external/guice/core/src/com/google/inject/spi/
DModuleSource.java21 import com.google.inject.Module;
28 * Associated to a {@link Module module}, provides the module class name, the parent module {@link
29 * ModuleSource source}, and the call stack that ends just before the module {@link
30 * Module#configure(Binder) configure(Binder)} method invocation.
35 * The class name of module that this {@link ModuleSource} associated to.
40 * The parent {@link ModuleSource module source}.
45 * The chunk of call stack that starts from the parent module {@link Module#configure(Binder)
46 * configure(Binder)} call and ends just before the module {@link Module#configure(Binder)
47 * configure(Binder)} method invocation. For a module without a parent module the chunk starts
54 * @param module the corresponding module
[all …]
/external/bison/m4/
Dgnulib-comp.m442 # Code from module alloca-opt:
43 # Code from module announce-gen:
44 # Code from module argmatch:
45 # Code from module assert:
46 # Code from module binary-io:
47 # Code from module bitrotate:
48 # Code from module c-ctype:
49 # Code from module c-strcase:
50 # Code from module c-strcaseeq:
51 # Code from module calloc-posix:
[all …]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
Ddata.py9 import module as mojom
11 # This module provides a mechanism to turn mojom Modules to dictionaries and
12 # back again. This can be used to persist a mojom Module created progromatically
102 def FixupExpression(module, value, scope, kind): argument
107 result = LookupValue(module.values, value[1], scope, kind)
161 """Used with 'import module' - clones the kind imported from the given
162 module's namespace. Only used with Structs, Unions, Interfaces and Enums."""
165 # |AddSharedProperty()| in module.py), including |imported_from|. We don't
172 def ImportFromData(module, data): argument
173 import_module = data['module']
[all …]
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
DModuleFactoryGeneratorTest.java59 return String.format(msg, "Provides", "Module"); in formatModuleErrorMessage()
83 "import dagger.Module;", in providesMethodAbstract()
86 "@Module", in providesMethodAbstract()
100 "import dagger.Module;", in providesMethodPrivate()
103 "@Module", in providesMethodPrivate()
119 "import dagger.Module;", in providesMethodReturnVoid()
122 "@Module", in providesMethodReturnVoid()
136 "import dagger.Module;", in providesMethodWithTypeParameter()
139 "@Module", in providesMethodWithTypeParameter()
157 "import dagger.Module;", in providesMethodSetValuesWildcard()
[all …]

12345678910>>...246