Searched refs:input (Results 226 - 250 of 3771) sorted by relevance

1234567891011>>

/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream/istream_sentry/ctor
/external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/nothing_to_do
/external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.reqmts/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.reqmts/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.reqmts/tested_elsewhere
/external/libcxx/test/input.output/iostream.format/input.streams/istream.manip/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.manip/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.manip/ws
/external/libcxx/test/input.output/iostream.format/input.streams/istream.rvalue/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.rvalue/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.rvalue/rvalue
/external/pcre/dist/
H A Dpcre_scanner_unittest.cc64 const char input[] = "\n" local
71 Scanner s(input);
103 s.GetComments(0, sizeof(input), &comments);
110 s.GetComments(0, (int)(strchr(input, '/') - input), &comments);
114 s.GetComments((int)(strchr(input, '/') - input - 1), sizeof(input),
122 s.GetComments((int)(strchr(input, '/') - input
130 string input; local
[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/chromium_org/mojo/services/public/cpp/surfaces/
H A Dsurfaces_type_converters.h33 static SurfaceIdPtr Convert(const cc::SurfaceId& input);
37 static cc::SurfaceId Convert(const SurfaceIdPtr& input);
43 static ColorPtr Convert(const SkColor& input);
47 static SkColor Convert(const ColorPtr& input);
52 static RenderPassIdPtr Convert(const cc::RenderPassId& input);
57 static cc::RenderPassId Convert(const RenderPassIdPtr& input);
62 static QuadPtr Convert(const cc::DrawQuad& input);
68 static SharedQuadStatePtr Convert(const cc::SharedQuadState& input);
73 static PassPtr Convert(const cc::RenderPass& input);
78 static scoped_ptr<cc::RenderPass> Convert(const PassPtr& 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...]
H A DFailedPredicateException.as39 public function FailedPredicateException(input:IntStream,
43 super(input);
/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...]
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...]
/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/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'] {
32 input[type='button'],
33 input[type='submit']):not(.custom-appearance):not(.link-button),
46 input[type='button'],
47 input[type='submit']):not(.custom-appearance):not(.link-button) {
67 input[type='checkbox'] {
80 input[typ
[all...]
/external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/signed_char
23 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char_pointer
27 test_name := input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char
31 test_name := input.output/iostream.format/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/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.cpp81 AudioNodeInput* input = this->input(i); local
82 if (input->isConnected()) {
83 unsigned numberOfInputChannels = input->bus()->numberOfChannels();
85 // Merge channels from this particular input, but be careful not to exceed the number of
86 // output channels. (This can happen if there are many inputs with each input
90 AudioChannel* inputChannel = input->bus()->channel(j);
107 void ChannelMergerNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
114 AudioNodeInput* input = this->input( local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddsp_helper_unittest.cc21 int16_t input[kLen]; local
23 // Fill input with 1000.
25 input[i] = 1000;
33 int stop_factor = DspHelper::RampSignal(input, kLen, start_factor, increment,
40 // Test second method. (Note that this modifies |input|.)
41 stop_factor = DspHelper::RampSignal(input, kLen, start_factor, increment);
44 EXPECT_EQ(1000 * i / kLen, input[i]);
51 AudioMultiVector input(kChannels, kLen * 3);
52 // Fill input with 1000.
55 input[channe
[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/icu/icu4c/source/i18n/
H A Dcsrucode.cpp55 const uint8_t *input = textIn->fRawInput; local
61 UChar codeUnit = (input[charIndex] << 8) | input[charIndex + 1];
90 const uint8_t *input = textIn->fRawInput; local
96 UChar codeUnit = input[charIndex] | (input[charIndex + 1] << 8);
99 if (length >= 4 && input[2] == 0 && input[3] == 0) {
123 const uint8_t *input = textIn->fRawInput; local
130 if (limit > 0 && getChar(input,
174 getChar(const uint8_t *input, int32_t index) const argument
190 getChar(const uint8_t *input, int32_t index) const argument
[all...]
/external/chromium_org/mojo/services/public/cpp/input_events/lib/
H A Dinput_events_type_converters.cc93 EventPtr TypeConverter<EventPtr, ui::Event>::Convert(const ui::Event& input) { argument
95 event->action = ConvertTo<EventType>(input.type());
96 event->flags = EventFlags(input.flags());
97 event->time_stamp = input.time_stamp().ToInternalValue();
99 if (input.IsMouseEvent() || input.IsTouchEvent()) {
101 static_cast<const ui::LocatedEvent*>(&input);
105 if (input.HasNativeEvent()) {
107 Point::From(ui::EventSystemLocationFromNative(input.native_event()));
113 if (input
155 Convert( const ui::KeyEvent& input) argument
161 Convert( const EventPtr& input) argument
[all...]

Completed in 570 milliseconds

1234567891011>>