HomeSort by relevance Sort by last modified time
    Searched defs:Module (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Modules/Inputs/ModuleMapLocations/Both_F.framework/Headers/
a.h 1 @import Module; // Don't cause redefinition error.
  /external/dagger2/core/src/main/java/dagger/
Module.java 28 public @interface Module {
30 * Additional {@code @Module}-annotated classes from which this module is
  /external/kmod/libkmod/python/kmod/
module.pxd 21 cdef class Module (object):
22 cdef _libkmod_h.kmod_module *module
  /external/webrtc/webrtc/modules/include/
module.h 20 class Module {
22 // Returns the number of milliseconds until the module wants a worker
37 // This method is called when the module is attached to a *running* process
55 // the thread that registers/deregisters the module or calls Start/Stop.
59 virtual ~Module() {}
62 // Reference counted version of the Module interface.
63 class RefCountedModule : public Module {
  /external/guice/core/src/com/google/inject/
Module.java 20 * A module contributes configuration information, typically interface
23 * {@code Module}s and some bootstrapping code.
25 * <p>Your Module classes can use a more streamlined syntax by extending
33 public interface Module {
36 * Contributes bindings and other configurations for this module to {@code binder}.
39 * {@link Binder#install(Module)}, which ensures that {@link Provides provider methods} are
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
module.py 8 class Module(object):
  /frameworks/base/tools/bit/
make.h 26 struct Module
46 map<string,Module>* modules, bool quiet);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
bgenModule.py 4 class Module(GeneratorGroup):
30 OutHeader1("Module " + self.name)
62 OutHeader1("End module " + self.name)
88 m = Module("spam", "", "#include <stdio.h>")
  /external/google-breakpad/src/processor/
basic_source_line_resolver_types.h 74 class BasicSourceLineResolver::Module : public SourceLineResolverBase::Module {
76 explicit Module(const string &name) : name_(name), is_corrupt_(false) { }
77 virtual ~Module() { }
156 // DWARF CFI stack walking data. The Module stores the initial rule sets
source_line_resolver_base_types.h 34 // In addition, Module is defined as a pure abstract class to be implemented by
118 class SourceLineResolverBase::Module {
120 virtual ~Module() { };
fast_source_line_resolver_types.h 113 class FastSourceLineResolver::Module: public SourceLineResolverBase::Module {
115 explicit Module(const string &name) : name_(name), is_corrupt_(false) { }
116 virtual ~Module() { }
143 // Number of serialized map components of Module.
164 // DWARF CFI stack walking data. The Module stores the initial rule sets
synth_minidump.cc 248 Module::Module(const Dump &dump,
280 const MDVSFixedFileInfo Module::stock_version_info = {
370 Dump &Dump::Add(Module *module) {
371 module_list_.Add(module);
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 1 //===- Module.cpp ---------------------------------------------------------===//
9 #include "mcld/Module.h"
21 static GCFactory<Module::AliasList, MCLD_SECTIONS_PER_INPUT>
25 // Module
27 Module::Module(LinkerScript& pScript) : m_Script(pScript), m_NamePool(1024) {
30 Module::Module(const std::string& pName, LinkerScript& pScript)
34 Module::~Module() {
    [all...]
  /external/clang/include/clang/Lex/
ModuleLoader.h 1 //===--- ModuleLoader.h - Module Loader Interface ---------------*- C++ -*-===//
17 #include "clang/Basic/Module.h"
26 class Module;
29 /// module or submodule, e.g., std.vector.
32 /// \brief Describes the result of attempting to load a module.
34 llvm::PointerIntPair<Module *, 1, bool> Storage;
39 ModuleLoadResult(Module *module, bool missingExpected)
40 : Storage(module, missingExpected) { }
42 operator Module *() const { return Storage.getPointer();
    [all...]
  /external/deqp/external/vulkancts/scripts/
build_spirv_binaries.py 37 class Module:
43 VULKAN_MODULE = Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk")
62 def execBuildPrograms (buildCfg, generator, module, dstPath):
64 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
104 module = VULKAN_MODULE variable
111 execBuildPrograms(buildCfg, generator, module, args.dstPath)
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 38 // Return true if this is a 32-bit x86 PE COFF module.
41 // Returns the preferred base of the module, i.e. where the loader would place
60 object::ObjectFile *Module;
  /external/v8/tools/profviz/
worker.js 152 var arrc = Module["intArrayFromString"](plot_script, true);
157 function() { Module.run([input_file_name]); });
163 var Module = {
  /external/google-breakpad/src/common/
module.cc 32 // module.cc: Implement google_breakpad::Module. See module.h.
34 #include "common/module.h"
51 Module::Module(const string &name, const string &os,
59 Module::~Module() {
74 void Module::SetLoadAddress(Address address) {
78 void Module::AddFunction(Function *function)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
bases.py 1 """Provides the Module and Type base classes that user code inherits from."""
3 __all__ = ["Module", "Type", "member"]
18 # The Module and Type classes are implemented using metaclasses,
43 """Provides methods for Module class."""
72 filename = self.__name__ + "module.c"
104 class Module:
  /external/deqp/scripts/
build_caselists.py 34 class Module:
41 Module("dE-IT", "internal", "de-internal-tests"),
42 Module("dEQP-EGL", "egl", "deqp-egl"),
43 Module("dEQP-GLES2", "gles2", "deqp-gles2"),
44 Module("dEQP-GLES3", "gles3", "deqp-gles3"),
45 Module("dEQP-GLES31", "gles31", "deqp-gles31"),
46 Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk"),
53 for module in MODULES:
54 if module.name == name:
55 return module
    [all...]
  /external/ltp/android/tools/
check_success_build.py 23 class Module(object):
24 """class used to represent a ltp module
27 _lines: list of string, lines of module text
28 _header: list of string, first line of module splited by :=
29 _type: string, type of module
30 _path: string, path of module
31 _output_dir: string, output directory of module
43 """parse a module text
46 module_text: string, one block of ltp module build rule.
50 None if the input text is not a ltp module
    [all...]
  /build/blueprint/parser/
ast.go 30 // Definition is an Assignment or a Module at the top level of a Blueprints file
58 // A Module is a module definition at the top level of a Blueprints file
59 type Module struct {
65 func (m *Module) Copy() *Module {
74 func (m *Module) String() string {
84 func (m *Module) definitionTag() {}
86 func (m *Module) Pos() scanner.Position { return m.TypePos }
87 func (m *Module) End() scanner.Position { return m.Map.End()
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/
LinuxLoaderHelper.c 37 CONST CHAR8 *Token, *Module;
55 Key = GetPerformanceMeasurement (Key, (CONST VOID **)&Handle, &Token, &Module, &Start, &Stop);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 138 class Module
139 # Returns the module's container module.
141 # module Example
148 # See also Module#basename.
158 module Kernel
  /external/clang/include/clang/Frontend/
FrontendActions.h 19 class Module;
94 clang::Module *Module;
136 /// \brief Dump information about the given module file, to be used for

Completed in 919 milliseconds

1 2 3 4 5 6 7 8