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

<<11121314151617181920>>

  /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...]
  /external/bison/doc/
bison.x 2 bison \- GNU Project parser generator (yacc replacement)
6 is a parser generator in the style of
  /external/chromium/testing/gmock/scripts/generator/
README 2 The Google Mock class generator is an application that is part of cppclean.
10 To use the Google Mock class generator, you need to call it
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/identity/
SettingsSecureBasedIdentificationGeneratorTest.java 55 TestGenerator generator = new TestGenerator(context, androidId); local
58 String result = generator.getUniqueId(salt);
  /external/chromium_org/ppapi/generators/
generator.py 11 from idl_generator import Generator
45 return Generator.Run(ast)
  /external/chromium_org/testing/iossim/
iossim.gyp 7 ['OS!="ios" or "<(GENERATOR)"=="ninja"', {
59 }, { # else, OS=="ios" and "<(GENERATOR)"!="ninja"
  /external/chromium_org/third_party/WebKit/Source/platform/testing/
TreeTestHelpers.h 26 // Simple pseudorandom number generator helper functions, used by the
39 // Initializes the pseudo-random number generator with a specific seed.
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
lite_unittest.cc 134 google::protobuf::unittest::TestParsingMergeLite::RepeatedFieldsGenerator generator; local
140 msg1 = generator.add_##FIELD(); \
141 msg2 = generator.add_##FIELD(); \
142 msg3 = generator.add_##FIELD(); \
153 msg1 = generator.add_##FIELD()->mutable_field1(); \
154 msg2 = generator.add_##FIELD()->mutable_field1(); \
155 msg3 = generator.add_##FIELD()->mutable_field1(); \
164 generator.SerializeToString(&buffer);
  /external/e2fsprogs/misc/
uuidgen.1.in 35 generator is present. Otherwise, it will chose a time-based UUID. It
47 quality random number generator, such as
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SetTestSuiteBuilder.java 37 TestSetGenerator<E> generator) {
38 return new SetTestSuiteBuilder<E>().usingGenerator(generator);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetTestSuiteBuilder.java 37 TestMultisetGenerator<E> generator) {
38 return new MultisetTestSuiteBuilder<E>().usingGenerator(generator);
  /external/kernel-headers/original/linux/
random.h 4 * Include file for the random number generator.
12 /* ioctl()'s for the random number generator */
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGeneratorSpi.java 63 * Computes and returns {@code AlgorithmParameters} for this generator's
66 * @return {@code AlgorithmParameters} for this generator's algorithm.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CSharp3Target.java 82 protected void genRecognizerFile(Tool tool, CodeGenerator generator, Grammar grammar, ST outputFileST) throws IOException
103 generator.getTemplates().registerRenderer(String.class, new StringRenderer(generator, this));
104 super.genRecognizerFile(tool, generator, grammar, outputFileST);
112 public StringRenderer(CodeGenerator generator, CSharp3Target target)
114 _generator = generator;
  /external/chromium_org/net/quic/
quic_packet_generator.h 8 // just-in-time. When a packet needs to be sent, the Generator
11 // The Generator's mode of operation is controlled by two conditions:
24 // 2) Is the Generator in batch mode?
26 // If the Generator is NOT in batch mode, then each call to a write
34 // If the Generator is in batch mode, then each write operation will
78 // points. Implementations must not mutate the state of the generator
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dh_pmeth.c 73 int generator; member in struct:__anon13568
87 dctx->generator = 2;
105 dctx->generator = sctx->generator;
129 dctx->generator = p1;
178 dctx->prime_len, dctx->generator, pcb);
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_mult.c 81 /* structure for precomputed multiples of the generator */
87 EC_POINT **points; /* array with pre-calculated multiples of generator:
343 * scalar*generator
350 const EC_POINT *generator = NULL; local
401 generator = EC_GROUP_get0_generator(group);
402 if (generator == NULL)
408 /* look if we can use precomputed multiples of generator */
412 if (pre_comp && pre_comp->numblocks && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == 0))
508 * as the wNAF belonging to the generator,
635 if (!EC_POINT_copy(val_sub[i][0], generator)) goto err
767 const EC_POINT *generator; local
    [all...]
