HomeSort by relevance Sort by last modified time
    Searched full:generator (Results 201 - 225 of 5421) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/protobuf/src/google/protobuf/compiler/
plugin.h 33 // Front-end for protoc code generator plugins written in C++.
38 // MyCodeGenerator generator;
39 // return google::protobuf::compiler::PluginMain(argc, argv, &generator);
66 // Implements main() for a protoc plugin exposing the given code generator.
67 LIBPROTOC_EXPORT int PluginMain(int argc, char* argv[], const CodeGenerator* generator);
plugin.proto 54 // code generator should generate code only for these files. Each file's
58 // The generator parameter passed on the command-line.
81 // code generator from generating correct code. Errors which indicate a
95 // file. This allows the generator to break large files into small chunks,
104 // point. This feature allows a code generator to extend the output
105 // produced by another code generator. The original generator may provide
118 // For example, the C++ code generator places the following line in the
133 // The code generator that generates the initial file and the one which
test_plugin.cc 33 // This is a dummy code generator plugin used by
49 google::protobuf::compiler::MockCodeGenerator generator("test_plugin");
50 return google::protobuf::compiler::PluginMain(argc, argv, &generator);
  /bionic/libc/netbsd/resolv/
res_random.c 15 * permutation generator based on a Luby-Rackoff block cipher. This
42 * n = prime, g0 = generator to n,
44 * g = g0^j mod n will be a generator again.
47 * X[n] = a*X[n-1]+b mod m is a Linear Congruential Generator
59 * The output of this generator is then randomly permuted though a
80 #define RU_GEN 2 /* Starting generator */
169 * Initializes the seed and chooses a suitable generator. Also toggles
202 * gcd(j, RU_N-1) == 1, giving a new generator for
242 /* Linear Congruential Generator */
260 printf("Generator: %u\n", ru_g)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
BuildDependencyGenerator.java 70 * This is a wee bit slow probably because the code generator has to load
82 protected CodeGenerator generator; field in class:BuildDependencyGenerator
91 generator = new CodeGenerator(tool, grammar, language);
92 generator.loadTemplates(language);
111 generator.getRecognizerFileName(grammar.name, grammar.type);
116 files.add(new File(tool.getOutputDirectory(), generator.getVocabFileName()));
119 ST extST = generator.getTemplates().getInstanceOf("codeFileExtension");
120 if (generator.getTemplates().isDefined("headerFile")) {
121 headerExtST = generator.getTemplates().getInstanceOf("headerFileExtension");
222 return generator;
    [all...]
  /external/chromium_org/ash/wm/
system_gesture_event_filter_unittest.cc 309 aura::test::EventGenerator generator(root_window,
313 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 0, 150);
322 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 0, -150);
329 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 150, 0);
339 generator.GestureMultiFingerScroll(kTouchPoints, left_points, 15, kSteps,
346 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 150, 0);
366 aura::test::EventGenerator generator(root_window,
372 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 0, 150);
379 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 0, -150);
387 generator.GestureMultiFingerScroll(kTouchPoints, points, 15, kSteps, 150, 0)
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h.pump 137 // Please also note that generator expressions are evaluated in
167 // with a particular generator, Google Test creates and runs tests
168 // for each element in the sequence produced by the generator.
186 // - returns a generator producing a sequence of values {start, start+1,
189 // - returns a generator producing a sequence of values {start, start+step,
193 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
194 // returns a generator producing {1, 3, 5, 7}.
221 // - returns a generator producing sequences with elements from
224 // - returns a generator producing sequences with elements from
227 // - returns a generator producing sequences with elements fro
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 39 /** The code generator for ANTLR can usually be retargeted just by providing
46 * The notion of a Code Generator target abstracts out the creation
56 * methods would force adding dummy functions to all code generator
87 CodeGenerator generator,
93 generator.getRecognizerFileName(grammar.name, grammar.type);
94 generator.write(outputFileST, fileName);
98 CodeGenerator generator,
107 protected void performGrammarAnalysis(CodeGenerator generator,
143 public String getTokenTypeAsTargetLabel(CodeGenerator generator, int ttype) {
144 String name = generator.grammar.getTokenDisplayName(ttype)
    [all...]
JavaTarget.java 39 CodeGenerator generator,
48 protected void performGrammarAnalysis(CodeGenerator generator, Grammar grammar) {
49 super.performGrammarAnalysis(generator, grammar);
  /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...]
  /external/llvm/docs/
Bugpoint.rst 47 test program, it tries executing it with the selected code generator. If the
48 selected code generator crashes, ``bugpoint`` starts the `crash debugger`_ on
49 the code generator. Otherwise, if the resulting output differs from the
50 reference output, it assumes the difference resulted from a code generator
51 failure, and starts the `code generator debugger`_.
53 Finally, if the output of the selected code generator matches the reference
65 If an optimizer or code generator crashes, ``bugpoint`` will try as hard as it
81 .. _code generator debugger:
83 Code generator debugger
86 The code generator debugger attempts to narrow down the amount of code that i
    [all...]
  /external/icu4c/tools/toolutil/
writesrc.c 29 const char *generator, const char *header) {
58 if(generator==NULL) {
62 fprintf(f, header, year, filename, generator);
74 usrc_create(const char *path, const char *filename, const char *generator) {
84 return usrc_createWithHeader(path, filename, generator, header);
88 usrc_createTextData(const char *path, const char *filename, const char *generator) {
97 return usrc_createWithHeader(path, filename, generator, header);
writesrc.h 28 * Writes a C/Java-style comment with the generator name.
31 usrc_create(const char *path, const char *filename, const char *generator);
38 usrc_createTextData(const char *path, const char *filename, const char *generator);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
plugin.proto 56 // code generator should generate code only for these files. Each file's
60 // The generator parameter passed on the command-line.
83 // code generator from generating correct code. Errors which indicate a
97 // file. This allows the generator to break large files into small chunks,
106 // point. This feature allows a code generator to extend the output
107 // produced by another code generator. The original generator may provide
120 // For example, the C++ code generator places the following line in the
135 // The code generator that generates the initial file and the one which
test_plugin.cc 33 // This is a dummy code generator plugin used by
49 google::protobuf::compiler::MockCodeGenerator generator("test_plugin");
50 return google::protobuf::compiler::PluginMain(argc, argv, &generator);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genexps.py 30 <type 'generator'>
95 {'a': <generator object <genexpr> at ...>}
141 SyntaxError: can't assign to generator expression
147 SyntaxError: can't assign to generator expression
152 Make a generator that acts like range()
192 File "<pyshell#28>", line 1, in <generator expression>
194 ValueError: generator already executing
205 File "<pyshell#35>", line 1, in <generator expression>
219 Check that generator attributes are present
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genexps.py 30 <type 'generator'>
95 {'a': <generator object <genexpr> at ...>}
141 SyntaxError: can't assign to generator expression
147 SyntaxError: can't assign to generator expression
152 Make a generator that acts like range()
192 File "<pyshell#28>", line 1, in <generator expression>
194 ValueError: generator already executing
205 File "<pyshell#35>", line 1, in <generator expression>
219 Check that generator attributes are present
  /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
  /external/ceres-solver/cmake/
FindSphinx.cmake 32 # Find the Sphinx documentation generator
44 DOC "Sphinx documentation generator")
58 DOC "Sphinx documentation generator")
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
template_expander.py 50 def real_decorator(generator):
52 parameters = generator(*args, **kwargs)
54 generator_internal.func_name = generator.func_name
  /external/chromium_org/third_party/re2/re2/testing/
regexp_generator.h 5 // Regular expression generator: generates all possible
19 // Regular expression generator.
55 ACMRandom* acm_; // Random generator.
  /external/chromium_org/ui/views/corewm/
input_method_event_filter_unittest.cc 76 aura::test::EventGenerator generator(root_window());
78 generator.PressKey(ui::VKEY_SPACE, 0);
80 generator.ReleaseKey(ui::VKEY_SPACE, 0);
  /external/regex-re2/re2/testing/
regexp_generator.h 5 // Regular expression generator: generates all possible
19 // Regular expression generator.
55 ACMRandom* acm_; // Random generator.
  /external/smack/src/com/kenai/jbosh/
RequestIDSequence.java 25 * Request ID sequence generator. This generator generates a random first
58 * Random number generator.

Completed in 2948 milliseconds

1 2 3 4 5 6 7 891011>>