/external/chromium_org/chrome/utility/importer/ |
importer.cc | 5 #include "chrome/utility/importer/importer.h" 7 #include "chrome/common/importer/importer_bridge.h" 9 void Importer::Cancel() { 13 Importer::Importer() : cancelled_(false) {} 15 Importer::~Importer() {}
|
importer.h | 13 namespace importer { namespace 18 class Importer : public base::RefCountedThreadSafe<Importer> { 22 // import, the importer should invoke ImporterHost::NotifyImportEnded() to 24 virtual void StartImport(const importer::SourceProfile& source_profile, 34 friend class base::RefCountedThreadSafe<Importer>; 36 Importer(); 37 virtual ~Importer(); 45 DISALLOW_COPY_AND_ASSIGN(Importer);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
importer.cc | 47 #include <google/protobuf/compiler/importer.h> 185 Importer::Importer(SourceTree* source_tree, 192 Importer::~Importer() {} 194 const FileDescriptor* Importer::Import(const string& filename) {
|
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/protobuf/src/google/protobuf/compiler/ |
importer.cc | 47 #include <google/protobuf/compiler/importer.h> 185 Importer::Importer(SourceTree* source_tree, 192 Importer::~Importer() {} 194 const FileDescriptor* Importer::Import(const string& filename) {
|
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/icu/icu4c/source/i18n/ |
collationruleparser.h | 93 class U_I18N_API Importer : public UObject { 95 virtual ~Importer(); 104 * The Importer can be set, otherwise [import locale] syntax is not supported. 118 * Sets the pointer to an Importer object. 121 void setImporter(Importer *importerAlias) { 122 importer = importerAlias; 187 Importer *importer; member in class:CollationRuleParser
|
collationruleparser.cpp | 56 CollationRuleParser::Importer::~Importer() {} 63 sink(NULL), importer(NULL), 635 if(importer == NULL) { 639 importer->getRules(baseID,
|
/external/chromium_org/third_party/libwebp/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); \
|
/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/clang/lib/AST/ |
ASTImporter.cpp | 31 ASTImporter &Importer; 34 explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { } 104 (IDK == IDK_Default && !Importer.isMinimalImport()); [all...] |