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

1 2 3

  /external/ImageMagick/MagickCore/
module.h 59 } ModuleInfo;
67 extern MagickExport const ModuleInfo
75 extern MagickExport ModuleInfo
module.c 104 static const ModuleInfo
105 *RegisterModule(const ModuleInfo *,ExceptionInfo *);
110 UnregisterModule(const ModuleInfo *,ExceptionInfo *);
129 % AcquireModuleInfo() allocates the ModuleInfo structure.
133 % ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
143 MagickExport ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
145 ModuleInfo
148 module_info=(ModuleInfo *) AcquireMagickMemory(sizeof(*module_info));
149 if (module_info == (ModuleInfo *) NULL)
206 % GetModuleInfo() returns a pointer to a ModuleInfo structure that matches th
    [all...]
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.h 54 friend bool ModuleInfoCallback(const ModuleInfo &module_info, void *context);
solaris_lwp.h 64 struct ModuleInfo {
78 typedef bool (*ModuleCallback)(const ModuleInfo &module_info, void *context);
  /external/v8/src/objects/
module-info.h 24 // ModuleInfo is to ModuleDescriptor what ScopeInfo is to Scope.
25 class ModuleInfo : public FixedArray {
27 DECLARE_CAST(ModuleInfo)
29 static Handle<ModuleInfo> New(Isolate* isolate, Zone* zone,
58 static Handle<ModuleInfoEntry> LookupRegularImport(Handle<ModuleInfo> info,
62 inline bool Equals(ModuleInfo* other) const {
87 DISALLOW_IMPLICIT_CONSTRUCTORS(ModuleInfo);
scope-info.cc 48 if (!ModuleInfo::cast(entry)->Equals(ModuleInfo::cast(other_entry))) {
276 Handle<ModuleInfo> module_info =
277 ModuleInfo::New(isolate, zone, scope->AsModuleScope()->module());
524 ModuleInfo* ScopeInfo::ModuleDescriptorInfo() {
526 return ModuleInfo::cast(get(ModuleInfoIndex()));
854 Handle<ModuleInfo> ModuleInfo::New(Isolate* isolate, Zone* zone,
901 Handle<ModuleInfo> result = isolate->factory()->NewModuleInfo();
910 int ModuleInfo::RegularExportCount() const
    [all...]
  /development/vndk/tools/definition-tool/tests/
test_module_info.py 11 from vndk_definition_tool import ModuleInfo
18 m = ModuleInfo.load_from_path_or_default(None)
24 m = ModuleInfo.load_from_path_or_default(json_path)
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
GlobalModuleIndex.h 74 struct ModuleInfo {
75 ModuleInfo() : File(), Size(), ModTime() { }
100 llvm::SmallVector<ModuleInfo, 16> Modules;
  /external/v8/src/ast/
modules.cc 119 ModuleInfo::kRegularExportLength * regular_exports_.size(), zone);
134 data[index + ModuleInfo::kRegularExportLocalNameOffset] =
136 data[index + ModuleInfo::kRegularExportCellIndexOffset] =
138 data[index + ModuleInfo::kRegularExportExportNamesOffset] = export_names;
139 index += ModuleInfo::kRegularExportLength;
165 Handle<ModuleInfo> module_info) {
modules.h 16 class ModuleInfo;
83 // requested. It also functions as an index into the ModuleInfo's array of
178 Handle<ModuleInfo> module_info);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
example.py 26 return ModuleInfo(ast.totuple(), basename)
106 class ModuleInfo(SuiteInfoBase, SuiteFuncInfo):
  /external/python/cpython2/Demo/parser/
example.py 26 return ModuleInfo(ast.totuple(), basename)
106 class ModuleInfo(SuiteInfoBase, SuiteFuncInfo):
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 305 struct ModuleInfo {
313 const ModuleInfo *l = (ModuleInfo *)pl, *r = (ModuleInfo *)pr;
328 InternalScopedBuffer<ModuleInfo> module_infos(num_modules);
334 qsort(module_infos.data(), num_modules, sizeof(ModuleInfo),
338 const ModuleInfo &mi = module_infos[i];
486 MODULEINFO mi;
  /external/guice/core/src/com/google/inject/spi/
Elements.java 148 private static class ModuleInfo {
153 private ModuleInfo(Binder binder, ModuleSource moduleSource, boolean skipScanning) {
162 private final Map<Module, ModuleInfo> modules;
287 for (Map.Entry<Module, ModuleInfo> entry : Maps.newLinkedHashMap(modules).entrySet()) {
289 ModuleInfo info = entry.getValue();
333 binder.modules.put(module, new ModuleInfo(binder, moduleSource, false));
338 modules.put(module, new ModuleInfo(binder, moduleSource, skipScanning));
  /external/ImageMagick/www/api/
module.php 59 <p>AcquireModuleInfo() allocates the ModuleInfo structure.</p>
64 ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
95 <p>GetModuleInfo() returns a pointer to a ModuleInfo structure that matches the specified tag. If tag is NULL, the head of the module list is returned. If no modules are loaded, or the requested module is not found, NULL is returned.</p>
100 ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception)
126 const ModuleInfo **GetModuleInfoList(const char *pattern,
347 ModuleInfo *RegisterModule(const ModuleInfo *module_info,
363 <dd>a pointer to the ModuleInfo structure to register. </dd>
460 MagickBooleanType UnregisterModule(const ModuleInfo *module_info,
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
template.py 306 ModuleInfo(module, None, self, filename, code, text)
391 ModuleInfo(module, path, self, filename, None, None)
402 ModuleInfo(module, None, self, filename, code, None)
540 ModuleInfo(module,
575 class ModuleInfo(object):
704 return ModuleInfo._modules[filename]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
build.py     [all...]

Completed in 956 milliseconds

1 2 3