Searched refs:input (Results 76 - 100 of 3771) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs54 protected ITreeNodeStream input; field in class:Antlr.Runtime.Tree.TreeParser
56 public TreeParser(ITreeNodeStream input) argument
59 SetTreeNodeStream(input);
62 public TreeParser(ITreeNodeStream input, RecognizerSharedState state) argument
65 SetTreeNodeStream(input);
70 if (input != null) {
71 input.Seek(0); // rewind the input
75 /** <summary>Set the input stream</summary> */
76 public virtual void SetTreeNodeStream(ITreeNodeStream input) { argument
90 GetCurrentInputSymbol(IIntStream input) argument
94 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
145 RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) argument
[all...]
H A DTreeFilter.cs87 public TreeFilter( ITreeNodeStream input )
88 : this( input, new RecognizerSharedState() )
91 public TreeFilter( ITreeNodeStream input, RecognizerSharedState state ) argument
92 : base( input, state )
94 originalAdaptor = input.TreeAdaptor;
95 originalTokenStream = input.TokenStream;
107 input = new CommonTreeNodeStream( originalAdaptor, t );
108 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs56 protected ITreeNodeStream input; field in class:Antlr.Runtime.Tree.TreeParser
58 public TreeParser( ITreeNodeStream input )
61 SetTreeNodeStream( input );
64 public TreeParser( ITreeNodeStream input, RecognizerSharedState state ) argument
67 SetTreeNodeStream( input );
73 if ( input != null )
75 input.Seek( 0 ); // rewind the input
79 /** <summary>Set the input stream</summary> */
80 public virtual void SetTreeNodeStream( ITreeNodeStream input )
103 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
159 RecoverFromMismatchedToken( IIntStream input, int ttype, BitSet follow ) argument
[all...]
H A DTreeFilter.cs42 public TreeFilter( ITreeNodeStream input )
43 : this( input, new RecognizerSharedState() )
46 public TreeFilter( ITreeNodeStream input, RecognizerSharedState state ) argument
47 : base( input, state )
49 originalAdaptor = input.TreeAdaptor;
50 originalTokenStream = input.TokenStream;
62 input = new CommonTreeNodeStream( originalAdaptor, t );
63 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream;
/external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
H A Dt.pl12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => '010' });
13 my $lexer = TLexer->new($input);
/external/chromium_org/ppapi/shared_impl/
H A Darray_writer.cc30 const std::vector<scoped_refptr<Resource> >& input) {
34 static_cast<uint32_t>(input.size()),
41 if (input.empty())
48 for (size_t i = 0; i < input.size(); i++)
49 dest_resources[i] = input[i]->GetReference();
53 bool ArrayWriter::StoreResourceVector(const std::vector<PP_Resource>& input) { argument
57 static_cast<uint32_t>(input.size()),
64 if (input.empty())
68 for (size_t i = 0; i < input.size(); i++)
69 PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(input[
29 StoreResourceVector( const std::vector<scoped_refptr<Resource> >& input) argument
77 StoreVarVector( const std::vector<scoped_refptr<Var> >& input) argument
101 StoreVarVector(const std::vector<PP_Var>& input) argument
[all...]
/external/compiler-rt/lib/builtins/
H A Dashldi3.c27 dwords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dashlti3.c27 twords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dlshrdi3.c27 udwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrti3.c27 utwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/external/lldb/test/lang/c/inlines/
H A Dinlines.c7 not_inlined_2 (int input) argument
9 printf ("Called in not_inlined_2 with : %d.\n", input);
10 return input;
14 not_inlined_1 (int input) argument
16 printf ("Called in not_inlined_1 with %d.\n", input);
17 return not_inlined_2(input);
/external/lldb/test/python_api/frame/inlines/
H A Dinlines.c7 not_inlined_2 (int input) argument
9 printf ("Called in not_inlined_2 with : %d.\n", input);
10 return input;
14 not_inlined_1 (int input) argument
16 printf ("Called in not_inlined_1 with %d.\n", input);
17 return not_inlined_2(input);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java21 * Returns the next index in {@code input} at or after {@code pos} that
22 * contains a character from {@code characters}. Returns the input length if
25 public static int skipUntil(String input, int pos, String characters) { argument
26 for (; pos < input.length(); pos++) {
27 if (characters.indexOf(input.charAt(pos)) != -1) {
35 * Returns the next non-whitespace character in {@code input} that is white
36 * space. Result is undefined if input contains newline characters.
38 public static int skipWhitespace(String input, int pos) { argument
39 for (; pos < input.length(); pos++) {
40 char c = input
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DParser.js4 org.antlr.runtime.Parser = function(input, state) {
6 this.setTokenStream(input);
13 if ( org.antlr.lang.isValue(this.input) ) {
14 this.input.seek(0); // rewind the input
18 getCurrentInputSymbol: function(input) {
19 return input.LT(1);
22 getMissingSymbol: function(input,
30 var current = input.LT(1);
34 current = input
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dmd5digest_unittest.cc17 std::string Md5(const std::string& input) { argument
19 return ComputeDigest(&md5, input);
40 std::string input = "abcdefghijklmnopqrstuvwxyz"; local
42 for (size_t i = 0; i < input.size(); ++i) {
43 md5.Update(&input[i], 1);
52 std::string input = "message digest"; local
53 EXPECT_EQ("f96b697d7cb7938d525a2f31aaf161d0", ComputeDigest(&md5, input));
54 input = "abcdefghijklmnopqrstuvwxyz";
55 EXPECT_EQ("c3fcd3d76192e4007dfb496cca67e13b", ComputeDigest(&md5, input));
60 std::string input local
75 EXPECT_EQ(static_cast<char>(i), input[i]); local
[all...]
H A Dsha1digest_unittest.cc17 std::string Sha1(const std::string& input) { argument
19 return ComputeDigest(&sha1, input);
40 std::string input = local
43 for (size_t i = 0; i < input.size(); ++i) {
44 sha1.Update(&input[i], 1);
53 std::string input = "abc"; local
55 ComputeDigest(&sha1, input));
56 input = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
58 ComputeDigest(&sha1, input));
63 std::string input local
78 EXPECT_EQ(static_cast<char>(i), input[i]); local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugParser.cs55 public DebugParser(ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state) argument
56 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, dbg), state) {
60 public DebugParser(ITokenStream input, RecognizerSharedState state) argument
61 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, null), state) {
64 public DebugParser(ITokenStream input, IDebugEventListener dbg) argument
65 : this(input i
[all...]
H A DDebugTreeNodeStream.cs47 protected ITreeNodeStream input; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
53 public DebugTreeNodeStream(ITreeNodeStream input, argument
55 this.input = input;
56 this.adaptor = input.TreeAdaptor;
57 this.input.UniqueNavigationNodes = true;
72 return input.Index;
77 return input.TokenStream;
87 return input;
99 return input
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugParser.cs57 public DebugParser( ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state ) argument
58 : base( input is DebugTokenStream ? input : new DebugTokenStream( input, dbg ), state )
63 public DebugParser( ITokenStream input, RecognizerSharedState state ) argument
64 : base( input is DebugTokenStream ? input : new DebugTokenStream( input, null ), state )
68 public DebugParser( ITokenStream input, IDebugEventListener dbg ) argument
69 : this( input i
[all...]
H A DDebugTreeNodeStream.cs49 protected ITreeNodeStream input; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
55 public DebugTreeNodeStream( ITreeNodeStream input, argument
58 this.input = input;
59 this.adaptor = input.TreeAdaptor;
60 this.input.UniqueNavigationNodes = true;
80 return input.Index;
87 return input.TokenStream;
101 return input;
115 return input
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketExtensionParserTest.cpp44 CString input("extension");
47 WebSocketExtensionParser parser(input.data(), input.data() + input.length());
56 CString input("extension; foo=FOO; bar=BAR; baz");
59 WebSocketExtensionParser parser(input.data(), input.data() + input.length());
72 CString input("extension; foo=FOO; bar=\"BA\\R\"");
75 WebSocketExtensionParser parser(input
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DEarlyExitException.as34 public function EarlyExitException(decisionNumber:int, input:IntStream) {
35 super(input);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedNotSetException.java34 public MismatchedNotSetException(BitSet expecting, IntStream input) { argument
35 super(expecting, input);
H A DMismatchedSetException.java36 public MismatchedSetException(BitSet expecting, IntStream input) { argument
37 super(input);
H A DMismatchedTokenException.java37 public MismatchedTokenException(int expecting, IntStream input) { argument
38 super(input);

Completed in 366 milliseconds

1234567891011>>