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

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DFailedPredicateException.js7 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
12 org.antlr.runtime.FailedPredicateException = function(input, ruleName, predicateText){
13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
H A DMismatchedRangeExceptions.js1 org.antlr.runtime.MismatchedRangeException = function(a, b, input) {
7 this, input);
H A DMismatchedTokenException.js1 org.antlr.runtime.MismatchedTokenException = function(expecting, input) {
6 this, input);
/external/chromium/chrome/browser/autocomplete/
H A Dbuiltin_provider.cc26 void BuiltinProvider::Start(const AutocompleteInput& input, argument
29 if ((input.type() == AutocompleteInput::INVALID) ||
30 (input.type() == AutocompleteInput::FORCED_QUERY) ||
31 (input.type() == AutocompleteInput::QUERY) ||
32 (input.matches_requested() == AutocompleteInput::BEST_MATCH))
36 if (StartsWith(*i, input.text(), false)) {
44 if (match.contents.length() > input.text().length()) {
46 ACMatchClassification(input.text().length(),
H A Dkeyword_provider.h29 // Autocomplete provider for keyword input.
32 // with some user input, each time expecting to receive a small set of the best
35 // To construct these matches, the provider treats user input as a series of
38 // URL; the rest of the user's input is taken as the input to the query. For
40 // input like "bug 123" would become "http://b/issue?id=123".
42 // Because we do prefix matching, user input could match more than one keyword
43 // at once. (Example: the input "f jazz" matches all keywords starting with
50 // "<enter term(s)>" as the substituted input, and does nothing when selected.
58 // Returns the replacement string from the user input
[all...]
/external/chromium/crypto/
H A Dsecure_hash_default.cc24 virtual void Update(const void* input, size_t len) { argument
25 SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DJoyButtonTrigger.java33 package com.jme3.input.controls;
35 import com.jme3.input.Joystick;
/external/protobuf/src/google/protobuf/
H A Dmessage_lite.h108 // Fill the message with a protocol buffer parsed from the given input
109 // stream. Returns false on a read error or if the input is in the
111 bool ParseFromCodedStream(io::CodedInputStream* input);
114 bool ParsePartialFromCodedStream(io::CodedInputStream* input);
115 // Read a protocol buffer from the given zero-copy input stream. If
116 // successful, the entire input will be consumed.
117 bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
120 bool ParsePartialFromZeroCopyStream(io::ZeroCopyInputStream* input);
121 // Read a protocol buffer from the given zero-copy input stream, expecting
123 // this many bytes will have been consumed from the input
[all...]
/external/webkit/Source/WebCore/
H A Dmake-export-file-generator42 <%- input.each_line do |line| -%>
51 File.open(input_file) do |input|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DEarlyExitException.cs55 public EarlyExitException(int decisionNumber, IIntStream input) argument
56 : base(input) {
60 public EarlyExitException(string message, int decisionNumber, IIntStream input) argument
61 : base(message, input) {
65 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException) argument
66 : base(message, input, innerException) {
H A DFailedPredicateException.cs62 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) argument
63 : base(input) {
68 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) argument
69 : base(message, input) {
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) argument
75 : base(message, input, innerException) {
H A DMismatchedRangeException.cs55 public MismatchedRangeException(int a, int b, IIntStream input) argument
56 : base(input) {
61 public MismatchedRangeException(string message, int a, int b, IIntStream input) argument
62 : base(message, input) {
67 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) argument
68 : base(message, input, innerException) {
H A DMismatchedSetException.cs54 public MismatchedSetException(BitSet expecting, IIntStream input) argument
55 : base(input) {
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) argument
60 : base(message, input) {
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
65 : base(message, input, innerException) {
H A DMismatchedTreeNodeException.cs55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input) argument
56 : base(input) {
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) argument
61 : base(message, input) {
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) argument
66 : base(message, input, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DEarlyExitException.cs60 public EarlyExitException(int decisionNumber, IIntStream input) argument
61 : base(input)
66 public EarlyExitException(string message, int decisionNumber, IIntStream input) argument
67 : base(message, input)
72 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException) argument
73 : base(message, input, innerException)
H A DFailedPredicateException.cs67 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) argument
68 : base(input)
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) argument
75 : base(message, input)
81 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) argument
82 : base(message, input, innerException)
H A DMismatchedRangeException.cs60 public MismatchedRangeException(int a, int b, IIntStream input) argument
61 : base(input)
67 public MismatchedRangeException(string message, int a, int b, IIntStream input) argument
68 : base(message, input)
74 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) argument
75 : base(message, input, innerException)
H A DMismatchedSetException.cs59 public MismatchedSetException( BitSet expecting, IIntStream input )
60 : base( input )
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input) argument
66 : base(message, input)
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
72 : base(message, input, innerException)
H A DMismatchedTreeNodeException.cs60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input )
61 : base( input )
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) argument
67 : base(message, input)
72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) argument
73 : base(message, input, innerException)
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
12 this.input = input;
33 j = this.input.size();
35 badText = this.input.toString(i, j);
38 badText = this.input.toString(this.start, this.stop);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Drule-tracer.rb22 @input = options[ :input ]
32 if @input
33 input_symbol = @input.look || :EOF
47 if @input
48 input_symbol = ( @input.look || :EOF )
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dvia-parser.rb14 @input.insert_before($start,"public class Wrapper {\n")
15 @input.insert_after($stop, "\n}\n")
22 {@input.replace($m, "public void");}
36 @input.insert_after($lcurly, "\nint "+it+";")
62 example 'using a TokenRewriteStream to rewrite input text while parsing' do
63 input = <<-END.fixed_indent( 0 )
91 lexer = TokenRewrites::Lexer.new( input )
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_AvailTest.java35 // the input)
42 StringBuffer input = new StringBuffer("");
57 input.append((char) c);
59 expected = Integer.parseInt(input.toString());
66 input = new StringBuffer("");
72 input.append((char) c);
74 expected = Integer.parseInt(input.toString());
/external/icu4c/i18n/
H A Dcsrutf8.cpp30 const uint8_t *input = det->fRawInput; local
36 input[0] == 0xEF && input[1] == 0xBB && input[2] == 0xBF) {
42 int32_t b = input[i];
73 b = input[i];
/external/llvm/utils/
H A DDSAextract.py37 #open the input file
38 input = open(sys.argv[1], 'r') variable
59 buffer = input.readline()
70 buffer = input.readline()
84 input = open(sys.argv[1], 'r') variable
86 buffer = input.readline()
110 buffer = input.readline()

Completed in 281 milliseconds

<<11121314151617181920>>