Home
last modified time | relevance | path

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

12345678910>>...79

/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/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/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/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
Dparse_html_deps_unittest.py16 module = parser.Parse('')
17 self.assertEquals([], module.scripts_external)
18 self.assertEquals([], module.inline_scripts)
19 self.assertEquals([], module.stylesheets)
20 self.assertEquals([], module.imports)
24 module = parser.Parse(None)
25 self.assertEquals([], module.scripts_external)
26 self.assertEquals([], module.inline_scripts)
27 self.assertEquals([], module.stylesheets)
28 self.assertEquals([], module.imports)
[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 {
48 module * { export * }
51 module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
52 module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
55 // logically form a single module.
[all …]
/external/v8/test/mjsunit/harmony/
Dmodule-parsing.js32 module A {}
34 module A1 = A
35 module A2 = A;
36 module A3 = A2
38 module B {
50 module C0 {}
52 export module C {
54 export module D { export let x }
67 export module M1 {}
68 export module M2 = C.D
[all …]
Dmodule-resolution.js39 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 {
90 module A1 {
[all …]
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
Dconfig.py77 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)
86 def __getitem__(self, module): argument
101 if module not in self.loaded:
103 values = webapp2.import_string(module + '.default_config',
106 self.setdefault(module, values)
108 self.loaded.append(module)
[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/lldb/www/python_reference/
Dapi-objects.txt1 _lldb' _lldb%27-module.html
2 _lldb'.eTypeClassVector _lldb%27-module.html#eTypeClassVector
3 _lldb'.SBProcess_Continue _lldb%27-module.html#SBProcess_Continue
4 _lldb'.SBProcess_SetSelectedThreadByIndexID _lldb%27-module.html#SBProcess_SetSelectedThreadByIndex…
5 _lldb'.eArgTypeScriptedCommandSynchronicity _lldb%27-module.html#eArgTypeScriptedCommandSynchronici…
6 _lldb'.SBEvent_GetDescription _lldb%27-module.html#SBEvent_GetDescription
7 _lldb'.SBTypeNameSpecifier_GetName _lldb%27-module.html#SBTypeNameSpecifier_GetName
8 _lldb'.ePermissionsReadable _lldb%27-module.html#ePermissionsReadable
9 _lldb'.SBFrame_Clear _lldb%27-module.html#SBFrame_Clear
10 _lldb'.SBData_GetUnsignedInt64 _lldb%27-module.html#SBData_GetUnsignedInt64
[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 {
39 explicit module mmx {
44 explicit module f16c {
[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.
34 module Target {
[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()
113 AF_Module module = (AF_Module)ft_module; in af_property_set() local
134 module->fallback_style = ss; in af_property_set()
153 module->default_script = *default_script; in af_property_set()
163 error = af_property_get_face_globals( prop->face, &globals, module ); in af_property_set()
175 module->warping = *warping; in af_property_set()
200 module->darken_params[0] = x1; in af_property_set()
201 module->darken_params[1] = y1; in af_property_set()
202 module->darken_params[2] = x2; in af_property_set()
[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/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/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/clang/test/Modules/Inputs/macro-reexport/
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 …]
/external/google-breakpad/src/processor/
Dsource_line_resolver_base.cc151 bool SourceLineResolverBase::LoadModule(const CodeModule *module, in LoadModule() argument
153 if (module == NULL) in LoadModule()
157 if (modules_->find(module->code_file()) != modules_->end()) { in LoadModule()
158 BPLOG(INFO) << "Symbols for module " << module->code_file() in LoadModule()
163 BPLOG(INFO) << "Loading symbols for module " << module->code_file() in LoadModule()
173 bool load_result = LoadModuleUsingMemoryBuffer(module, memory_buffer, in LoadModule()
178 memory_buffers_->insert(make_pair(module->code_file(), memory_buffer)); in LoadModule()
187 const CodeModule *module, const string &map_buffer) { in LoadModuleUsingMapBuffer() argument
188 if (module == NULL) in LoadModuleUsingMapBuffer()
192 if (modules_->find(module->code_file()) != modules_->end()) { in LoadModuleUsingMapBuffer()
[all …]
Dmodule_serializer.cc51 size_t ModuleSerializer::SizeOf(const BasicSourceLineResolver::Module &module) { in SizeOf() argument
55 total_size_alloc_ += SimpleSerializer<bool>::SizeOf(module.is_corrupt_); in SizeOf()
59 map_sizes_[map_index++] = files_serializer_.SizeOf(module.files_); in SizeOf()
60 map_sizes_[map_index++] = functions_serializer_.SizeOf(module.functions_); in SizeOf()
61 map_sizes_[map_index++] = pubsym_serializer_.SizeOf(module.public_symbols_); in SizeOf()
64 wfi_serializer_.SizeOf(&(module.windows_frame_info_[i])); in SizeOf()
66 module.cfi_initial_rules_); in SizeOf()
68 module.cfi_delta_rules_); in SizeOf()
83 char *ModuleSerializer::Write(const BasicSourceLineResolver::Module &module, in Write() argument
86 dest = SimpleSerializer<bool>::Write(module.is_corrupt_, dest); in Write()
[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/libxml2/
Dxmlmodule.c44 xmlModuleErrMemory(xmlModulePtr module, const char *extra) in xmlModuleErrMemory() argument
48 if (module != NULL) { in xmlModuleErrMemory()
49 name = (const char *) module->name; in xmlModuleErrMemory()
75 xmlModulePtr module; in xmlModuleOpen() local
77 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule)); in xmlModuleOpen()
78 if (module == NULL) { in xmlModuleOpen()
83 memset(module, 0, sizeof(xmlModule)); in xmlModuleOpen()
85 module->handle = xmlModulePlatformOpen(name); in xmlModuleOpen()
87 if (module->handle == NULL) { in xmlModuleOpen()
88 xmlFree(module); in xmlModuleOpen()
[all …]
/external/clang/test/Modules/Inputs/declare-use/
Dmodule.map1 module XA {
5 module XB {
6 module B { header "b.h" }
9 module XC {
15 module XD {
21 module XE {
28 module XF {
35 module XG {
45 module XH {
46 module H { header "h.h" }
[all …]
/external/clang/test/Modules/Inputs/macro-hiding/
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 …]
/external/llvm/test/CodeGen/X86/
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 …]
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/
Dcompiler.cpp35 read_header(const std::string &header, module &m) { in read_header()
42 module::size_t offset; in read_header()
43 compat::vector<module::argument> args; in read_header()
53 args.push_back({ module::argument::scalar, 4 }); in read_header()
55 args.push_back({ module::argument::global, 4 }); in read_header()
57 args.push_back({ module::argument::local, 4 }); in read_header()
59 args.push_back({ module::argument::constant, 4 }); in read_header()
61 args.push_back({ module::argument::image2d_rd, 4 }); in read_header()
63 args.push_back({ module::argument::image2d_wr, 4 }); in read_header()
65 args.push_back({ module::argument::image3d_rd, 4 }); in read_header()
[all …]

12345678910>>...79