Searched refs:input (Results 201 - 225 of 3771) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/base/
H A Dcrc32_unittest.cc26 std::string input = local
29 for (size_t i = 0; i < input.size(); ++i) {
30 c = UpdateCrc32(c, &input[i], 1);
H A Dmessagedigest.h51 // Computes the hash of |in_len| bytes of |input|, using the |digest| hash
55 size_t ComputeDigest(MessageDigest* digest, const void* input, size_t in_len,
60 size_t ComputeDigest(const std::string& alg, const void* input, size_t in_len,
62 // Computes the hash of |input| using the |digest| hash implementation, and
64 std::string ComputeDigest(MessageDigest* digest, const std::string& input);
68 std::string ComputeDigest(const std::string& alg, const std::string& input);
70 bool ComputeDigest(const std::string& alg, const std::string& input,
74 inline std::string MD5(const std::string& input) { argument
75 return ComputeDigest(DIGEST_MD5, input);
80 // Computes the HMAC of |in_len| bytes of |input|, usin
[all...]
/external/elfutils/0.153/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/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_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/media/cast/test/utility/
H A Dinput_builder.cc47 std::string input = raw_input; local
48 input = input.substr(0, input.size() - 1); // Strip last \n.
49 if (input.empty() && !default_value_.empty())
52 if (!ValidateInput(input)) {
53 printf("Invalid input. Please try again.\n");
56 return input;
66 bool InputBuilder::ValidateInput(const std::string input) const {
71 if (!base::StringToInt(input,
[all...]
/external/chromium_org/media/mojo/services/
H A Dmedia_type_converters.h22 const scoped_refptr<media::DecoderBuffer>& input);
28 const MediaDecoderBufferPtr& input);
33 static AudioDecoderConfigPtr Convert(const media::AudioDecoderConfig& input);
37 static media::AudioDecoderConfig Convert(const AudioDecoderConfigPtr& 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/third_party/libvpx/source/libvpx/test/
H A Dvpxdec.sh17 # Environment check: Make sure input is available.
29 # Wrapper function for running vpxdec with pipe input. Requires that
31 # input file path and shifted away. All remaining parameters are passed through
35 local readonly input="$1"
37 cat "${input}" | eval "${VPX_TEST_PREFIX}" "${decoder}" - "$@" ${devnull}
41 # the directory containing vpxdec. $1 one is used as the input file path and
45 local readonly input="$1"
47 eval "${VPX_TEST_PREFIX}" "${decoder}" "$input" "$@" ${devnull}
/external/chromium_org/third_party/polymer/components-chromium/core-input/
H A Dcore-input-extracted.js3 Polymer('core-input', {
7 * the input.
16 * If true, this input cannot be focused and the user cannot change
26 * If true, the user cannot modify the value of the input.
35 * If true, this input will automatically gain focus on page load.
44 * If true, this input accepts multi-line input like a `<textarea>`
53 * (multiline only) The height of this text input in rows. The input
54 * will scroll internally if more input i
[all...]
/external/chromium_org/third_party/webrtc/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/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dfake_stdin.h22 FILE* FakeStdin(const std::string& input);
/external/chromium_org/tools/clang/plugins/tests/
H A Dtest.sh7 # Hacky, primitive testing: This runs the style plugin for a set of input files
53 # Validate input to the script.
79 for input in *.cpp; do
80 do_testcase "${input}" "${input%cpp}txt" "${input%cpp}flags"
83 for input in *.c; do
84 do_testcase "${input}" "${input%c}txt" "${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/chromium_org/v8/test/mjsunit/
H A Dmath-floor-part1.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_output(input));
45 assertEquals(expect, test_double_output(input));
46 assertEquals(expect, test_double_output(input));
48 assertEquals(expect, test_double_output(input));
H A Dmath-floor-part2.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_output(input));
45 assertEquals(expect, test_double_output(input));
46 assertEquals(expect, test_double_output(input));
48 assertEquals(expect, test_double_output(input));
H A Dmath-floor-part3.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_output(input));
45 assertEquals(expect, test_double_output(input));
46 assertEquals(expect, test_double_output(input));
48 assertEquals(expect, test_double_output(input));
H A Dmath-floor-part4.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_output(input));
45 assertEquals(expect, test_double_output(input));
46 assertEquals(expect, test_double_output(input));
48 assertEquals(expect, test_double_output(input));
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DPredicate.java20 * Determines a true or false value for a given input.
35 * Returns the result of applying this predicate to {@code input}.
37 boolean apply(T input); argument
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.dest/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.dest/Android.mk
19 test_name := input.output/iostream.format/input.streams/iostreamclass/iostream.dest/nothing_to_do

Completed in 3720 milliseconds

1234567891011>>