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

1 2 3

  /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/clang/include/clang/Lex/
ModuleMap.h 1 //===--- ModuleMap.h - Describe the layout of modules -----------*- C++ -*-===//
64 /// \brief The top-level modules that are known.
65 llvm::StringMap<Module *> Modules;
126 /// \brief A directory for which framework modules can be inferred.
130 /// \brief Whether to infer modules from this directory.
133 /// \brief Whether the modules we infer are [system] modules.
137 /// inferred modules. Otherwise, nullptr.
140 /// \brief The names of modules that cannot be inferred within this
146 /// framework modules from within those directories
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 72 static std::list<claimed_file> Modules;
307 Modules.resize(Modules.size() + 1);
308 claimed_file &cf = Modules.back();
425 for (std::list<claimed_file>::iterator I = Modules.begin(),
426 E = Modules.end(); I != E; ++I) {
473 for (std::list<claimed_file>::iterator I = Modules.begin(),
474 E = Modules.end(); I != E; ++I) {
  /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?"
51 /// The global index is an aid for name lookup into modules, offering a central
57 /// imported, and can be queried to determine which modules the current
98 llvm::SmallVector<ModuleInfo, 16> Modules;
101 /// corresponding index into the \c Modules vector.
104 /// \brief The set of modules that have not yet been resolved.
155 /// \brief Retrieve the set of modules that have up-to-date indexes.
ModuleManager.h 11 // modules for the ASTReader.
30 /// \brief Manages the set of modules loaded by an AST reader.
36 /// \brief All loaded modules, indexed by name.
37 llvm::DenseMap<const FileEntry *, ModuleFile *> Modules;
52 /// Either the global index or the module manager may have modules that the
54 /// (in which case the module manager could have modules it does not) and
55 /// this particular translation unit might not have loaded all of the modules
108 /// \brief Forward iterator to traverse all loaded modules. This is reverse
111 /// \brief Forward iterator end-point to traverse all loaded modules
114 /// \brief Const forward iterator to traverse all loaded modules. This is
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 57 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.
41 = Modules.find(File);
42 if (Known == Modules.end())
77 ModuleFile *&ModuleEntry = Modules[Entry];
159 // Remove any references to the now-destroyed modules.
166 // Delete the modules and erase them from the various structures.
168 Modules.erase((*victim)->File);
186 // Remove the modules from the chain.
224 // Notify the global module index about all of the modules we've already
333 // behavior, we mark all of the reachable modules as having been visited
    [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 51 DumpModulesOnExit("dump-modules",
52 cl::desc("Dump IR from modules to stderr on shutdown"),
895 Modules.push_back(M);
919 ModuleVector Modules;
937 /// modules associated with the MCJITHelper to cross link functions
966 // Walk the vector of modules.
968 for (it = Modules.begin(), end = Modules.end();
983 ModuleVector::iterator begin = Modules.begin();
984 ModuleVector::iterator end = Modules.end()
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 80 ModuleMapTy Modules;
LLVMSymbolize.cpp 208 DeleteContainerSeconds(Modules);
368 ModuleMapTy::iterator I = Modules.find(ModuleName);
369 if (I != Modules.end())
388 Modules.insert(make_pair(ModuleName, (ModuleInfo *)nullptr));
394 Modules.insert(make_pair(ModuleName, Info));
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 80 Modules.push_back(M);
86 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
87 delete Modules[i];
130 for(SmallVectorImpl<Module *>::iterator I = Modules.begin(),
131 E = Modules.end(); I != E; ++I) {
134 Modules.erase(I);
143 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
144 if (Function *F = Modules[i]->getFunction(FnName))
347 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
348 runStaticConstructorsDestructors(Modules[i], isDtors)
    [all...]
  /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/lldb/include/lldb/Interpreter/
CommandCompletions.h 105 Modules (CommandInterpreter &interpreter,
  /external/neven/
Android.mk 126 $(TARGET_OUT)/usr/share/bmd/RFFspeed_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFspeed_501.bmd | $(ACP)
130 $(TARGET_OUT)/usr/share/bmd/RFFstd_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFstd_501.bmd | $(ACP)
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 102 /// \brief Abstract interface for implementation execution of LLVM modules,
126 /// Whether the JIT should verify IR modules during compilation.
132 /// The list of Modules that we are JIT'ing from. We use a SmallVector to
134 SmallVector<Module*, 1> Modules;
208 /// addModule - Add a Module to the list of modules that we can JIT from.
212 Modules.push_back(M);
243 /// removeModule - Remove a Module from the list of modules. Returns true if
247 /// FindFunctionNamed - Search all of the active modules to find the one that
699 /// IR modules during compilation.
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 667 ModuleVector Modules;
682 /// modules associated with the MCJITHelper to cross link functions
721 ModuleVector::iterator begin = Modules.begin();
722 ModuleVector::iterator end = Modules.end();
736 ErrorF("redefinition of function across modules");
760 Modules.push_back(M);
844 ModuleVector::iterator begin = Modules.begin();
845 ModuleVector::iterator end = Modules.end();
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar 
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 182 if (Modules.empty()) {
183 assert(!jitstate && "jitstate should be NULL if Modules vector is empty!");
216 if (!jitstate && !Modules.empty()) {
217 jitstate = new JITState(Modules[0]);
  /external/clang/lib/Frontend/
FrontendAction.cpp 360 // If modules are enabled, create the module manager before creating
363 if (CI.getLangOpts().Modules)
371 assert((!CI.getLangOpts().Modules || CI.getModuleManager()) &&
372 "modules enabled but created an external source that "
373 "doesn't support modules");
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 

Completed in 1078 milliseconds

1 2 3