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

  /external/drm_hwcomposer/
platform.h 33 class Importer {
35 virtual ~Importer() {
38 // Creates a platform-specific importer instance
39 static Importer *CreateInstance(DrmResources *drm);
  /external/protobuf/src/google/protobuf/compiler/
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() {
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
  /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
collationruleparser.cpp 54 CollationRuleParser::Importer::~Importer() {}
61 sink(NULL), importer(NULL),
636 if(importer == NULL) {
640 importer->getRules(baseID, length > 0 ? collationType : "standard",
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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
173 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
176 // If the importer encounters problems while trying to import the proto files,
193 // Used by the default implementation of Importer to resolve import statements
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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
173 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
176 // If the importer encounters problems while trying to import the proto files,
193 // Used by the default implementation of Importer to resolve import statements
  /prebuilts/misc/windows/protobuf2.5/include/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
173 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
176 // If the importer encounters problems while trying to import the proto files,
193 // Used by the default implementation of Importer to resolve import statements
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
importer.h 56 class Importer;
148 class LIBPROTOBUF_EXPORT Importer {
150 Importer(SourceTree* source_tree,
152 ~Importer();
160 // A particular Importer object will only report errors for a particular
165 // separate Importer object to import each one (but use the same
182 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
185 // If the importer encounters problems while trying to import the proto files,
205 // Used by the default implementation of Importer to resolve import statements
  /prebuilts/tools/linux-x86_64/protoc/include/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
173 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Importer);
176 // If the importer encounters problems while trying to import the proto files,
193 // Used by the default implementation of Importer to resolve import statements
  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 414 FunctionImporter Importer(*Index, ModuleLoader);
415 return Importer.importFunctions(M);
  /external/webp/src/enc/
picture.c 230 typedef int (*Importer)(WebPPicture* const, const uint8_t* const, int);
233 Importer import, float quality_factor, int lossless,
264 #define ENCODE_FUNC(NAME, IMPORTER) \
267 return Encode(in, w, h, bps, IMPORTER, q, 0, out); \
278 #define LOSSLESS_ENCODE_FUNC(NAME, IMPORTER) \
280 return Encode(in, w, h, bps, IMPORTER, LOSSLESS_DEFAULT_QUALITY, 1, out); \
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 83 interface Importer {
90 * The Importer can be set, otherwise [import locale] syntax is not supported.
105 * Sets the pointer to an Importer object.
108 void setImporter(Importer importerAlias) {
109 importer = importerAlias;
654 if(importer == null) {
660 importer.getRules(baseID,
915 private Importer importer; field in class:CollationRuleParser
    [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...]
  /external/opencv3/3rdparty/libwebp/enc/
picture.c     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
messages_test.py     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 31 ASTImporter &Importer;
34 explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { }
105 (IDK == IDK_Default && !Importer.isMinimalImport());
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 3809 milliseconds