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

1 2 3

  /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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
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...]
python_generator.h 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator {
63 Generator();
64 virtual ~Generator();
153 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
python_plugin_unittest.cc 92 python::Generator python_generator;
  /external/protobuf/src/google/protobuf/compiler/python/
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...]
python_generator.h 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator {
63 Generator();
64 virtual ~Generator();
147 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
python_plugin_unittest.cc 92 python::Generator python_generator;
  /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...]
  /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_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))
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
main.cc 56 google::protobuf::compiler::python::Generator py_generator;
  /external/chromium_org/v8/test/mjsunit/harmony/
generators-objects.js 51 // Test the properties and prototype of a generator object.
58 assertEquals("Generator", %ClassOf(iter));
59 assertEquals("[object Generator]", String(iter));
67 assertEquals("Generator", %ClassOf(iter));
68 assertEquals("[object Generator]", String(iter));
75 // Test the methods of generator objects.
generators-parsing.js 30 // Test basic generator syntax.
38 // You can have a generator in strict mode.
47 // Generator expression.
50 // Named generator expression.
53 // A generator without a yield is specified as causing an early error. This
64 // Generator definitions with a name of "yield" are not specifically ruled out
65 // by the spec, as the `yield' name is outside the generator itself. However,
85 // Yield is only a keyword in the body of the generator, not in nested
92 // Yield in a generator is not an identifier.
  /external/protobuf/src/google/protobuf/compiler/
main.cc 58 google::protobuf::compiler::python::Generator py_generator;
  /external/chromium_org/v8/src/
generator.js 37 // Generator functions and objects are specified by ES6, sections 15.19.3 and
43 ['[Generator].prototype.next', this]);
52 ['[Generator].prototype.throw', this]);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite_impl.hpp 364 template<typename Generator,typename TestCaseTemplate>
366 explicit generate_test_case_4_type( const_string tc_name, Generator& G )
389 Generator& m_holder;
  /external/smack/src/org/xbill/DNS/
Master.java 29 private Generator generator; field in class:Master
224 if (!Generator.supportedType(currentType))
236 generator = new Generator(start, end, step, nameSpec,
241 generators.add(generator);
249 generator = null;
255 return generator.nextRecord();
283 if (generator != null) {
344 if (generator != null
    [all...]
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...]
  /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...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class.py 157 sys.stderr.write('Google Mock Class Generator v%s\n\n' %
  /cts/
CtsBuild.mk 22 # the XML generator to produce test XMLs.
27 # Generator of test XMLs from scanner output.
28 CTS_XML_GENERATOR := $(HOST_OUT_EXECUTABLES)/cts-xml-generator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algo.h     [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);

Completed in 970 milliseconds

1 2 3