HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 276 - 300 of 5918) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/
Android.mk 17 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/
Android.mk 17 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/
Android.mk 17 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/
Android.mk 17 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/
Android.mk 17 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/webrtc/src/common_audio/vad/
vad_gmm.h 18 // 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...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
ScalarArithmetic.h 37 LVM_INT32 Abs_32(LVM_INT32 input);
41 * Input : Signed 16-bit integer
  /frameworks/base/core/jni/
android_view_InputDevice.h 22 #include <input/InputDevice.h>
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF8CharsetTest.java 40 byte[] input = new byte[] { 97, 98, -27, -76, -108, -26, -107, -113 };
42 internalTestDecode(input, output);
51 String input = "ab\u5D14\u654F"; local
53 internalTestEncode(input, output);
  /libcore/luni/src/main/java/java/io/
Externalizable.java 26 * Reads the next object from the ObjectInput <code>input</code>.
28 * @param input
31 * if an error occurs attempting to read from {@code input}.
35 public void readExternal(ObjectInput input) throws IOException,
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Predicate.java 21 * Determines a true or false value for a given input. For example, a
41 * @param input the input that the predicate should act on
42 * @return the value of this predicate when applied to the input {@code t}
44 boolean apply(T input);
49 * also a {@code Predicate} and, for every input object {@code input}, it
51 * implies that either {@code predicate1.apply(input)} and
52 * {@code predicate2.apply(input)} are both {@code true} or both
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Predicate.java 21 * Determines a true or false value for a given input. For example, a
41 * @param input the input that the predicate should act on
42 * @return the value of this predicate when applied to the input {@code t}
44 boolean apply(T input);
49 * also a {@code Predicate} and, for every input object {@code input}, it
51 * implies that either {@code predicate1.apply(input)} and
52 * {@code predicate2.apply(input)} are both {@code true} or both
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ClosedInputStream.java 17 package org.apache.commons.io.input;
22 * Closed input stream. This stream returns -1 to all attempts to read
26 * that accept input streams and acting as a sentinel value instead of a
27 * <code>null</code> input stream.
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_string.i 30 if (scm_is_string($input)) {
31 tempptr = SWIG_scm2str($input);
40 if (scm_is_string($input)) {
41 tempptr = SWIG_scm2str($input);
51 if (scm_is_string($input)) {
52 tempptr = SWIG_scm2str($input);
73 if (scm_is_string($input)) {
74 char *tempptr = SWIG_scm2str($input);
  /prebuilts/misc/common/swig/include/2.0.11/pike/
std_string.i 23 if ($input.type != T_STRING)
25 $1.assign(STR0($input.u.string));
29 if ($input.type != T_STRING)
31 temp.assign(STR0($input.u.string));
44 if ($input.type == T_STRING)
45 $result.assign(STR0($input.u.string));
51 if ($input.type == T_STRING) {
52 temp.assign(STR0($input.u.string));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 30 /** 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.charPositionInLine
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js 1 /** 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.getCharPositionInLine()
    [all...]
DFA.js 15 /** 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/
string_manip_tests.cpp 22 template <typename Input, typename Output>
24 Input input; member in struct:input_output
29 template <typename Input, typename Output, typename Result>
30 static void check_result(char const * fct_name, Input const & input,
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
    [all...]
  /external/chromium_org/ui/webui/resources/css/
widgets.css 12 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'] {
75 input[type='radio']
    [all...]
  /external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
Android.mk 17 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.streams/istream.formatted/istream_extractors/basic_io
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 93 CodedInputStream input = CodedInputStream.newInstance(data); local
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.isAtEnd())
130 CodedInputStream input = CodedInputStream.newInstance(data); local
200 CodedInputStream input = CodedInputStream.newInstance(data); local
219 CodedInputStream input = CodedInputStream.newInstance(data); local
320 CodedInputStream input = CodedInputStream.newInstance(rawBytes); local
335 CodedInputStream input = CodedInputStream.newInstance( local
387 CodedInputStream input = rawOutput.toByteString().newCodedInput(); local
430 CodedInputStream input = data64.newCodedInput(); local
441 CodedInputStream input = CodedInputStream.newInstance( local
454 CodedInputStream input = CodedInputStream.newInstance( local
496 CodedInputStream input = rawOutput.toByteString().newCodedInput(); local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 93 CodedInputStream input = CodedInputStream.newInstance(data); local
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.isAtEnd())
130 CodedInputStream input = CodedInputStream.newInstance(data); local
200 CodedInputStream input = CodedInputStream.newInstance(data); local
219 CodedInputStream input = CodedInputStream.newInstance(data); local
320 CodedInputStream input = CodedInputStream.newInstance(rawBytes); local
337 CodedInputStream input = CodedInputStream.newInstance( local
392 CodedInputStream input = rawOutput.toByteString().newCodedInput(); local
435 CodedInputStream input = data64.newCodedInput(); local
446 CodedInputStream input = CodedInputStream.newInstance( local
459 CodedInputStream input = CodedInputStream.newInstance( local
501 CodedInputStream input = rawOutput.toByteString().newCodedInput(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.m 341 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 consume]
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 64 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.consume(
    [all...]

Completed in 1781 milliseconds

<<11121314151617181920>>