Home
last modified time | relevance | path

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

12345678910>>...274

/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/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/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/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/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.
68 /// \brief Language options used to parse the module map itself.
73 // The module that we are building; related to \c LangOptions::CurrentModule.
74 Module *CompilingModule;
77 // The module that the .cc source file is associated with.
[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/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/libcxx/include/
Dmodule.modulemap1 module std [system] {
6 module algorithm {
11 module array {
16 module atomic {
21 module bitset {
28 module ccomplex {
33 module cctype {
37 module cerrno {
57 module cfenv {
66 module cfloat {
[all …]
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
Dconfig.py8 This module is deprecated. See :class:`webapp2.WSGIApplication.config`.
32 """A simple configuration dictionary keyed by module name. This is a
45 my_config['my.module'] = {
58 foo = self.app.config['my.module']['foo']
62 #: Loaded module configurations.
77 for module, config in values.iteritems():
78 self.update(module, config)
82 for module, config in defaults.iteritems():
83 self.setdefault(module, config)
84 self.loaded.append(module)
[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
45 /// \brief Describes the name of a module.
48 /// \brief Describes a module or submodule.
49 class Module {
51 /// \brief The name of this module.
54 /// \brief The location of the module definition.
57 /// \brief The parent of this module. This will be NULL for the top-level
58 /// module.
59 Module *Parent;
[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/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/include/clang/
Dmodule.modulemap1 module Clang_Analysis {
7 module * { export * }
10 module Clang_AST {
18 module * { export * }
21 module Clang_ASTMatchers { requires cplusplus umbrella "ASTMatchers" module * { export * } }
23 module Clang_Basic {
49 module * { export * }
52 module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
53 module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
56 // logically form a single module.
[all …]
/external/llvm/include/llvm/
Dmodule.modulemap1 module LLVM_Analysis {
4 module * { export * }
13 module LLVM_AsmParser { requires cplusplus umbrella "AsmParser" module * { export * } }
15 // A module covering CodeGen/ and Target/. These are intertwined
16 // and codependent, and thus notionally form a single module.
17 module LLVM_Backend {
20 module CodeGen {
22 module * { export * }
28 // translation unit (or none) and aren't part of this module.
37 module Target {
[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/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 …]
/external/google-breakpad/src/common/
Dmodule_unittest.cc32 // module_unittest.cc: Unit tests for google_breakpad::Module.
44 #include "common/module.h"
47 using google_breakpad::Module;
52 static Module::Function *generate_duplicate_function(const string &name) { in generate_duplicate_function()
53 const Module::Address DUP_ADDRESS = 0xd35402aac7a7ad5cLL; in generate_duplicate_function()
54 const Module::Address DUP_SIZE = 0x200b26e605f99071LL; in generate_duplicate_function()
55 const Module::Address DUP_PARAMETER_SIZE = 0xf14ac4fed48c4a99LL; in generate_duplicate_function()
57 Module::Function *function = new Module::Function(name, DUP_ADDRESS); in generate_duplicate_function()
70 Module m(MODULE_NAME, MODULE_OS, MODULE_ARCH, MODULE_ID); in TEST()
73 EXPECT_STREQ("MODULE os-name architecture id-string name with spaces\n", in TEST()
[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/selinux/libsepol/tests/
Dtest-linker-types.c41 * - type a in base, b in module
42 * - type a in base optional, b in module
43 * - type a in base, b in module optional
44 * - type a in base optional, b in module optional
47 * - attr a in base, b in module
48 * - attr a in base optional, b in module
49 * - attr a in base, b in module optional
50 * - attr a in base optional, b in module optional
51 * - attr a declared in base, added to in module
52 * - attr a declared in base, added to in module optional
[all …]
/external/clang/lib/Headers/
Dmodule.modulemap1 module _Builtin_intrinsics [system] [extern_c] {
2 explicit module altivec {
7 explicit module arm {
10 explicit module acle {
15 explicit module neon {
22 explicit module intel {
29 explicit module mm_malloc {
34 explicit module cpuid {
38 explicit module mmx {
42 explicit module f16c {
[all …]
/external/v8/test/mjsunit/harmony/
Dmodule-resolution.js30 // Test basic module interface inference.
39 export module B = A.B
41 export module A {
44 export module B {
45 module BB = B
70 module C {
72 export module D = B
78 module D {
82 module M {}
89 export module Imports {
[all …]

12345678910>>...274