HomeSort by relevance Sort by last modified time
    Searched refs:Modules (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/guice/core/test/com/google/inject/util/
NoopOverrideTest.java 29 Module overridden = Modules.override(module).with(Modules.EMPTY_MODULE);
OverrideModuleTest.java 72 Injector injector = createInjector(Modules.override(newModule("A")).with(newModule("B")));
77 Module module = Modules.override(newModule("A"), newModule(1), newModule(0.5f))
87 Injector injector = createInjector(Modules.override(EMPTY_MODULE).with(newModule("B")));
104 Injector injector = createInjector(Modules.override(original).with(replacements));
116 Injector injector = createInjector(Modules.override(original).with(EMPTY_MODULE));
131 Injector injector = createInjector(Modules.override(original).with(replacements));
150 Injector injector = createInjector(Modules.override(original).with(replacements));
171 Module overrides = Modules.override(original).with(replacements1);
180 Injector injector = createInjector(Modules.override(overrides).with(replacements2));
200 Module module = Modules.override(original).with(replacements)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/config/
Makefile 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/config/
Makefile 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Makefile 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Makefile 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.
    [all...]
  /external/guice/core/test/com/google/inject/
ModulesTest.java 21 import com.google.inject.util.Modules;
33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3));
41 Iterable<Module> modules = Arrays.asList(newModule(1), newModule(2L), newModule((short) 3)); local
42 Injector injector = Guice.createInjector(Modules.combine(modules));
49 * The module returned by Modules.combine shouldn't show up in binder sources.
54 final Module combined1 = Modules.combine(m1, m2);
60 final Module combined2 = Modules.combine(skipSourcesModule);
GenericInjectionTest.java 21 import com.google.inject.util.Modules;
84 Modules.EMPTY_MODULE);
  /external/llvm/lib/Support/
