Searched refs:input (Results 101 - 125 of 3184) sorted by relevance

1234567891011>>

/external/ppp/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
11 MD5_Update (&context, input, inlen);
/external/v8/test/mjsunit/
H A Dleakcheck.js43 var input = "123456789";
44 var result = input.replace(/[4-6]+/g, "xxx");
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeNodeStream.java41 protected TreeNodeStream input; field in class:DebugTreeNodeStream
47 public DebugTreeNodeStream(TreeNodeStream input, argument
50 this.input = input;
51 this.adaptor = input.getTreeAdaptor();
52 this.input.setUniqueNavigationNodes(true);
65 Object node = input.LT(1);
66 input.consume();
71 return input.get(i);
75 Object node = input
[all...]
H A DDebugTreeParser.java48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) { argument
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) { argument
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
57 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg) { argument
58 this(input instanceo
84 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DAbstractTLexer.java35 * the input to lex into tokens.
37 * @param input A valid character stream that contains the ruleSrc code you
40 public AbstractTLexer(CharStream input) { argument
41 this(input, new RecognizerSharedState());
47 * @param input The character stream we are going to lex
50 public AbstractTLexer(CharStream input, RecognizerSharedState state) { argument
51 super(input,state);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DAbstractInputEditor.java41 protected ITestCaseInput input; field in class:AbstractInputEditor
42 public void setInput(ITestCaseInput input) { argument
43 this.input = input;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs59 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state) argument
60 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), state) {
64 public DebugTreeParser(ITreeNodeStream input, RecognizerSharedState state) argument
65 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, null), state) {
68 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg) argument
69 : this(input i
99 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeParser.cs59 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state ) argument
60 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), state )
65 public DebugTreeParser( ITreeNodeStream input, RecognizerSharedState state ) argument
66 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, null ), state )
70 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg ) argument
71 : this( input i
107 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DParser.pm10 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
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DLexer.pm13 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => 'ABC' });
14 my $lexer = ANTLR::Runtime::Lexer->new({ input => $input });
/external/chromium_org/media/base/
H A Daudio_splicer.cc38 bool AudioSplicer::AddInput(const scoped_refptr<AudioBuffer>& input) { argument
39 DCHECK(!received_end_of_stream_ || input->end_of_stream());
41 if (input->end_of_stream()) {
42 output_buffers_.push_back(input);
47 DCHECK(input->timestamp() != kNoTimestamp());
48 DCHECK(input->duration() > base::TimeDelta());
49 DCHECK_GT(input->frame_count(), 0);
52 output_timestamp_helper_.SetBaseTimestamp(input->timestamp());
54 if (output_timestamp_helper_.base_timestamp() > input->timestamp()) {
59 base::TimeDelta timestamp = input
[all...]
/external/valgrind/main/memcheck/tests/s390x/
H A Dcu21.c8 /* Define various input buffers. */
91 uint8_t *input = malloc(10); local
94 do_cu21(malloc(4), 4, (void *)input, 2); // complaint
96 /* Read 2 bytes from input buffer. First byte is uninitialised */
97 input = malloc(10);
98 input[1] = 0x0;
99 do_cu21(malloc(4), 4, (void *)input, 2); // complaint
101 /* Read 2 bytes from input buffer. Second byte is uninitialised */
102 input = malloc(10);
103 input[
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dlam_stam.c6 char input[44] = "0123456789\n" variable
13 asm volatile( "larl 1,input\n\t"
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DNoViableAltException.java41 IntStream input)
43 super(input);
50 if ( input instanceof CharStream ) {
38 NoViableAltException(String grammarDecisionDescription, int decisionNumber, int stateNumber, IntStream input) argument
/external/chromium/chrome/browser/net/
H A Dquoted_printable.h18 // Encodes the input string with the quoted-printable encoding.
19 void QuotedPrintableEncode(const std::string& input, std::string* output);
21 // Decodes the quoted-printable input string. Returns true if the input string
24 bool QuotedPrintableDecode(const std::string& input, std::string* output);
29 int IsEOL(const std::string::const_iterator& iter, const std::string& input);
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dkeyboard_ui.css6 input[type=email]:focus,
7 input[type=number]:focus,
8 input[type=password]:focus,
9 input[type=tel]:focus,
10 input[type=text]:focus,
11 input[type=url]:focus {
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.h14 bool DecodePNG(const unsigned char* input, size_t input_size,
19 bool EncodeRGBAPNG(const unsigned char* input,
26 bool EncodeBGRAPNG(const unsigned char* input,
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidTouchInputListener.java1 package com.jme3.input.android;
5 import com.jme3.input.RawInputListener;
6 import com.jme3.input.event.TouchEvent;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.h15 void vp9_fht4x4(TX_TYPE tx_type, const int16_t *input, int16_t *output,
18 void vp9_fht8x8(TX_TYPE tx_type, const int16_t *input, int16_t *output,
21 void vp9_fht16x16(TX_TYPE tx_type, const int16_t *input, int16_t *output,
/external/stlport/test/unit/
H A Ddivides_test.cpp30 int input [3] = { 2, 3, 4 }; local
31 int result = accumulate(input, input + 3, 48, divides<int>());
H A Dtimes_test.cpp31 int input [4] = { 1, 5, 7, 2 }; local
32 int total = accumulate(input, input + 4, 1, multiplies<int>());
/external/icu4c/i18n/
H A Dcsrucode.cpp34 const uint8_t *input = textIn->fRawInput; local
37 if (input[0] == 0xFE && input[1] == 0xFF) {
58 const uint8_t *input = textIn->fRawInput; local
61 if (input[0] == 0xFF && input[1] == 0xFE && (input[2] != 0x00 || input[3] != 0x00)) {
77 const uint8_t *input = textIn->fRawInput; local
84 if (getChar(input,
128 getChar(const uint8_t *input, int32_t index) const argument
144 getChar(const uint8_t *input, int32_t index) const argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
H A DTestlexer.m103 NSInteger LA1_0 = [input LA:1];
113 if (([input LA:1]>='0' && [input LA:1]<='9')||([input LA:1]>='A' && [input LA:1]<='Z')||([input LA:1]>='a' && [input LA:1]<='z')) {
114 [input consume];
117 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input];
179 if (([input L
[all...]
/external/chromium_org/base/strings/
H A Dstring_number_conversions.h50 // Perform a best-effort conversion of the input string to a numeric type,
64 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
65 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
67 BASE_EXPORT bool StringToUint(const StringPiece& input, unsigned* output);
68 BASE_EXPORT bool StringToUint(const StringPiece16& input, unsigned* output);
70 BASE_EXPORT bool StringToInt64(const StringPiece& input, int64* output);
71 BASE_EXPORT bool StringToInt64(const StringPiece16& input, int64* output);
73 BASE_EXPORT bool StringToUint64(const StringPiece& input, uint64* output);
74 BASE_EXPORT bool StringToUint64(const StringPiece16& input, uint64* output);
76 BASE_EXPORT bool StringToSizeT(const StringPiece& input, size_
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as55 * problem occurred and/or what was the expected input. While the parser
56 * knows its state (such as current input symbol and line info) that
59 * perhaps print an entire line of input not just a single token, for example.
64 /** What input stream did the error occur in? */
65 public var input:IntStream;
99 public function RecognitionException(input:IntStream = null) {
100 if (input == null) {
103 this.input = input;
104 this.index = input
[all...]

Completed in 704 milliseconds

1234567891011>>