ec_lib.c 102 ret->generator = NULL;
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
155 if (group->generator != NULL)
156 EC_POINT_clear_free(group->generator);
200 if (src->generator != NULL)
202 if (dest->generator == NULL)
204 dest->generator = EC_POINT_new(dest);
205 if (dest->generator == NULL) return 0;
207 if (!EC_POINT_copy(dest->generator, src->generator)) return 0
    [all...]
  /external/openssl/crypto/dh/
dh_pmeth.c 73 int generator; member in struct:__anon24144
87 dctx->generator = 2;
105 dctx->generator = sctx->generator;
129 dctx->generator = p1;
178 dctx->prime_len, dctx->generator, pcb);
  /external/openssl/crypto/ec/
ec_mult.c 81 /* structure for precomputed multiples of the generator */
87 EC_POINT **points; /* array with pre-calculated multiples of generator:
343 * scalar*generator
350 const EC_POINT *generator = NULL; local
401 generator = EC_GROUP_get0_generator(group);
402 if (generator == NULL)
408 /* look if we can use precomputed multiples of generator */
412 if (pre_comp && pre_comp->numblocks && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == 0))
508 * as the wNAF belonging to the generator,
635 if (!EC_POINT_copy(val_sub[i][0], generator)) goto err
767 const EC_POINT *generator; local
    [all...]
ec_lib.c 102 ret->generator = NULL;
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
155 if (group->generator != NULL)
156 EC_POINT_clear_free(group->generator);
200 if (src->generator != NULL)
202 if (dest->generator == NULL)
204 dest->generator = EC_POINT_new(dest);
205 if (dest->generator == NULL) return 0;
207 if (!EC_POINT_copy(dest->generator, src->generator)) return 0
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 73 // Verifies that a sequence generated by the generator and accessed
77 void VerifyGenerator(const ParamGenerator<T>& generator,
79 typename ParamGenerator<T>::iterator it = generator.begin();
81 ASSERT_FALSE(it == generator.end())
89 EXPECT_TRUE(it == generator.end())
97 it = generator.begin();
99 ASSERT_FALSE(it == generator.end())
107 EXPECT_TRUE(it == generator.end())
113 void VerifyGeneratorIsEmpty(const ParamGenerator<T>& generator) {
114 typename ParamGenerator<T>::iterator it = generator.begin()
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.h 95 // Register a code generator for a language.
101 // * generator: The CodeGenerator which will be called to generate files
112 CodeGenerator* generator,
115 // Register a code generator for a language.
117 // used to pass extra parameters to the registered code generator.
118 // Suppose you have registered a generator by calling:
122 // This will pass "enable_bar,enable_baz" as the parameter to the generator.
125 CodeGenerator* generator,
129 // but does not match any registered generator, the compiler will attempt to
130 // find a "plugin" to implement the generator. Plugins are just executables
274 CodeGenerator* generator; member in struct:google::protobuf::compiler::CommandLineInterface::GeneratorInfo
317 CodeGenerator* generator; \/\/ NULL for plugins member in struct:google::protobuf::compiler::CommandLineInterface::OutputDirective
    [all...]
  /external/chromium_org/ash/wm/
window_manager_unittest.cc 178 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(),
180 generator.ClickLeftButton();
286 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(),
288 generator.ClickLeftButton();
303 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(),
306 generator.ClickLeftButton();
334 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(),
337 generator.ClickLeftButton();
345 generator.MoveMouseTo(left_top);
346 generator.ClickLeftButton()
712 aura::test::EventGenerator& generator = GetEventGenerator(); local
731 aura::test::EventGenerator& generator = GetEventGenerator(); local
754 aura::test::EventGenerator& generator = GetEventGenerator(); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
udatpg.h 29 * like "yy-MM-dd". The user can build up the generator by adding successive
31 * a pattern which just includes the desired fields and lengths. The generator
42 * Opaque type for a date/time pattern generator object.
50 * because some fields are merged for the date/time pattern generator.
126 * Open a generator according to a given locale.
137 * Open an empty generator, to be constructed with udatpg_addPattern(...) etc.
147 * Close a generator.
174 * Create a copy pf a generator.
189 * It uses a stateful pattern parser which is set up for each generator object,
192 * but this function cannot be used concurrently on a single generator object
    [all...]

Completed in 1932 milliseconds

<<11121314151617181920>>