HomeSort by relevance Sort by last modified time
    Searched refs:importer (Results 101 - 125 of 195) sorted by null

1 2 3 45 6 7 8

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 33 3) A "module importer" class provides an interface to import a
38 One module importer class is defined (ModuleImporter), which uses a
45 If a module importer class supports dotted names, its import_module()
339 """Basic module importer; uses module loader.
402 """A module importer that supports packages."""
547 def install(importer = None):
549 current_importer = importer or default_importer or ModuleImporter()
  /external/pdfium/xfa/fxfa/app/
xfa_ffdoc.cpp 438 auto importer = local
440 return importer->ImportData(pStream);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSymbolDefinitions.java 780 String importer = local
784 writeFile(tmpdir, "B.g", importer);
812 String importer = local
816 writeFile(tmpdir, "B.g", importer);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 85 interface Importer {
92 * The Importer can be set, otherwise [import locale] syntax is not supported.
107 * Sets the pointer to an Importer object.
110 void setImporter(Importer importerAlias) {
111 importer = importerAlias;
656 if(importer == null) {
662 importer.getRules(baseID,
917 private Importer importer; field in class:CollationRuleParser
    [all...]
  /external/icu/icu4c/source/i18n/
collationbuilder.h 49 CollationRuleParser::Importer *importer,
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 81 interface Importer {
88 * The Importer can be set, otherwise [import locale] syntax is not supported.
103 * Sets the pointer to an Importer object.
106 void setImporter(Importer importerAlias) {
107 importer = importerAlias;
652 if(importer == null) {
658 importer.getRules(baseID,
913 private Importer importer; field in class:CollationRuleParser
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
builtins_test.go 10 "go/importer"
136 conf := Config{Importer: importer.Default()}
gotype.go 77 "go/importer"
264 Importer: importer.For(compiler, nil),
resolver.go 141 // srcDir is the directory used by the Importer to look up packages.
145 // This is the only place where the type-checker (just the importer)
193 if importer := check.conf.Importer; importer == nil {
194 err = fmt.Errorf("Config.Importer not installed")
195 } else if importerFrom, ok := importer.(ImporterFrom); ok {
198 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, pkg.path)
201 imp, err = importer.Import(path)
203 err = fmt.Errorf("Config.Importer.Import(%s) returned nil but no error", path
    [all...]
api.go 54 // An Importer resolves import paths to Packages.
59 type Importer interface {
72 // Use go/importer to obtain an ImporterFrom implementation.
74 // Importer is present for backward-compatibility. Calling
79 Importer
115 // An importer is used to import packages referred to from
117 // If the installed importer implements ImporterFrom, the type
119 // The type checker reports an error if an importer is needed
121 Importer Importer
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
builtins_test.go 10 "go/importer"
136 conf := Config{Importer: importer.Default()}
gotype.go 77 "go/importer"
264 Importer: importer.For(compiler, nil),
resolver.go 141 // srcDir is the directory used by the Importer to look up packages.
145 // This is the only place where the type-checker (just the importer)
193 if importer := check.conf.Importer; importer == nil {
194 err = fmt.Errorf("Config.Importer not installed")
195 } else if importerFrom, ok := importer.(ImporterFrom); ok {
198 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, pkg.path)
201 imp, err = importer.Import(path)
203 err = fmt.Errorf("Config.Importer.Import(%s) returned nil but no error", path
    [all...]
api.go 54 // An Importer resolves import paths to Packages.
59 type Importer interface {
72 // Use go/importer to obtain an ImporterFrom implementation.
74 // Importer is present for backward-compatibility. Calling
79 Importer
115 // An importer is used to import packages referred to from
117 // If the installed importer implements ImporterFrom, the type
119 // The type checker reports an error if an importer is needed
121 Importer Importer
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 68 #include <google/protobuf/compiler/importer.h>
123 // copy in importer.cc?
763 // Allocate the Importer.
765 Importer importer(&source_tree, &error_collector);
772 importer.AddUnusedImportTrackFile(input_files_[i]);
773 const FileDescriptor* parsed_file = importer.Import(input_files_[i]);
774 importer.ClearUnusedImportTrackFiles();
863 if (!EncodeOrDecode(importer.pool())) {
    [all...]
importer.cc 51 #include <google/protobuf/compiler/importer.h>
203 Importer::Importer(SourceTree* source_tree,
211 Importer::~Importer() {}
213 const FileDescriptor* Importer::Import(const string& filename) {
217 void Importer::AddUnusedImportTrackFile(const string& file_name) {
221 void Importer::ClearUnusedImportTrackFiles() {
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
trace_event_importer.py 6 This is a port of the trace event importer from
15 from telemetry.timeline import importer
20 class TraceEventTimelineImporter(importer.TimelineImporter):
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
modulegraph.py 157 # Support for the PEP302 importer for normal imports:
179 importer = pkg_resources.get_importer(entry)
180 if importer is None:
183 if sys.version_info[:2] >= (3,3) and hasattr(importer, 'find_loader'):
184 loader, portions = importer.find_loader(name)
187 loader = importer.find_module(name)
194 if isinstance(importer, ImpImporter):
715 importer = pkg_resources.get_importer(entry)
717 if isinstance(importer, ImpImporter):
    [all...]
  /external/drm_hwcomposer/
drmdisplaycomposition.cpp 45 Importer *importer, Planner *planner,
49 importer_ = importer;
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter.go 127 // TODO(gri): allow clients of go/importer to provide a FileSet.
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter.go 127 // TODO(gri): allow clients of go/importer to provide a FileSet.

Completed in 401 milliseconds

1 2 3 45 6 7 8