/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
H A D | CodeGeneratorFrontend.py | 181 class Generator: class in inherits: 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 [all...] |
/external/chromium_org/ppapi/generators/ |
H A D | generator.py | 11 from idl_generator import Generator namespace 45 return Generator.Run(ast)
|
H A D | idl_generator.py | 18 class Generator(object): class in inherits:object 154 class GeneratorByFile(Generator): 157 A subclass of Generator for use of generators which have a one to one 212 class GeneratorReleaseTest(Generator): 245 if Generator.Run('AST') != 0: 255 if Generator.Run('AST') != 0: 263 print 'Generator test: Pass' 272 return Generator.Run(ast) 276 GeneratorReleaseTest('Test Gen', 'testgen', 'Generator Class Test.')
|
H A D | idl_gen_wrapper.py | 13 from idl_generator import Generator namespace 51 class WrapperGen(Generator): 63 Generator.__init__(self, s1, s2, s3)
|
H A D | idl_c_header.py | 6 """ Generator for C style prototypes and definitions """ 20 from idl_generator import Generator, GeneratorByFile namespace 193 Generator.__init__(self, 'C Header', 'cgen', 'Generate the C headers.')
|
H A D | idl_thunk.py | 6 """ Generator for C++ style thunks """ 20 from idl_generator import Generator, GeneratorByFile namespace 412 Generator.__init__(self, 'Thunk', 'tgen', 'Generate the C++ thunk.')
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/ |
H A D | python_generator.cc | 240 Generator::Generator() : file_(NULL) { function in class:google::protobuf::compiler::python::Generator 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 { 346 void Generator::PrintTopLevelEnums() const { 374 void Generator [all...] |
H A D | python_generator.h | 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator { class in namespace:google::protobuf::compiler::python 63 Generator(); 64 virtual ~Generator(); 153 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
|
H A D | python_plugin_unittest.cc | 92 python::Generator python_generator;
|
/external/protobuf/src/google/protobuf/compiler/python/ |
H A D | python_generator.cc | 225 Generator::Generator() : file_(NULL) { function in class:google::protobuf::compiler::python::Generator 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 { 321 void Generator::PrintTopLevelEnums() const { 344 void Generator [all...] |
H A D | python_generator.h | 61 class LIBPROTOC_EXPORT Generator : public CodeGenerator { class in namespace:google::protobuf::compiler::python 63 Generator(); 64 virtual ~Generator(); 147 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
|
H A D | python_plugin_unittest.cc | 92 python::Generator python_generator;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
H A D | CodeGeneratorInspector.py | 1768 class Generator: class in inherits: 1795 Generator.process_types(type_map) 1798 Generator.backend_method_declaration_list, 1799 Generator.backend_method_implementation_list, 1800 Generator.backend_method_name_declaration_list, 1801 Generator.backend_method_name_declaration_index_list, 1802 Generator.backend_agent_interface_list, 1803 Generator.frontend_class_field_lines, 1804 Generator.frontend_constructor_init_list, 1805 Generator [all...] |
/external/chromium_org/mojo/public/bindings/generators/ |
H A D | mojom_generator.py | 31 class Generator(object): class in inherits:object
|
H A D | mojom_js_generator.py | 146 class JSGenerator(mojom_generator.Generator):
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | main.cc | 56 google::protobuf::compiler::python::Generator py_generator;
|
/external/protobuf/src/google/protobuf/compiler/ |
H A D | main.cc | 58 google::protobuf::compiler::python::Generator py_generator;
|
/external/smack/src/org/xbill/DNS/ |
H A D | Master.java | 29 private Generator generator; 224 if (!Generator.supportedType(currentType)) 236 generator = new Generator(start, end, step, nameSpec, 412 * @see Generator
|
H A D | Generator.java | 14 public class Generator { class 74 Generator(long start, long end, long step, String namePattern, method in class:Generator
|
/external/clang/lib/Serialization/ |
H A D | GlobalModuleIndex.cpp | 694 OnDiskChainedHashTableGenerator<IdentifierIndexWriterTrait> Generator; local 701 Generator.insert(I->first(), I->second, Trait); 711 BucketOffset = Generator.Emit(Out, Trait);
|
H A D | ASTWriter.cpp | 1560 OnDiskChainedHashTableGenerator<HeaderFileInfoTrait> Generator; local 1588 Generator.insert(key, HFI, GeneratorTrait); 1599 BucketOffset = Generator.Emit(Out, GeneratorTrait); 1932 OnDiskChainedHashTableGenerator<ASTMacroTableTrait> Generator; local 1979 Generator.insert(NameID, data); 2061 BucketOffset = Generator.Emit(Out); 2808 OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator; local 2849 Generator.insert(S, Data, Trait); 2860 BucketOffset = Generator.Emit(Out, Trait); 3183 OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/icu4c/test/intltest/ |
H A D | ucharstrietest.cpp | 339 class Generator { class in namespace:__anon19456 341 Generator() : value(4711), num(0) {} function in class:__anon19456::Generator 370 Generator gen; 389 Generator gen;
|
/external/bison/ |
H A D | cfg.mk | 26 manual_title = The Yacc-compatible Parser Generator
|
/external/libvpx/libvpx/examples/includes/geshi/contrib/ |
H A D | cssgen.php | 43 <title>GeSHi CSS Generator :: ' . $title . ' </title>
|