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

1 2

  /external/chromium_org/ppapi/generators/
generator.py 11 from idl_generator import Generator
45 return Generator.Run(ast)
idl_generator.py 18 class Generator(object):
21 This class provides a mechanism for adding new generator objects to the IDL
24 defines it to register the generator. After the AST is generated, call the
25 static Run member which will check every registered generator to see which
26 ones have been enabled through command-line options. To enable a generator
29 --<sname>_opt=<XXX,YYY=y> : To enable with generator specific options.
133 self.Error("Undefined release generator.")
138 self.Error("Undefined range generator.")
154 class GeneratorByFile(Generator):
155 """A simplified generator that generates one output file per IDL source file
    [all...]
idl_c_header.py 6 """ Generator for C style prototypes and definitions """
20 from idl_generator import Generator, GeneratorByFile
198 Generator.__init__(self, 'C Header', 'cgen', 'Generate the C headers.')
idl_gen_wrapper.py 13 from idl_generator import Generator
51 class WrapperGen(Generator):
63 Generator.__init__(self, s1, s2, s3)
306 generator = PPKind.ChoosePPFunc(iface,
313 result.extend(generator(iface, member))
idl_thunk.py 6 """ Generator for C++ style thunks """
20 from idl_generator import Generator, GeneratorByFile
412 Generator.__init__(self, 'Thunk', 'tgen', 'Generate the C++ thunk.')
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.h 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator {
63 Generator();
64 virtual ~Generator();
153 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
python_generator.cc 41 // generator that outputs a Python/C extension module that lets
124 // file output by this generator.
240 Generator::Generator() : file_(NULL) {
243 Generator::~Generator() {
246 bool Generator::Generate(const FileDescriptor* file,
256 // the stack and use that, so that the Generator class itself does not need
304 void Generator::PrintImports() const {
321 void Generator::PrintFileDescriptor() const
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.h 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator {
63 Generator();
64 virtual ~Generator();
147 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
python_generator.cc 41 // generator that outputs a Python/C extension module that lets
117 // file output by this generator.
225 Generator::Generator() : file_(NULL) {
228 Generator::~Generator() {
231 bool Generator::Generate(const FileDescriptor* file,
241 // the stack and use that, so that the Generator class itself does not need
286 void Generator::PrintImports() const {
296 void Generator::PrintFileDescriptor() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 181 class Generator:
190 Generator.backend_js_domain_initializer_list.append("// %s.\n" % domain_name)
191 Generator.backend_js_domain_initializer_list.append("InspectorBackend.register%sDispatcher = InspectorBackend.registerDomainDispatcher.bind(InspectorBackend, \"%s\");\n" % (domain_name, domain_name))
197 Generator.process_enum(json_type, enum_name)
203 Generator.process_enum(json_property, enum_name)
207 Generator.process_event(json_event, domain_name)
211 Generator.process_command(json_command, domain_name)
213 Generator.backend_js_domain_initializer_list.append("\n")
221 Generator.backend_js_domain_initializer_list.append("InspectorBackend.registerEnum(\"%s\", {%s});\n" % (
236 Generator.backend_js_domain_initializer_list.append("InspectorBackend.registerEvent(\"%s.%s\", [%s]);\n" %
    [all...]
  /external/smack/src/org/xbill/DNS/
Generator.java 14 public class Generator {
74 Generator(long start, long end, long step, String namePattern,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 6 __all__ = ['Generator', 'DecodedGenerator']
33 class Generator:
36 This basic generator writes the message to the given file object as plain
44 """Create the generator for message flattening.
70 specified when the Generator instance was created.
87 """Clone this generator with the exact same options."""
299 class DecodedGenerator(Generator):
302 Like the Generator base class, except that non-text parts are substituted
306 """Like Generator.__init__() except that an additional optional
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen
    [all...]
message.py 134 Generator instance.
136 from email.generator import Generator
138 g = Generator(fp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 6 __all__ = ['Generator', 'DecodedGenerator']
33 class Generator:
36 This basic generator writes the message to the given file object as plain
44 """Create the generator for message flattening.
70 specified when the Generator instance was created.
87 """Clone this generator with the exact same options."""
299 class DecodedGenerator(Generator):
302 Like the Generator base class, except that non-text parts are substituted
306 """Like Generator.__init__() except that an additional optional
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen
    [all...]
message.py 134 Generator instance.
136 from email.generator import Generator
138 g = Generator(fp)
  /external/icu4c/test/intltest/
ucharstrietest.cpp 339 class Generator {
341 Generator() : value(4711), num(0) {}
370 Generator gen;
389 Generator gen;
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 694 OnDiskChainedHashTableGenerator<IdentifierIndexWriterTrait> Generator;
701 Generator.insert(I->first(), I->second, Trait);
711 BucketOffset = Generator.Emit(Out, Trait);
  /external/chromium_org/v8/src/
builtins.cc 1652 byte* generator; member in struct:v8::internal::__anon17015::BuiltinDesc
    [all...]
  /external/v8/src/
builtins.cc 1567 byte* generator; member in struct:v8::internal::__anon28735::BuiltinDesc
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 2174 generator = type.get_code_generator() variable in class:Generator.resolve_type_and_generate_ad_hoc.InterfaceGenerateContext
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 19 from email.generator import Generator, DecodedGenerator
246 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with
547 g = Generator(sfp)
588 g = Generator(sfp)
645 g = Generator(sfp)
663 g = Generator(sfp)
    [all...]
test_email.py 20 from email.Generator import Generator, DecodedGenerator
202 gen = email.Generator.Generator(out, True, 0)
282 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with
611 g = Generator(sfp)
652 g = Generator(sfp)
709 g = Generator(sfp)
727 g = Generator(sfp)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 19 from email.generator import Generator, DecodedGenerator
246 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with
547 g = Generator(sfp)
588 g = Generator(sfp)
645 g = Generator(sfp)
663 g = Generator(sfp)
    [all...]
test_email.py 20 from email.Generator import Generator, DecodedGenerator
202 gen = email.Generator.Generator(out, True, 0)
282 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with
611 g = Generator(sfp)
652 g = Generator(sfp)
709 g = Generator(sfp)
727 g = Generator(sfp)
    [all...]

Completed in 355 milliseconds

1 2