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

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTLexer.java 35 * the input to lex into tokens.
37 * @param input A valid character stream that contains the ruleSrc code you
40 public AbstractTLexer(CharStream input) {
41 this(input, new RecognizerSharedState());
47 * @param input The character stream we are going to lex
50 public AbstractTLexer(CharStream input, RecognizerSharedState state) {
51 super(input,state);
  /external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
AbstractInputEditor.java 41 protected ITestCaseInput input; field in class:AbstractInputEditor
42 public void setInput(ITestCaseInput input) {
43 this.input = input;
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeParser.cs 59 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state)
60 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), state) {
64 public DebugTreeParser(ITreeNodeStream input, RecognizerSharedState state)
65 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, null), state) {
68 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg)
69 : this(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), dbg, null)
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 59 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state )
60 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), state )
65 public DebugTreeParser( ITreeNodeStream input, RecognizerSharedState state )
66 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, null ), state )
70 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg )
71 : this( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), dbg, null
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeParser.java 48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) {
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) {
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
57 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg) {
58 this(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), dbg, null)
    [all...]
  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 10 has 'input' => (
19 if (defined $self->input) {
20 $self->input->seek(0); # rewind the input
25 my ($self, $input) = @_;
26 return $self->input->LT(1);
31 my $input = $arg_ref->{input};
48 my $current = $input->LT(1);
50 $current = $input->LT(-1)
    [all...]
  /external/antlr/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Lexer.pm 13 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => 'ABC' });
14 my $lexer = ANTLR::Runtime::Lexer->new({ input => $input });
  /external/curl/tests/libtest/
lib517.c 27 const char *input; member in struct:dcheck
154 for(i = 0; dates[i].input; i++) {
155 time_t out = curl_getdate(dates[i].input, NULL);
158 dates[i].input, out, dates[i].output);
  /external/libchrome/mojo/public/cpp/bindings/lib/
