HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 251 - 275 of 7097) sorted by null

<<11121314151617181920>>

  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 40 protected SlimStringStream input; field in class:Antlr.Runtime.SlimLexer
49 public SlimLexer( ICharStream input )
51 this.input = (SlimStringStream)input;
54 public SlimLexer( ICharStream input, RecognizerSharedState state )
57 this.input = (SlimStringStream)input;
70 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
82 return input.Line;
86 input.Line = value
    [all...]
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
NoViableAltException.as 38 input:IntStream)
40 super(input);
47 if ( input is CharStream ) {
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
NoViableAltException.java 41 IntStream input)
43 super(input);
51 if ( input instanceof CharStream ) {
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
SourceFileGenerator.java 38 * @param <T> The input type from which source is to be generated.
49 final void generate(T input) throws SourceFileGenerationException {
50 ClassName generatedTypeName = nameGeneratedType(input);
52 ImmutableSet.<Element>copyOf(getOriginatingElements(input));
54 ImmutableSet<JavaWriter> writers = write(generatedTypeName, input);
60 e, getElementForErrorReporting(input));
68 getElementForErrorReporting(input));
74 @Override public ClassName apply(TypeWriter input) {
75 return input.name();
83 abstract ClassName nameGeneratedType(T input);
    [all...]
  /external/libaom/libaom/aom_dsp/x86/
fft_avx2.c 33 void aom_fft8x8_float_avx2(const float *input, float *temp, float *output) {
34 aom_fft_2d_gen(input, temp, output, 8, aom_fft1d_8_avx2,
38 void aom_fft16x16_float_avx2(const float *input, float *temp, float *output) {
39 aom_fft_2d_gen(input, temp, output, 16, aom_fft1d_16_avx2,
43 void aom_fft32x32_float_avx2(const float *input, float *temp, float *output) {
44 aom_fft_2d_gen(input, temp, output, 32, aom_fft1d_32_avx2,
59 void aom_ifft8x8_float_avx2(const float *input, float *temp, float *output) {
60 aom_ifft_2d_gen(input, temp, output, 8, aom_fft1d_8_float, aom_fft1d_8_avx2,
64 void aom_ifft16x16_float_avx2(const float *input, float *temp, float *output) {
65 aom_ifft_2d_gen(input, temp, output, 16, aom_fft1d_16_float
    [all...]
  /external/libaom/libaom/av1/common/
av1_inv_txfm1d.h 32 void av1_idct4_new(const int32_t *input, int32_t *output, int8_t cos_bit,
34 void av1_idct8_new(const int32_t *input, int32_t *output, int8_t cos_bit,
36 void av1_idct16_new(const int32_t *input, int32_t *output, int8_t cos_bit,
38 void av1_idct32_new(const int32_t *input, int32_t *output, int8_t cos_bit,
40 void av1_idct64_new(const int32_t *input, int32_t *output, int8_t cos_bit,
42 void av1_iadst4_new(const int32_t *input, int32_t *output, int8_t cos_bit,
44 void av1_iadst8_new(const int32_t *input, int32_t *output, int8_t cos_bit,
46 void av1_iadst16_new(const int32_t *input, int32_t *output, int8_t cos_bit,
48 void av1_iidentity4_c(const int32_t *input, int32_t *output, int8_t cos_bit,
50 void av1_iidentity8_c(const int32_t *input, int32_t *output, int8_t cos_bit
    [all...]
  /external/libchrome/base/json/
json_reader_fuzzer.cc 13 // Create a copy of input buffer, as otherwise we don't catch
15 std::unique_ptr<char[]> input(new char[size - 1]);
16 memcpy(input.get(), data, size - 1);
18 base::StringPiece input_string(input.get(), size - 1);
  /external/libtextclassifier/annotator/datetime/
extractor.h 69 bool ExtractType(const UnicodeText& input,
81 bool MapInput(const UnicodeText& input,
85 bool ParseDigits(const UnicodeText& input, int* parsed_digits) const;
86 bool ParseWrittenNumber(const UnicodeText& input, int* parsed_number) const;
87 bool ParseYear(const UnicodeText& input, int* parsed_year) const;
88 bool ParseMonth(const UnicodeText& input, int* parsed_month) const;
89 bool ParseAMPM(const UnicodeText& input,
91 bool ParseRelation(const UnicodeText& input,
93 bool ParseRelationDistance(const UnicodeText& input,
95 bool ParseTimeUnit(const UnicodeText& input,
    [all...]
  /external/libtextclassifier/utils/
checksum.cc 22 bool VerifyLuhnChecksum(const std::string& input, bool ignore_whitespace) {
30 for (int i = input.size() - 1; i >= 0; i--) {
31 const char c = input[i];
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Parser.java 55 * Parses a message of {@code MessageType} from the input.
62 public MessageType parseFrom(CodedInputStream input)
71 public MessageType parseFrom(CodedInputStream input,
80 public MessageType parsePartialFrom(CodedInputStream input)
84 * Like {@link #parseFrom(CodedInputStream input, ExtensionRegistryLite)},
88 public MessageType parsePartialFrom(CodedInputStream input,
195 * Parse a message of {@code MessageType} from {@code input}.
197 * Note that this method always reads the <i>entire</i> input (unless it
199 * wrap your input in some wrapper stream that limits reading. Or, use
203 * Despite usually reading the entire input, this does not close the stream
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
data_format.cc 22 xla::StatusOr<xla::XlaOp> Contract(xla::XlaOp input, int64 dim) {
23 xla::XlaBuilder* builder = input.builder();
24 TF_ASSIGN_OR_RETURN(xla::Shape input_shape, builder->GetShape(input));
31 // Transpose the input so C is directly followed by VECT_C.
45 return xla::Reshape(xla::Transpose(input, permutation), contracted_shape);
48 xla::StatusOr<xla::XlaOp> Expand(xla::XlaOp input, int64 dim) {
49 xla::XlaBuilder* builder = input.builder();
50 TF_ASSIGN_OR_RETURN(xla::Shape input_shape, builder->GetShape(input));
74 return xla::Transpose(xla::Reshape(input, expanded_shape), permutation);
79 xla::StatusOr<xla::XlaOp> NCHW_VECT_CToNCHW(xla::XlaOp input) {
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/ops/
training_ops.cc 25 .Input("tree_ensemble_handle: resource")
26 .Input("stamp_token: int64")
27 .Input("next_stamp_token: int64")
28 .Input("delta_updates: float")
32 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 0, &unused_input));
33 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 0, &unused_input));
34 TF_RETURN_IF_ERROR(c->WithRank(c->input(2), 0, &unused_input));
35 TF_RETURN_IF_ERROR(c->WithRank(c->input(3), 1, &unused_input));
54 .Input("tree_ensemble_handle: resource")
55 .Input("stamp_token: int64"
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
snapshot_op.h 35 typename TTypes<Scalar>::ConstTensor input,
37 device.memcpy(output.data(), input.data(), input.size() * sizeof(Scalar));
  /external/tensorflow/tensorflow/core/ops/
tpu_configuration_ops.cc 33 // 2 Run _ConfigureDistributedTPU on TPU_SYSTEM of worker 0. Takes as input the
40 // as input the output from ConfigureDistributedTPU. Has a single Tensor output
44 // 4 Run _WaitForDistributedTPU on TPU_SYSTEM, taking as input the
55 // 5 Run _SetGlobalTPUArray on the TPU_SYSTEM of each host, taking as input the
79 .Input("inputs: N * int32")
84 ShapeHandle input;
87 TF_RETURN_IF_ERROR(c->WithRank(c->input(i), 0, &input));
104 .Input("inputs: N * int32")
110 ShapeHandle input;
    [all...]
  /external/webrtc/webrtc/base/
crc32_unittest.cc 26 std::string input = local
29 for (size_t i = 0; i < input.size(); ++i) {
30 c = UpdateCrc32(c, &input[i], 1);
messagedigest.h 51 // Computes the hash of |in_len| bytes of |input|, using the |digest| hash
55 size_t ComputeDigest(MessageDigest* digest, const void* input, size_t in_len,
60 size_t ComputeDigest(const std::string& alg, const void* input, size_t in_len,
62 // Computes the hash of |input| using the |digest| hash implementation, and
64 std::string ComputeDigest(MessageDigest* digest, const std::string& input);
68 std::string ComputeDigest(const std::string& alg, const std::string& input);
70 bool ComputeDigest(const std::string& alg, const std::string& input,
74 inline std::string MD5(const std::string& input) {
75 return ComputeDigest(DIGEST_MD5, input);
80 // Computes the HMAC of |in_len| bytes of |input|, using the |digest| has
    [all...]
  /cts/tests/tests/binder_ndk/libbinder_ndk_test/test_package/
ITest.aidl 73 boolean[] RepeatBooleanArray(in boolean[] input, out boolean[] repeated);
74 byte[] RepeatByteArray(in byte[] input, out byte[] repeated);
75 char[] RepeatCharArray(in char[] input, out char[] repeated);
76 int[] RepeatIntArray(in int[] input, out int[] repeated);
77 long[] RepeatLongArray(in long[] input, out long[] repeated);
78 float[] RepeatFloatArray(in float[] input, out float[] repeated);
79 double[] RepeatDoubleArray(in double[] input, out double[] repeated);
80 String[] RepeatStringArray(in String[] input, out String[] repeated);
81 RegularPolygon[] RepeatRegularPolygonArray(in RegularPolygon[] input, out RegularPolygon[] repeated);
84 @nullable boolean[] RepeatNullableBooleanArray(in @nullable boolean[] input);
    [all...]
  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DFA.pm 60 # From the input stream, predict what alternative will succeed
65 my ($self, $input) = @_;
67 my $mark = $input->mark(); # remember where decision started in input
74 $s = $self->special_state_transition($special_state, $input);
76 $self->no_viable_alt($s, $input);
79 $input->consume();
88 my $c = $input->LA(1); # -1 == \uFFFF, all tokens fit in 65000 space
100 $input->consume();
109 $self->no_viable_alt($s, $input);
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ProcessReadWriteTest.java 29 FileInputStream input = new FileInputStream(FileDescriptor.in); local
35 int c = input.read();
38 c = input.read();
42 input.close();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
BCMessageDigest.java 26 byte input)
28 digest.update(input);
32 byte[] input,
36 digest.update(input, offset, len);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/digest/
BCMessageDigest.java 30 byte input)
32 digest.update(input);
36 byte[] input,
40 digest.update(input, offset, len);
  /external/curl/lib/
curl_md4.h 30 void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len);
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/monitoring/
StringStub.java 21 ListenableFuture<String> run(String input);
  /external/deqp-deps/SPIRV-Tools/test/fuzzers/
spvtools_val_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
34 tools.Validate(input);
  /external/desugar/java/com/google/devtools/common/options/
Converter.java 25 T convert(String input) throws OptionsParsingException;

Completed in 1644 milliseconds

<<11121314151617181920>>