Searched refs:input (Results 126 - 150 of 1820) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DJoyAxisEvent.java33 package com.jme3.input.event;
35 import com.jme3.input.InputManager;
36 import com.jme3.input.Joystick;
/external/stlport/test/unit/
H A Dstrstream_test.cpp19 CPPUNIT_TEST(input);
23 void input();
31 void StrstreamTest::input() function in class:StrstreamTest
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dswitch-001.js40 function SwitchTest( input, expect ) {
43 switch ( input ) {
60 "switch with no breaks, case expressions are numbers. input is "+
61 input,
H A Dswitch-002.js35 function SwitchTest( input, expect ) {
38 switch ( input ) {
57 "switch with no breaks: input is " + input,
H A Dswitch-003.js35 function SwitchTest( input, expect ) {
38 switch ( input ) {
51 "switch with no breaks: input is " + input,
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DDFA.pm60 # From the input stream, predict what alternative will succeed
65 my ($self, $input) = @_;
67 my $mark = $input->mark(); # remember where decision started in input
74 $s = $self->special_state_transition($special_state, $input);
76 $self->no_viable_alt($s, $input);
79 $input->consume();
88 my $c = $input->LA(1); # -1 == \uFFFF, all tokens fit in 65000 space
100 $input->consume();
109 $self->no_viable_alt($s, $input);
[all...]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DUTF8CharsetTest.java40 byte[] input = new byte[] { 97, 98, -27, -76, -108, -26, -107, -113 };
42 internalTestDecode(input, output);
51 String input = "ab\u5D14\u654F";
53 internalTestEncode(input, output);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ProcessReadWriteTest.java29 FileInputStream input = new FileInputStream(FileDescriptor.in);
35 int c = input.read();
38 c = input.read();
42 input.close();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DBCMessageDigest.java26 byte input)
28 digest.update(input);
32 byte[] input,
36 digest.update(input, offset, len);
25 engineUpdate( byte input) argument
31 engineUpdate( byte[] input, int offset, int len) argument
/external/chromium/net/http/
H A Dmd4.h54 * MD4Sum - computes the MD4 sum over the input buffer per RFC 1320
56 * @param input
57 * buffer containing input data
59 * length of input buffer (number of bytes)
70 void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInput.java33 package com.jme3.input;
36 * Abstract interface for an input device.
50 * Queries the device for input. All events should be sent to the
53 * @see #setInputListener(com.jme3.input.RawInputListener)
70 * Sets the input listener to receive events from this device. The
H A DJoyInput.java33 package com.jme3.input;
62 * @param inputManager The input manager requesting to load joysticks
H A DMouseInput.java33 package com.jme3.input;
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DActionListener.java33 package com.jme3.input.controls;
36 * <code>ActionListener</code> is used to receive input events in "digital" style.
41 * When an action listener is registered to a natively digital input, such as a button,
51 * Called when an input to which this listener is registered to is invoked.
H A DAnalogListener.java33 package com.jme3.input.controls;
H A DSoftTextDialogInputListener.java32 package com.jme3.input.controls;
/external/webkit/Source/JavaScriptCore/wtf/
H A DSHA1.h42 void addBytes(const Vector<uint8_t>& input) argument
44 addBytes(input.data(), input.size());
46 void addBytes(const uint8_t* input, size_t length);
/external/webkit/Source/WebCore/webaudio/
H A DAudioBasicProcessorNode.cpp79 AudioBus* sourceBus = input(0)->bus();
82 if (!input(0)->isConnected())
98 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
99 input(0)->pull(output(0)->bus(), framesToProcess);
108 // As soon as we know the channel count of our input, we can lazily initialize.
111 void AudioBasicProcessorNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
115 ASSERT(input == this->input(0));
116 if (input !
[all...]
H A DAudioChannelMerger.cpp67 AudioNodeInput* input = this->input(i); local
68 if (input->isConnected())
69 numberOfOutputChannels += input->bus()->numberOfChannels();
78 AudioNodeInput* input = this->input(i); local
79 if (input->isConnected()) {
80 unsigned numberOfInputChannels = input->bus()->numberOfChannels();
82 // Merge channels from this particular input.
84 AudioChannel* inputChannel = input
[all...]
H A DAudioGainNode.cpp54 // happen in the summing junction input of the AudioNode we're connected to.
62 if (!isInitialized() || !input(0)->isConnected())
65 AudioBus* inputBus = input(0)->bus();
86 // As soon as we know the channel count of our input, we can lazily initialize.
89 void AudioGainNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
91 ASSERT(input && input == this->input(0));
92 if (input != this->input(
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_gmm.h18 // Calculates the probability for |input|, given that |input| comes from a
22 // - input : input sample in Q4.
23 // - mean : mean input in the statistical model, Q7.
28 // - delta : input used when updating the model, Q11.
29 // |delta| = (|input| - |mean|) / |std|^2.
32 // (probability for |input|) =
33 // 1 / |std| * exp(-(|input| - |mean|)^2 / (2 * |std|^2));
34 int32_t WebRtcVad_GaussianProbability(int16_t input,
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DLexer.as30 /** A lexer is recognizer that draws input symbols from a character stream.
37 protected var input:CharStream;
39 public function Lexer(input:CharStream = null, state:RecognizerSharedState = null) {
41 this.input = input;
47 if ( input!=null ) {
48 input.seek(0); // rewind the input
69 state.tokenStartCharIndex = input.index;
70 state.tokenStartCharPositionInLine = input
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DLexer.js1 /** A lexer is recognizer that draws input symbols from a character stream.
6 org.antlr.runtime.Lexer = function(input, state) {
10 if (input) {
11 this.input = input;
19 if ( org.antlr.lang.isValue(this.input) ) {
20 this.input.seek(0); // rewind the input
41 this.state.tokenStartCharIndex = this.input.index();
42 this.state.tokenStartCharPositionInLine = this.input
[all...]
/external/oprofile/libutil++/tests/
H A Dstring_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"
56 for (cur = expect_erase; cur->input; ++cur) {
57 string result = erase_to_last_of(cur->input, ';');
58 check_result("erase_to_last_of()", cur->input, cur->output,
82 for (cur = expect_split; cur->input; ++cur) {
83 string temp = cur->input;
85 check_result("split()", cur->input, cur->output.first, temp);
86 check_result("split()", cur->input, cu
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs66 * problem occurred and/or what was the expected input. While the parser
67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
78 /** <summary>What input stream did the error occur in?</summary> */
130 public RecognitionException( IIntStream input )
131 : this("A recognition error occurred.", input, null)
140 public RecognitionException(string message, IIntStream input) argument
141 : this(message, input, null)
150 public RecognitionException(string message, IIntStream input, Exception innerException) argument
153 this._input = input;
329 ExtractInformationFromTreeNodeStream(ITreeNodeStream input) argument
[all...]

Completed in 283 milliseconds

1234567891011>>