Searched refs:input (Results 201 - 225 of 3184) sorted by relevance

1234567891011>>

/external/chromium_org/ui/webui/resources/css/
H A Dwidgets.css12 input[type='button'],
13 input[type='submit']):not(.custom-appearance):not(.link-button),
15 input[type='checkbox'],
16 input[type='radio'] {
31 input[type='button'],
32 input[type='submit']):not(.custom-appearance):not(.link-button),
45 input[type='button'],
46 input[type='submit']):not(.custom-appearance):not(.link-button) {
66 input[type='checkbox'] {
74 input[typ
[all...]
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java93 CodedInputStream input = CodedInputStream.newInstance(data);
94 assertEquals((int)value, input.readRawVarint32());
96 input = CodedInputStream.newInstance(data);
97 assertEquals(value, input.readRawVarint64());
98 assertTrue(input.isAtEnd());
102 input = CodedInputStream.newInstance(
104 assertEquals((int)value, input.readRawVarint32());
106 input = CodedInputStream.newInstance(
108 assertEquals(value, input.readRawVarint64());
109 assertTrue(input
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java93 CodedInputStream input = CodedInputStream.newInstance(data);
94 assertEquals((int)value, input.readRawVarint32());
96 input = CodedInputStream.newInstance(data);
97 assertEquals(value, input.readRawVarint64());
98 assertTrue(input.isAtEnd());
102 input = CodedInputStream.newInstance(
104 assertEquals((int)value, input.readRawVarint32());
106 input = CodedInputStream.newInstance(
108 assertEquals(value, input.readRawVarint64());
109 assertTrue(input
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py65 problem occurred and/or what was the expected input. While the parser
66 knows its state (such as current input symbol and line info) that
69 perhaps print an entire line of input not just a single token, for example.
75 def __init__(self, input=None):
78 # What input stream did the error occur in?
79 self.input = None
111 if input is not None:
112 self.input = input
113 self.index = input
[all...]
H A Ddfa.py64 def predict(self, input):
66 From the input stream, predict what alternative will succeed
71 mark = input.mark()
80 s = self.specialStateTransition(specialState, input)
82 self.noViableAlt(s, input)
84 input.consume()
92 c = input.LA(1)
112 input.consume()
121 self.noViableAlt(s, input)
125 input
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DDFA.js15 /** From the input stream, predict what alternative will succeed
20 predict: function(input) {
21 var mark = input.mark(), // remember where decision started in input
31 s = this.specialStateTransition(specialState,input);
33 this.noViableAlt(s, input);
36 input.consume();
43 c = input.LA(1); // -1 == \uFFFF, all tokens fit in 65000 space
60 input.consume();
68 this.noViableAlt(s,input);
[all...]
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/scopes/
H A DSymbolTableLexer.m341 NSInteger LA1_0 = [input LA:1];
351 if ((([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
352 [input consume];
354 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
367 [ANTLREarlyExitException newException:input decisionNumber:1];
408 NSInteger LA2_0 = [input LA:1];
418 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
419 [input consum
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DChannelMergerNode.cpp80 AudioNodeInput* input = this->input(i); local
81 if (input->isConnected()) {
82 unsigned numberOfInputChannels = input->bus()->numberOfChannels();
84 // Merge channels from this particular input.
86 AudioChannel* inputChannel = input->bus()->channel(j);
104 void ChannelMergerNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
111 AudioNodeInput* input = this->input(i); local
112 if (input
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
H A Dwidgets.css14 input[type='button'],
15 input[type='submit']):not(.custom-appearance):not(.link-button),
17 input[type='checkbox'],
18 input[type='radio'] {
33 input[type='button'],
34 input[type='submit']):not(.custom-appearance):not(.link-button),
47 input[type='button'],
48 input[type='submit']):not(.custom-appearance):not(.link-button) {
68 input[type='checkbox'] {
76 input[typ
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DFailedPredicateException.as39 public function FailedPredicateException(input:IntStream,
43 super(input);
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);

Completed in 460 milliseconds

1234567891011>>