Home
last modified time | relevance | path

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

12345678910>>...42

/minix3/external/bsd/llvm/dist/clang/test/ARCMT/Inputs/
H A 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 …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/
H A 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 …]
/minix3/external/bsd/libc++/dist/libcxx/include/
H A 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 …]
/minix3/external/bsd/llvm/dist/clang/include/clang/
H A Dmodule.modulemap1 module Clang_Analysis {
8 module * { export * }
11 module Clang_AST {
20 module * { export * }
23 module Clang_ASTMatchers { requires cplusplus umbrella "ASTMatchers" module * { export * } }
25 module Clang_Basic {
57 module * { export * }
60 module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
61 module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
64 // logically form a single module.
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Headers/
H A 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 {
39 explicit module mmx {
44 explicit module f16c {
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/
H A Dmodule.modulemap1 module LLVM_Analysis {
4 module * { export * }
8 module LLVM_AsmParser { requires cplusplus umbrella "AsmParser" module * { export * } }
10 // A module covering CodeGen/ and Target/. These are intertwined
11 // and codependent, and thus notionally form a single module.
12 module LLVM_Backend {
15 module CodeGen {
17 module * { export * }
23 // translation unit (or none) and aren't part of this module.
29 module Target {
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/submodules/
H A 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 …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/macro-reexport/
H A Dmodule.modulemap1 module b {
2 module b2 { header "b2.h" export * }
3 module b1 { header "b1.h" export * }
5 module a {
6 module a1 { header "a1.h" export * }
7 module a2 { header "a2.h" export * }
9 module c {
10 module c1 { header "c1.h" export * }
12 module d {
13 module d1 { header "d1.h" export * }
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/macro-hiding/
H A Dmodule.modulemap1 module a {
2 module a1 { header "a1.h" export * }
3 module a2 { header "a2.h" export * }
5 module b {
6 module b1 { header "b1.h" export * }
7 module b2 { header "b2.h" export * }
9 module c {
10 module c1 { header "c1.h" export * }
12 module d {
13 module d1 { header "d1.h" export * }
[all …]
/minix3/external/bsd/llvm/dist/llvm/utils/crosstool/
H A Dcreate-snapshots.sh23 local module=$1
24 local log="${module}.log"
25 echo "Running: svn export -r ${REV} ${module}; log in ${log}"
26 svn -q export -r ${REV} ${LLVM_PROJECT_SVN}/${module}/trunk \
27 ${module} > ${log} 2>&1
30 local tarball="${module}-${REV}.tar.bz2"
32 tar cjf ${tarball} ${module}
34 echo "Cleaning up '${module}'"
35 rm -rf ${module} ${log}
38 for module in "llvm" "llvm-gcc-4.2"; do
[all …]
/minix3/crypto/external/bsd/netpgp/dist/bindings/swig/
H A Dswigit38 module=$2
58 case "$module" in
65 cat << EOF > ${module}${lang}.i
66 %module ${module}${lang}
72 %include ${module}.h
75 cp ../../include/${module}.h .
77 swig ${swigflags} -${lang} ${module}${lang}.i
85 LIB=${module}${lang}
86 SRCS=${module}${lang}_wrap.c
92 LDADD+=-l${module}
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A D2010-09-16-asmcrash.ll4 module asm ".weak sem_close"
5 module asm ".equ sem_close, _sem_close"
6 module asm ".weak sem_destroy"
7 module asm ".equ sem_destroy, _sem_destroy"
8 module asm ".weak sem_getvalue"
9 module asm ".equ sem_getvalue, _sem_getvalue"
10 module asm ".weak sem_init"
11 module asm ".equ sem_init, _sem_init"
12 module asm ".weak sem_open"
13 module asm ".equ sem_open, _sem_open"
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A Dmodule.map1 module A {
2 module One { header "A_one.h" }
3 module Two { header "A_two.h" }
6 module B {
7 module One { header "B_one.h" }
8 module Two { header "B_two.h" }
11 module C {
12 module One {
16 module Two {
/minix3/external/bsd/llvm/dist/llvm/test/MC/Mips/
H A Dmips-abi-bad.s3 # Error checking for malformed .module directives (and .set fp=...).
5 .module fp=3
7 # CHECK-NEXT: .module fp=3
16 .module
17 # CHECK: :[[@LINE-1]]:12: error: expected .module option identifier
18 # CHECK-NEXT: .module
21 .module 34
22 # CHECK: :[[@LINE-1]]:13: error: expected .module option identifier
23 # CHECK-NEXT: .module 34
27 .module fp=32
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/declare-use/
H A Dmodule.map1 module XA {
5 module XB {
9 module XC {
15 module XD {
21 module XE {
28 module XF {
35 module XG {
44 module XH {
52 module XJ {
56 module XK {
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/
H A DRmodule-build.m6 // RUN: echo 'module A { header "A.h" }' > %t/module.modulemap
7 // RUN: echo 'module B { header "B.h" }' >> %t/module.modulemap
8 // RUN: echo 'module C { header "C.h" }' >> %t/module.modulemap
13 @import A; // expected-remark{{building module 'A' as}} expected-remark {{finished building module
14 @import B; // expected-remark{{building module 'B' as}} expected-remark {{finished building module
35 // CHECK-NOT: building module 'A'
36 // CHECK: building module 'B'
37 // CHECK: building module 'C'
38 // CHECK: finished building module 'C'
39 // CHECK: finished building module 'B'
[all …]
H A Dno-stale-modtime.m1 // Ensure that when rebuilding a module we don't save its old modtime when
11 // RUN: echo 'module b { header "b.h" } module l { header "l.h" }' > %t/module.map
12 // RUN: echo 'module r { header "r.h" } module t { header "t.h" }' >> %t/module.map
14 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
17 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
22 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
25 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
28 // REBUILD-ALL: building module 'b'
29 // REBUILD-ALL: building module 'l'
30 // REBUILD-ALL: building module 't'
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/Verifier/
H A Dmodule-flags-1.ll3 ; Check that module flags are structurally correct.
5 ; CHECK: incorrect number of operands in module flag
8 ; CHECK: invalid behavior operand in module flag (expected constant integer)
11 ; CHECK: invalid behavior operand in module flag (unexpected constant)
14 ; CHECK: invalid ID operand in module flag (expected metadata string)
17 ; CHECK: invalid value for 'require' module flag (expected metadata pair)
20 ; CHECK: invalid value for 'require' module flag (expected metadata pair)
23 ; CHECK: invalid value for 'require' module flag (first value operand should be a string)
27 ; Check that module flags only have unique IDs.
29 ; CHECK: module flag identifiers must be unique (or of 'require' type)
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/string_names/
H A Dmodule.map1 module "my/module-a" {
3 use "my/module-c"
5 module "Sub" {
10 module "my/module-b" {
14 module "my/module-c" {
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/pr19692/
H A Dmodule.map1 module cstd { module stdint { header "stdint.h" } }
2 module LLVMSupport { module Blah { header "Blah.h" export * } module AIX { header "AIX.h" } }
3 module LLVMTarget { module Blah { header "TBlah.h" export * } module Foo { header "TFoo.h" } }
/minix3/external/bsd/llvm/dist/clang/docs/
H A 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 …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/malformed/
H A Dmodule.map1 module malformed_a {
2 module a1 { header "a1.h" }
3 module a2 { header "a2.h" }
5 module malformed_b {
6 module b1 { header "b1.h" }
7 module b2 { header "b2.h" }
9 module c { header "c.h" }
/minix3/crypto/external/bsd/openssl/dist/crypto/objects/
H A Dobjects.pl35 $module = $1."-";
36 $module =~ s/\./_/g;
37 $module =~ s/-/_/g;
40 { $module = ""; }
45 $Cname = $module.$1;
75 if ($Cname ne "" && defined($ln{$module.$Cname}))
76 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.…
82 if ($Cname ne "" && defined($sn{$module.$Cname}))
83 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.…
91 if ($Cname ne "" && defined($ln{$module.$Cname}))
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/System/usr/include/
H A Dmodule.map1 module cstd [system] {
3 module float_constants {
8 module stdio {
13 module stdbool {
18 module stdint {
23 module other_constants {
24 explicit module dbl_max {
29 module uses_other_constants {
/minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/cxx-lookup/
H A Dmodule.modulemap1 module A { header "a.h" export * }
2 module B { header "b.h" export * }
3 module C {
4 module C2 { header "c2.h" export * }
5 module C1 { header "c1.h" export * }
7 module X { header "x.h" export * }
8 module Y { header "y.h" export * }

12345678910>>...42