Signals.cpp 53 const char **Modules, intptr_t *Offsets,
89 std::vector<const char *> Modules(Depth, nullptr);
91 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(),
104 if (Modules[i])
105 Input << Modules[i] << " " << (void*)Offsets[i] << "\n";
138 if (!Modules[i]) {
159 OS << "(" << Modules[i] << '+' << format_hex(Offsets[i], 0) << ")";
  /external/chromium-trace/catapult/firefighter/bin/
packaging.py 20 def Modules(root_dir):
62 for module in Modules(root_dir):
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 11 // containing all of the identifiers known to the various modules within a given
13 // queries such as "do any modules know about this identifier?"
53 /// The global index is an aid for name lookup into modules, offering a central
59 /// imported, and can be queried to determine which modules the current
100 llvm::SmallVector<ModuleInfo, 16> Modules;
103 /// corresponding index into the \c Modules vector.
106 /// \brief The set of modules that have not yet been resolved.
157 /// \brief Retrieve the set of modules that have up-to-date indexes.
198 /// creating modules.
ModuleManager.h 11 // modules for the ASTReader.
31 /// \brief Manages the set of modules loaded by an AST reader.
46 /// \brief All loaded modules, indexed by name.
47 llvm::DenseMap<const FileEntry *, ModuleFile *> Modules;
66 /// Either the global index or the module manager may have modules that the
68 /// (in which case the module manager could have modules it does not) and
69 /// this particular translation unit might not have loaded all of the modules
123 /// \brief Forward iterator to traverse all loaded modules.
125 /// \brief Forward iterator end-point to traverse all loaded modules
128 /// \brief Const forward iterator to traverse all loaded modules
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 58 static const char * const IndexFileName = "modules.idx";
182 if (ID == Modules.size())
183 Modules.push_back(ModuleInfo());
185 Modules.resize(ID + 1);
189 Modules[ID].Size = Record[Idx++];
190 Modules[ID].ModTime = Record[Idx++];
194 Modules[ID].FileName.assign(Record.begin() + Idx,
200 Modules[ID].Dependencies.insert(Modules[ID].Dependencies.end(),
211 StringRef ModuleName = llvm::sys::path::stem(Modules[ID].FileName)
    [all...]
ModuleManager.cpp 11 // modules for the ASTReader.
42 = Modules.find(File);
43 if (Known == Modules.end())
88 ModuleFile *&ModuleEntry = Modules[Entry];
161 Modules.erase(Entry);
206 // Remove any references to the now-destroyed modules.
213 // Remove the modules from the PCH chain.
222 // Delete the modules and erase them from the various structures.
224 Modules.erase((*victim)->File);
242 // Remove the modules from the chain
    [all...]
  /external/clang/include/clang/Lex/
ModuleMap.h 1 //===--- ModuleMap.h - Describe the layout of modules -----------*- C++ -*-===//
82 /// \brief The top-level modules that are known.
83 llvm::StringMap<Module *> Modules;
85 /// \brief The number of modules we have created in total.
172 /// \brief A directory for which framework modules can be inferred.
176 /// \brief Whether to infer modules from this directory.
179 /// \brief The attributes to use for inferred modules.
183 /// inferred modules. Otherwise, nullptr.
186 /// \brief The names of modules that cannot be inferred within this
192 /// framework modules from within those directories
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 670 ModuleVector Modules;
685 /// modules associated with the MCJITHelper to cross link functions
714 // Walk the vector of modules.
716 for (it = Modules.begin(), end = Modules.end();
731 ModuleVector::iterator begin = Modules.begin();
732 ModuleVector::iterator end = Modules.end();
746 ErrorF("redefinition of function across modules");
770 Modules.push_back(M);
777 ModuleVector::iterator begin = Modules.begin()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 758 ModuleVector Modules;
774 /// modules associated with the MCJITHelper to cross link functions
803 // Walk the vector of modules.
805 for (it = Modules.begin(), end = Modules.end();
820 ModuleVector::iterator begin = Modules.begin();
821 ModuleVector::iterator end = Modules.end();
835 ErrorF("redefinition of function across modules");
859 Modules.push_back(M);
866 ModuleVector::iterator begin = Modules.begin()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 50 DumpModulesOnExit("dump-modules",
51 cl::desc("Dump IR from modules to stderr on shutdown"),
800 Modules.push_back(M);
824 ModuleVector Modules;
842 /// modules associated with the MCJITHelper to cross link functions
871 // Walk the vector of modules.
873 for (it = Modules.begin(), end = Modules.end();
888 ModuleVector::iterator begin = Modules.begin();
889 ModuleVector::iterator end = Modules.end()
    [all...]
  /external/llvm/include/llvm/DebugInfo/Symbolize/
Symbolize.h 85 std::map<std::string, ErrorOr<std::unique_ptr<SymbolizableModule>>> Modules;
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 78 Modules.push_back(std::move(M));
144 for (auto I = Modules.begin(), E = Modules.end(); I != E; ++I) {
148 Modules.erase(I);
157 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
158 Function *F = Modules[i]->getFunction(FnName);
166 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
167 GlobalVariable *GV = Modules[i]->getGlobalVariable(Name,AllowInternal);
322 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
323 if (GlobalValue *GV = Modules[i]->getNamedValue(Name)
    [all...]
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java 33 import com.google.inject.util.Modules;
64 return Modules.EMPTY_MODULE;
  /hardware/intel/common/utils/ituxd/
Android.mk 17 # including x86, the emulator, and the SDK. Modules must be uniquely
  /hardware/intel/common/utils/ituxd/jni/
Android.mk 17 # including x86, the emulator, and the SDK. Modules must be uniquely
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 116 Modules.clear();
336 const auto &I = Modules.find(ModuleName);
337 if (I != Modules.end()) {
357 Modules.insert(std::make_pair(ModuleName, EC));
379 Modules.insert(std::make_pair(ModuleName, std::move(InfoOrErr)));
  /external/llvm/tools/gold/
gold-plugin.cpp 111 static std::list<claimed_file> Modules;
427 Modules.resize(Modules.size() + 1);
428 claimed_file &cf = Modules.back();
718 // We can only check for address uses after we merge the modules. The
857 if (Modules.empty())
861 // function index/summary and emit it. We don't need to parse the modules
866 for (claimed_file &F : Modules) {
900 for (claimed_file &F : Modules) {

Completed in 396 milliseconds

1 2 3 4