Searched refs:input (Results 251 - 275 of 3771) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedRangeException.as33 public function MismatchedRangeException(a:int, b:int, input:IntStream) {
34 super(input);
H A DMismatchedSetException.as33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
34 super(input);
H A DMismatchedTokenException.as34 public function MismatchedTokenException(expecting:int, input:IntStream) {
35 super(input);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMissingTokenException.cs59 public MissingTokenException(int expecting, IIntStream input, object inserted) argument
60 : this(expecting, input, inserted, null) {
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
64 : base(expecting, input, tokenNames) {
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
69 : base(message, expecting, input, tokenNames) {
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
74 : base(message, expecting, input, tokenNames, innerException) {
H A DUnwantedTokenException.cs53 public UnwantedTokenException(int expecting, IIntStream input) argument
54 : base(expecting, input) {
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) argument
58 : base(expecting, input, tokenNames) {
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) argument
62 : base(message, expecting, input, tokenNames) {
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) argument
66 : base(message, expecting, input, tokenNames, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMissingTokenException.cs64 public MissingTokenException(int expecting, IIntStream input, object inserted) argument
65 : this(expecting, input, inserted, null)
69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
70 : base(expecting, input, tokenNames)
75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
76 : base(message, expecting, input, tokenNames)
81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
82 : base(message, expecting, input, tokenNames, innerException)
H A DUnwantedTokenException.cs58 public UnwantedTokenException(int expecting, IIntStream input) argument
59 : base(expecting, input)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) argument
64 : base(expecting, input, tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) argument
69 : base(message, expecting, input, tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) argument
74 : base(message, expecting, input, tokenNames, innerException)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DFailedPredicateException.java42 public FailedPredicateException(IntStream input, argument
46 super(input);
H A DMismatchedRangeException.java36 public MismatchedRangeException(int a, int b, IntStream input) { argument
37 super(input);
H A DMismatchedTreeNodeException.java41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) { argument
42 super(input);
H A DUnwantedTokenException.java35 public UnwantedTokenException(int expecting, IntStream input) { argument
36 super(expecting, input);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeFilter.java86 public TreeFilter(TreeNodeStream input) { argument
87 this(input, new RecognizerSharedState());
89 public TreeFilter(TreeNodeStream input, RecognizerSharedState state) { argument
90 super(input, state);
91 originalAdaptor = input.getTreeAdaptor();
92 originalTokenStream = input.getTokenStream();
100 input = new CommonTreeNodeStream(originalAdaptor, t);
101 ((CommonTreeNodeStream)input).setTokenStream(originalTokenStream);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DEarlyExitException.js5 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
8 org.antlr.runtime.EarlyExitException = function(decisionNumber, input) {
10 this, input);
H A DMismatchedNotSetException.js1 org.antlr.runtime.MismatchedNotSetException = function(expecting, input) {
2 org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
H A DMismatchedSetException.js1 org.antlr.runtime.MismatchedSetException = function(expecting, input) {
3 this, input);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.java38 public SimpleCLexer(CharStream input) { argument
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { argument
42 super(input,state);
259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
260 input
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.java38 public SimpleCLexer(CharStream input) { argument
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { argument
42 super(input,state);
259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
260 input
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/
H A Dsimplecalc.pl12 my $input = ANTLR::Runtime::ANTLRFileStream->new({ file_name => $ARGV[0] });
13 my $lexer = SimpleCalcLexer->new({ input => $input });
15 my $parser = SimpleCalcParser->new({ input => $tokens });
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g1 /** Convert the simple input to be java code; wrap in a class,
5 * in Main will print out the original input stream.
16 $input->insert_before($input->LT(1), "public class Wrapper {\n");
18 $input->insert_after($method.stop, "\n}\n");
24 { $input->replace($m, "public void"); }
/external/chromium_org/chrome/browser/resources/
H A Dabout_conflicts.js30 * Takes the |moduleListData| input argument which represents data about
37 var input = new JsEvalContext(moduleListData);
39 jstProcess(input, output);
H A Dabout_flash.js6 * Takes the |moduleListData| input argument which represents data about
13 var input = new JsEvalContext(moduleListData);
15 jstProcess(input, output);
H A Dabout_nacl.js9 * Takes the |moduleListData| input argument which represents data about
16 var input = new JsEvalContext(moduleListData);
18 jstProcess(input, output);
H A Dabout_voicesearch.js6 * Takes the |moduleListData| input argument which represents data about
12 var input = new JsEvalContext(moduleListData);
14 jstProcess(input, output);
/external/chromium_org/components/os_crypt/
H A Dos_crypt_win.cc31 DATA_BLOB input; local
32 input.pbData = const_cast<BYTE*>(
34 input.cbData = static_cast<DWORD>(plaintext.length());
37 BOOL result = CryptProtectData(&input, L"", NULL, NULL, NULL,
52 DATA_BLOB input; local
53 input.pbData = const_cast<BYTE*>(
55 input.cbData = static_cast<DWORD>(ciphertext.length());
58 BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL,
/external/chromium_org/mojo/common/
H A Dcommon_type_converters.h21 static String Convert(const base::StringPiece& input);
26 static base::StringPiece Convert(const String& input);
31 static String Convert(const base::string16& input);
36 static base::string16 Convert(const String& input);
41 static String Convert(const GURL& input);
46 static GURL Convert(const String& input);
55 static std::string Convert(const Array<uint8_t>& input);
60 static Array<uint8_t> Convert(const std::string& input);

Completed in 2070 milliseconds

<<11121314151617181920>>