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

1234567891011>>

/external/compiler-rt/lib/
H A Dashrti3.c27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/external/webkit/Tools/Scripts/webkitpy/test/
H A Dcat_unittest.py33 def assert_cat(self, input):
35 sys.stdin = StringIO.StringIO(input)
37 self.assertStdout(input)
50 input = 'foo bar baz\n'
51 output = executive.Executive().run_command(cat.command_arguments(), input=input)
52 self.assertEqual(input, output)
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DRecognitionException.pm11 has 'input' => (
64 my $input = $args->{input};
65 $new_args->{input} = $input;
66 $new_args->{index} = $input->index();
68 if ($input->does('ANTLR::Runtime::TokenStream')) {
69 my $token = $input->LT(1);
75 if ($input->does('ANTLR::Runtime::TreeNodeStream')) {
76 # extract_information_from_tree_node_stream($input);
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java54 * problem occurred and/or what was the expected input. While the parser
55 * knows its state (such as current input symbol and line info) that
58 * perhaps print an entire line of input not just a single token, for example.
63 /** What input stream did the error occur in? */
64 public transient IntStream input; field in class:RecognitionException
102 public RecognitionException(IntStream input) { argument
103 this.input = input;
104 this.index = input.index();
105 if ( input instanceo
123 extractInformationFromTreeNodeStream(IntStream input) argument
[all...]
H A DLexer.java30 /** A lexer is recognizer that draws input symbols from a character stream.
37 protected CharStream input; field in class:Lexer
42 public Lexer(CharStream input) { argument
43 this.input = input;
46 public Lexer(CharStream input, RecognizerSharedState state) { argument
48 this.input = input;
54 if ( input!=null ) {
55 input
127 setCharStream(CharStream input) argument
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js18 * problem occurred and/or what was the expected input. While the parser
19 * knows its state (such as current input symbol and line info) that
22 * perhaps print an entire line of input not just a single token, for example.
27 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
31 org.antlr.runtime.RecognitionException = function(input) {
33 this.input = input;
34 this.index = input.index();
35 if ( input instanceo
[all...]
H A DMismatchedTreeNodeException.js1 org.antlr.runtime.MismatchedTreeNodeException = function(expecting, input) {
2 if (expecting && input) {
4 this, input);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs37 * A lexer is recognizer that draws input symbols from a character stream.
45 protected ICharStream input; field in class:Antlr.Runtime.Lexer
50 public Lexer(ICharStream input) { argument
51 this.input = input;
54 public Lexer(ICharStream input, RecognizerSharedState state) argument
56 this.input = input;
66 return input.Substring(state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex);
75 return input
[all...]
H A DMismatchedNotSetException.cs51 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
52 : base(expecting, input) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs38 * A lexer is recognizer that draws input symbols from a character stream.
47 protected ICharStream input; field in class:Antlr.Runtime.Lexer
53 public Lexer( ICharStream input )
55 this.input = input;
58 public Lexer( ICharStream input, RecognizerSharedState state ) argument
61 this.input = input;
74 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
86 return input
[all...]
H A DMismatchedNotSetException.cs56 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
57 : base(expecting, input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
62 : base(message, expecting, input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
67 : base(message, expecting, input, innerException)
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as39 protected var input:TreeNodeStream;
41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) {
43 treeNodeStream = input;
48 if ( input!=null ) {
49 input.seek(0); // rewind the input
53 /** Set the input stream */
54 public function set treeNodeStream(input:TreeNodeStream):void {
55 this.input = input;
[all...]
/external/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java41 SemanticException(IntStream input, String errorMessage, Object... messageArguments) { argument
42 super(input);
46 SemanticException(IntStream input, Exception ex) { argument
47 super(input);
51 SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArguments) { argument
53 this.input = input;
61 SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) { argument
63 this.input = input;
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangLexer.m181 NSInteger LA1_0 = [input LA:1];
191 if ((([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
192 [input consume];
194 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
207 [ANTLREarlyExitException newException:input decisionNumber:1];
248 NSInteger LA2_0 = [input LA:1];
258 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
259 [input consum
[all...]
/external/libvpx/vp8/decoder/
H A Ddequantize.c17 extern void vp8_short_idct4x4llm_c(short *input, short *output, int pitch) ;
18 extern void vp8_short_idct4x4llm_1_c(short *input, short *output, int pitch);
34 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *pred, argument
44 input[i] = dq[i] * input[i];
48 vp8_short_idct4x4llm_c(input, output, 4 << 1);
50 vpx_memset(input, 0, 32);
73 void vp8_dequant_dc_idct_add_c(short *input, short *dq, unsigned char *pred, argument
82 input[0] = (short)Dc;
86 input[
[all...]
/external/e2fsprogs/resize/
H A Donline.c25 struct ext2_new_group_input input; local
133 input.group = i;
134 input.block_bitmap = new_fs->group_desc[i].bg_block_bitmap;
135 input.inode_bitmap = new_fs->group_desc[i].bg_inode_bitmap;
136 input.inode_table = new_fs->group_desc[i].bg_inode_table;
137 input.blocks_count = sb->s_blocks_per_group;
139 input.blocks_count = new_fs->super->s_blocks_count -
143 input.reserved_blocks = (blk_t) (percent * input.blocks_count
147 printf("new block bitmap is at 0x%04x\n", input
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.m211 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
212 [input consume];
214 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
222 NSInteger LA1_0 = [input LA:1];
232 if ((([input LA:1] >= '0') && ([input L
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioNodeOutput.cpp108 // Announce to any nodes we're connected to that we changed our channel count for its input.
110 AudioNodeInput* input = *i; local
111 AudioNode* connectionNode = input->node();
112 connectionNode->checkNumberOfChannelsForInput(input);
124 // but we can't process in-place if we're connected to more than one input (fan-out > 1).
155 void AudioNodeOutput::addInput(AudioNodeInput* input) argument
159 ASSERT(input);
160 if (!input)
163 m_inputs.add(input);
166 void AudioNodeOutput::removeInput(AudioNodeInput* input) argument
183 AudioNodeInput* input = *m_inputs.begin(); local
194 AudioNodeInput* input = *i; local
207 AudioNodeInput* input = *i; local
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCLexer.m546 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
547 [input consume];
549 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
557 NSInteger LA1_0 = [input LA:1];
567 if ((([input LA:1] >= '0') && ([input L
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/
H A Dmexpr.pl14 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $_ });
15 my $lexer = MExprLexer->new($input);
/external/oprofile/libutil++/tests/
H A Dfile_manip_tests.cpp24 Input input; member in struct:input_output
30 static void check_result(char const * fct_name, Input const & input, argument
35 << "for:\n\"" << input << "\"\n"
81 for (cur = expect_dirname; cur->input; ++cur) {
82 string result = op_dirname(cur->input);
83 check_result("dirname", cur->input, cur->output, result);
109 for (cur = expect_basename; cur->input; ++cur) {
110 string result = op_basename(cur->input);
111 check_result("basename", cur->input, cur->output, result);
131 for (cur = expect_is_directory; cur->input;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs40 protected SlimStringStream input; field in class:Antlr.Runtime.SlimLexer
49 public SlimLexer( ICharStream input )
51 this.input = (SlimStringStream)input;
54 public SlimLexer( ICharStream input, RecognizerSharedState state ) argument
57 this.input = (SlimStringStream)input;
70 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
82 return input.Line;
86 input
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DNoViableAltException.as38 input:IntStream)
40 super(input);
47 if ( input is CharStream ) {
/external/elfutils/src/
H A Dylwrap27 # * INPUT is the input file
34 # The input.
35 input="$1"
37 case "$input" in
43 input="`pwd`/$input"
74 $prog ${1+"$@"} "$input"
89 # The directory holding the input.
90 input_dir=`echo "$input" | sed -e 's,\([\\/]\)[^\\/]*$,\1,'`
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyInput.java33 package com.jme3.input.dummy;
35 import com.jme3.input.Input;
36 import com.jme3.input.RawInputListener;
40 * input events.

Completed in 527 milliseconds

1234567891011>>