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

1 2

  /external/drm_hwcomposer/
importer.h 29 class Importer {
31 virtual ~Importer() {
34 // Creates a platform-specific importer instance
35 static Importer *CreateInstance(DrmResources *drm);
drmgenericimporter.h 21 #include "importer.h"
27 class DrmGenericImporter : public Importer {
drmcomposition.h 24 #include "importer.h"
37 DrmComposition(DrmResources *drm, Importer *importer);
52 Importer *importer_;
drmdisplaycomposition.h 22 #include "importer.h"
53 int Init(DrmResources *drm, Importer *importer);
72 Importer *importer_;
drmcompositor.h 22 #include "importer.h"
40 virtual Composition *CreateComposition(Importer *importer);
compositor.h 20 #include "importer.h"
67 // for calling importer->ReleaseBuffer(bo), where importer is the importer
91 virtual Composition *CreateComposition(Importer *importer) = 0;
gl_compositor.h 38 virtual Composition *CreateComposition(Importer *importer);
nvimporter.h 21 #include "importer.h"
29 class NvImporter : public Importer {
41 NvImporter *importer; member in struct:android::NvImporter::NvBuffer
drmgenericimporter.cpp 17 #define LOG_TAG "hwc-drm-generic-importer"
19 #include "importer.h"
37 Importer *Importer::CreateInstance(DrmResources *drm) {
38 DrmGenericImporter *importer = new DrmGenericImporter(drm); local
39 if (!importer)
42 int ret = importer->Init();
44 ALOGE("Failed to initialize the nv importer %d", ret);
45 delete importer;
48 return importer;
    [all...]
drmcompositor.cpp 50 Composition *DrmCompositor::CreateComposition(Importer *importer) {
51 DrmComposition *composition = new DrmComposition(drm_, importer);
nvimporter.cpp 17 #define LOG_TAG "hwc-nv-importer"
20 #include "importer.h"
34 Importer *Importer::CreateInstance(DrmResources *drm) {
35 NvImporter *importer = new NvImporter(drm); local
36 if (!importer)
39 int ret = importer->Init();
41 ALOGE("Failed to initialize the nv importer %d", ret);
42 delete importer;
45 return importer;
    [all...]
gl_compositor.cpp 100 GLComposition(GLCompositor *owner, Importer *imp)
101 : compositor(owner), importer(imp), target_handle(-1), timeline_fd(-1) {
148 return importer->ReleaseBuffer(bo);
157 Importer *importer; member in class:android::GLComposition
237 Composition *GLCompositor::CreateComposition(Importer *importer) {
242 GLComposition *composition = new GLComposition(this, importer);
drmcomposition.cpp 34 DrmComposition::DrmComposition(DrmResources *drm, Importer *importer)
35 : drm_(drm), importer_(importer) {
drmdisplaycomposition.cpp 65 int DrmDisplayComposition::Init(DrmResources *drm, Importer *importer) {
67 importer_ = importer;
  /external/clang/lib/AST/
ASTImporter.cpp 31 ASTImporter &Importer;
34 explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { }
105 (IDK == IDK_Default && !Importer.isMinimalImport());
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
importer.h 56 class Importer;
142 class LIBPROTOBUF_EXPORT Importer {
144 Importer(SourceTree* source_tree,
146 ~Importer();
154 // A particular Importer object will only report errors for a particular
159 // separate Importer object to import each one (but use the same
176 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
179 // If the importer encounters problems while trying to import the proto files,
196 // Used by the default implementation of Importer to resolve import statements
importer.cc 48 #include <google/protobuf/compiler/importer.h>
187 Importer::Importer(SourceTree* source_tree,
195 Importer::~Importer() {}
197 const FileDescriptor* Importer::Import(const string& filename) {
201 void Importer::AddUnusedImportTrackFile(const string& file_name) {
205 void Importer::ClearUnusedImportTrackFiles() {
  /external/icu/icu4c/source/i18n/
collationruleparser.h 93 class U_I18N_API Importer : public UObject {
95 virtual ~Importer();
105 * The Importer can be set, otherwise [import locale] syntax is not supported.
119 * Sets the pointer to an Importer object.
122 void setImporter(Importer *importerAlias) {
123 importer = importerAlias;
187 Importer *importer; member in class:CollationRuleParser
collationbuilder.h 47 CollationRuleParser::Importer *importer,
  /external/clang/lib/Frontend/
ASTMerge.cpp 53 ASTImporter Importer(CI.getASTContext(),
67 Importer.Import(D);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 48 #include <google/protobuf/compiler/importer.h>
123 Importer importer(&source_tree, &error_collector);
125 importer.Import("google/protobuf/descriptor.proto");
127 importer.Import("google/protobuf/compiler/plugin.proto");
  /external/webp/src/enc/
picture.c 229 typedef int (*Importer)(WebPPicture* const, const uint8_t* const, int);
232 Importer import, float quality_factor, int lossless,
263 #define ENCODE_FUNC(NAME, IMPORTER) \
266 return Encode(in, w, h, bps, IMPORTER, q, 0, out); \
277 #define LOSSLESS_ENCODE_FUNC(NAME, IMPORTER) \
279 return Encode(in, w, h, bps, IMPORTER, LOSSLESS_DEFAULT_QUALITY, 1, out); \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imputil.py 7 Importer Base class for replacing standard import functions
25 __all__ = ["ImportManager","Importer","BuiltinImporter"]
70 # This is the Importer that we use for grabbing stuff from the
94 # if there is a parent, then its importer should manage this import
133 importer = top_module.__dict__.get('__importer__')
134 if importer:
135 return importer._finish_import(top_module, parts[1:], fromlist)
144 # If the importer does not exist, then we have to bail. A missing
145 # importer means that something else imported the module, and we have
190 # the module, or an Importer object that can import the module
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imputil.py 7 Importer Base class for replacing standard import functions
25 __all__ = ["ImportManager","Importer","BuiltinImporter"]
70 # This is the Importer that we use for grabbing stuff from the
94 # if there is a parent, then its importer should manage this import
133 importer = top_module.__dict__.get('__importer__')
134 if importer:
135 return importer._finish_import(top_module, parts[1:], fromlist)
144 # If the importer does not exist, then we have to bail. A missing
145 # importer means that something else imported the module, and we have
190 # the module, or an Importer object that can import the module
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 79 interface Importer {
86 * The Importer can be set, otherwise [import locale] syntax is not supported.
101 * Sets the pointer to an Importer object.
104 void setImporter(Importer importerAlias) {
105 importer = importerAlias;
650 if(importer == null) {
656 importer.getRules(baseID,
911 private Importer importer; field in class:CollationRuleParser
    [all...]

Completed in 284 milliseconds

1 2