handle_serialization.h 18 static void Serialize(ScopedHandleBase<T>& input,
21 context->AddHandle(ScopedHandle::From(std::move(input)), output);
24 static bool Deserialize(Handle_Data* input,
27 *output = context->TakeHandleAs<T>(*input);
  /external/libpng/contrib/powerpc-vsx/
linux.c 36 char input[MAXLINE]; local
44 memset(input,0,MAXLINE);
45 while(fgets(input,MAXLINE,f) != NULL)
47 token = strstr(input,string);
  /external/libtextclassifier/utils/
checksum.h 26 // Computes and verifies that the last digit of `input` matches the Luhn
29 bool VerifyLuhnChecksum(const std::string& input,
  /external/libvpx/libvpx/vp9/common/
vp9_idct.h 41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride,
49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride,
52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
60 void vp9_highbd_iwht4x4_add(const tran_low_t *input, uint16_t *dest, int stride,
62 void vp9_highbd_idct4x4_add(const tran_low_t *input, uint16_t *dest, int stride
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
IoUtil.java 33 * @param input - the InputStream to read
38 public static byte[] readBytes(InputStream input) throws IOException {
39 Assert.notNull(input, "input");
44 int b = input.read();
52 input.close();
  /external/pdfium/testing/libfuzzer/
pdf_css_fuzzer.cc 14 WideString input = local
17 // If we convert the input into an empty string bail out.
18 if (input.GetLength() == 0)
21 CFX_CSSSyntaxParser parser(input.c_str(), input.GetLength());
  /external/python/cpython3/Lib/encodings/
zlib_codec.py 13 def zlib_encode(input, errors='strict'):
15 return (zlib.compress(input), len(input))
17 def zlib_decode(input, errors='strict'):
19 return (zlib.decompress(input), len(input))
22 def encode(self, input, errors='strict'):
23 return zlib_encode(input, errors)
24 def decode(self, input, errors='strict'):
25 return zlib_decode(input, errors
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
sorting.h 26 // `input`. Output values are in descending order, from largest to smallest.
27 XlaOp TopK(XlaOp input, int64 k);
  /external/tensorflow/tensorflow/compiler/xla/tests/
filecheck.h 26 // Runs FileCheck with the given pattern over given input string. Provided that
28 // matching the input.
29 StatusOr<bool> RunFileCheck(const string& input, const string& pattern);
  /external/tensorflow/tensorflow/tools/graph_transforms/
remove_control_dependencies.cc 34 for (const auto& input : node.input()) {
35 if (input[0] != '^') {
36 new_node->add_input(input);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
swap_bytes.h 29 const uint16_t* input, /* (i) the sequence to swap */
  /external/desugar/java/com/google/devtools/common/options/
Converters.java 35 public Boolean convert(String input) throws OptionsParsingException {
36 if (input == null) {
39 input = input.toLowerCase();
40 if (input.equals("true")
41 || input.equals("1")
42 || input.equals("yes")
43 || input.equals("t")
44 || input.equals("y")) {
47 if (input.equals("false"
    [all...]
  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
bin_encoder.h 27 input */
28 grpc_slice grpc_chttp2_base64_encode(grpc_slice input);
31 standard. Returns a new slice, does not take ownership of the input */
32 grpc_slice grpc_chttp2_huffman_compress(grpc_slice input);
35 grpc_slice x = grpc_chttp2_base64_encode(input);
39 grpc_slice grpc_chttp2_base64_encode_and_huffman_compress(grpc_slice input);
  /external/harfbuzz_ng/test/api/
test-subset.c 37 hb_subset_input_t *input = hb_subset_input_create_or_fail (); local
38 hb_set_t *codepoints = hb_subset_input_unicode_set (input);
45 subset = hb_subset (face, input);
49 hb_subset_input_destroy (input);
59 hb_subset_input_t *input = hb_subset_input_create_or_fail (); local
60 hb_set_t *codepoints = hb_subset_input_unicode_set (input);
67 subset = hb_subset (face, input);
71 hb_subset_input_destroy (input);
81 hb_subset_input_t *input = hb_subset_input_create_or_fail (); local
82 hb_set_t *codepoints = hb_subset_input_unicode_set (input);
    [all...]
  /external/libaom/libaom/av1/encoder/
av1_fwd_txfm1d.h 21 void av1_fdct4_new(const int32_t *input, int32_t *output, int8_t cos_bit,
23 void av1_fdct8_new(const int32_t *input, int32_t *output, int8_t cos_bit,
25 void av1_fdct16_new(const int32_t *input, int32_t *output, int8_t cos_bit,
27 void av1_fdct32_new(const int32_t *input, int32_t *output, int8_t cos_bit,
29 void av1_fdct64_new(const int32_t *input, int32_t *output, int8_t cos_bit,
31 void av1_fadst4_new(const int32_t *input, int32_t *output, int8_t cos_bit,
33 void av1_fadst8_new(const int32_t *input, int32_t *output, int8_t cos_bit,
35 void av1_fadst16_new(const int32_t *input, int32_t *output, int8_t cos_bit,
37 void av1_fidentity4_c(const int32_t *input, int32_t *output, int8_t cos_bit,
39 void av1_fidentity8_c(const int32_t *input, int32_t *output, int8_t cos_bit
    [all...]
dwt.h 20 void av1_fdwt8x8(tran_low_t *input, tran_low_t *output, int stride);
21 void av1_fdwt8x8_uint8_input_c(uint8_t *input, tran_low_t *output, int stride,
23 int av1_haar_ac_sad_8x8_uint8_input(uint8_t *input, int stride, int hbd);
  /external/libchrome/base/debug/
alias_unittest.cc 12 std::unique_ptr<std::string> input = local
16 DEBUG_ALIAS_FOR_CSTR(copy1, input->c_str(), 100 /* > input->size() */);
22 // than the input string.
23 DEBUG_ALIAS_FOR_CSTR(copy2, input->c_str(), 3 /* < input->size() */);

Completed in 2010 milliseconds

1 2 3 4 56 7 8 91011>>