Searched refs:input (Results 176 - 200 of 3184) 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/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/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/chromium_org/chrome/browser/metrics/
H A Dcompression_utils.h12 // Compresses the text in |input| using gzip storing the result in |output|.
13 bool GzipCompress(const std::string& input, std::string* output);
/external/chromium_org/chrome/test/functional/
H A Dpyauto_webdriver.py14 """Type into a text input box and verify its value."""
17 driver.execute_script('document.body.innerHTML = "<input type=\'text\'>"')
18 input = driver.find_element_by_tag_name('input')
19 self.assertEquals('', input.get_attribute('value'))
20 input.send_keys('test')
21 self.assertEquals('test', input.get_attribute('value'))
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_regexes.h14 // Returns true if |pattern| is found in |input|.
15 bool MatchesPattern(const base::string16& input,
/external/chromium_org/net/http/
H A Dmd4.h53 * MD4Sum - computes the MD4 sum over the input buffer per RFC 1320
55 * @param input
56 * buffer containing input data
58 * length of input buffer (number of bytes)
69 void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicInspectorNode.cpp46 // where the input is simply passed through unprocessed to the output.
47 // Note: this only applies if the input and output channel counts match.
50 // Render input stream - try to render directly into output bus for pass-through processing where process() doesn't need to do anything...
51 input(0)->pull(output(0)->bus(), framesToProcess);
74 void AudioBasicInspectorNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
78 ASSERT(input == this->input(0));
79 if (input != this->input(0))
82 unsigned numberOfChannels = input
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dtxt_unittest.py23 input = StringIO.StringIO('Hello there\nHow are you?')
24 gatherer = txt.TxtFile(input)
26 self.failUnless(gatherer.GetText() == input.getvalue())
29 input.getvalue())
/external/chromium_org/tools/page_cycler/common/
H A Dstart.js55 var input = document.createElement('INPUT');
56 input.setAttribute('id', 'iterations');
57 input.setAttribute('type', 'number');
59 input.setAttribute('value', iterations ? iterations : '5');
60 form.appendChild(input);
62 input = document.createElement('INPUT');
63 input.setAttribute('type', 'submit');
64 input.setAttribute('value', 'Start');
65 form.appendChild(input);
/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/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...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_entry_conversion.cc35 bool ConvertToResourceEntry(const google_apis::ResourceEntry& input, argument
45 converted.set_title(input.title());
47 converted.set_resource_id(input.resource_id());
55 input.GetLinkByType(google_apis::Link::LINK_PARENT);
64 converted.set_deleted(input.deleted());
65 converted.set_shared_with_me(HasSharedWithMeLabel(input));
69 file_info->set_last_modified(input.updated_time().ToInternalValue());
72 file_info->set_last_accessed(input.last_viewed_time().ToInternalValue());
73 file_info->set_creation_time(input.published_time().ToInternalValue());
75 if (input
[all...]

Completed in 4803 milliseconds

1234567891011>>