/development/samples/browseable/BasicMultitouch/ |
_index.jd | 7 This samples demonstrates the use of MotionEvent properties to keep track of individual touches
|
/external/chromium_org/chrome/browser/ui/views/passwords/ |
manage_passwords_bubble_view_browsertest.cc | 99 scoped_ptr<base::HistogramSamples> samples( 103 samples->GetCount( 106 samples->GetCount( 109 samples->GetCount( 125 scoped_ptr<base::HistogramSamples> samples( 129 samples->GetCount( 132 samples->GetCount( 135 samples->GetCount( 147 scoped_ptr<base::HistogramSamples> samples( 151 samples->GetCount [all...] |
/external/chromium_org/remoting/client/ |
audio_player.h | 25 // Return the recommended number of samples to include in a frame. 32 // Function called by the browser when it needs more audio samples. 33 static void AudioPlayerCallback(void* samples, 43 void FillWithSamples(void* samples, uint32 buffer_size);
|
audio_player_unittest.cc | 93 AudioPacket::SamplingRate rate, int samples) { 102 data.resize(samples * kAudioSampleBytes, kDummyAudioData); 108 scoped_ptr<AudioPacket> CreatePacket44100Hz(int samples) { 110 samples); 113 scoped_ptr<AudioPacket> CreatePacket48000Hz(int samples) { 115 samples); 144 // New packet with different sampling rate causes previous samples to 153 // Push about 4 seconds worth of samples. 169 // Process 100 samples. 178 // Consume one frame (=25) of samples [all...] |
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
README.ots | 6 The LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression.
|
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
copy_set_operations.c | 65 int samples, 68 // Copy the last <samples> of the input vector to vector_out 69 WEBRTC_SPL_MEMCPY_W16(vector_out, &vector_in[length - samples], samples);
|
/external/chromium_org/tools/gyp/samples/ |
samples.bat | 5 @python %~dp0/samples %*
|
/external/chromium_org/tools/perf/page_sets/data/ |
tough_filters_cases.json | 5 "http://letmespellitoutforyou.com/samples/svg/filter_terrain.svg",
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionRemoveAllTester.java | 54 collection.removeAll(MinimalCollection.of(samples.e3))); 62 collection.removeAll(MinimalCollection.of(samples.e0))); 63 expectMissing(samples.e0); 70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); 71 expectMissing(samples.e0); 82 samples.e0, samples.e0, samples.e0, 83 samples.e3, samples.e3, samples.e3))) [all...] |
/external/oprofile/daemon/liblegacy/ |
opd_sample_files.h | 20 /** one samples file when profiling on a 2.2/2.4 kernel */ 29 * sync all samples files 36 * close all samples files belonging to this image 58 * put sfile at the head of samples files lru list
|
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
mct.h | 58 @param c0 Samples for red component 59 @param c1 Samples for green component 60 @param c2 Samples blue component 61 @param n Number of samples for each component 66 @param c0 Samples for luminance component 67 @param c1 Samples for red chrominance component 68 @param c2 Samples for blue chrominance component 69 @param n Number of samples for each component 81 @param c0 Samples for red component 82 @param c1 Samples for green componen [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/pcm16b/ |
pcm16b.c | 48 int16_t samples=len*2; local 59 return(samples); 74 int samples = length_bytes >> 1; 76 for (i=0;i<samples;i++) { 94 int16_t samples=len>>1; local 97 for (pos=0;pos<samples;pos++) { 103 return(samples);
|
/external/chromium_org/base/test/ |
histogram_tester.h | 30 // We know the exact number of samples in a bucket, and that no other bucket 31 // should have samples. Measures the diff from the snapshot taken when this 37 // We know the exact number of samples in a bucket, but other buckets may 38 // have samples as well. Measures the diff from the snapshot taken when this 44 // We don't know the values of the samples, but we know how many there are. 57 // |expected_count|. The bucket's current value is determined from |samples| 62 base::HistogramSamples& samples) const; 65 // is |expected_count|. This is checked against |samples| minus the snapshot 69 base::HistogramSamples& samples) const; 72 // lifecycle. This instance takes ownership of the samples, which are delete [all...] |
histogram_tester_unittest.cc | 28 scoped_ptr<HistogramSamples> samples( 30 EXPECT_FALSE(samples); 36 samples = tester.GetHistogramSamplesSinceCreation(kHistogram1); 37 EXPECT_TRUE(samples); 38 EXPECT_EQ(1, samples->TotalCount());
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/ |
monsoon_power_monitor.py | 18 device: A profiler.monsoon object to collect samples from. 20 output: opened file to write the samples. 23 samples = [] 35 samples += new_data 41 'samples': samples 105 """Parse the output of of the samples collector process. 114 if result['samples']: 115 timedelta_h = result['duration_s'] / len(result['samples']) / 3600 116 for (current_a, voltage_v) in result['samples'] [all...] |
/external/chromium_org/third_party/webrtc/common_audio/ |
wav_writer.h | 32 // Write additional samples to the file. Each sample is in the range 35 void WriteSamples(const float* samples, size_t num_samples); 36 void WriteSamples(const int16_t* samples, size_t num_samples); 46 uint32_t num_samples_; // total number of samples written to file 62 const float* samples,
|
wav_writer.cc | 40 // of samples before we can fill in the real data. 49 void WavFile::WriteSamples(const int16_t* samples, size_t num_samples) { 51 #error "Need to convert samples to little-endian when writing to WAV file" 54 fwrite(samples, sizeof(*samples), num_samples, file_handle_); 66 void WavFile::WriteSamples(const float* samples, size_t num_samples) { 71 RoundToInt16(samples + i, chunk, isamples); 100 const float* samples, 102 reinterpret_cast<webrtc::WavFile*>(wf)->WriteSamples(samples, num_samples);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/ |
input_audio_file.h | 31 // Reads |samples| elements from source file to |destination|. Returns true 34 // The output |destination| must have the capacity to hold |samples| elements. 35 bool Read(size_t samples, int16_t* destination); 40 // hold samples * channels elements. Note that |source| and |destination| can 42 static void DuplicateInterleaved(const int16_t* source, size_t samples,
|
/external/chromium_org/ui/events/gesture_detection/ |
velocity_tracker_unittest.cc | 63 size_t samples) { 64 EXPECT_TRUE(!!samples); 65 if (!samples) 67 const base::TimeDelta dt = t / samples; 69 ApplyMovement(state, p0, v, t0, t, samples); 78 size_t samples) { 79 EXPECT_TRUE(!!samples); 80 if (!samples) 82 const base::TimeDelta dt = t / samples; 83 for (size_t i = 0; i < samples; ++i 91 const size_t samples = 60; local 127 const size_t samples = 3; local 147 const size_t samples = 12; local 196 const size_t samples = 10; local [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
copy_set_operations.c | 67 WebRtc_Word16 samples, 70 // Copy the last <samples> of the input vector to vector_out 71 WEBRTC_SPL_MEMCPY_W16(vector_out, &vector_in[length - samples], samples); 73 return samples;
|
/external/chromium_org/components/copresence/mediums/audio/ |
audio_recorder_unittest.cc | 24 size_t samples) 29 buffer_->set_frames(samples); 96 size_t samples) { 106 channel_data_.push_back(GenerateSamples(0x1337, samples)); 107 channel_data_.push_back(GenerateSamples(0x7331, samples)); 109 total_samples_ = samples; 114 new TestAudioInputStream(params_, channel_data_, samples)); 133 void DecodeSamples(const std::string& samples) { 134 received_samples_ += samples; 135 // We expect one less decode than our total samples would ideally hav 170 float* samples = static_cast<float*>(base::AlignedAlloc( local [all...] |
/external/chromium_org/content/browser/speech/endpointer/ |
endpointer_unittest.cc | 11 const int kSampleRate = 8000; // 8 k samples per second for AMR encoding. 13 // At 8 sample per second a 20 ms frame is 160 samples, which corrsponds 15 const int kFrameSize = kSampleRate / kFrameRate; // 160 samples. 23 // Process a single frame of test audio samples. 24 virtual EpStatus ProcessFrame(int64 time, int16* samples, int frame_size) = 0; 28 int16 samples[kFrameSize]; local 34 // Create a random sequence of samples. 46 // Create random samples. 50 samples[i] = static_cast<int16>(gain * randNum); 53 EpStatus ep_status = processor->ProcessFrame(time, samples, kFrameSize) [all...] |
/external/libpng/contrib/pngsuite/ |
README | 61 Testing basn0g01.png: PASS (524 zero samples) 63 Testing basn0g02.png: PASS (448 zero samples) 65 Testing basn0g04.png: PASS (520 zero samples) 67 Testing basn0g08.png: PASS (3 zero samples) 70 Testing basn0g16.png: PASS (1 zero samples) 73 Testing basn2c08.png: PASS (6 zero samples) 76 Testing basn2c16.png: PASS (592 zero samples) 79 Testing basn3p01.png: PASS (512 zero samples) 81 Testing basn3p02.png: PASS (448 zero samples) 83 Testing basn3p04.png: PASS (544 zero samples) [all...] |
/external/qemu/docs/ |
AUDIO.TXT | 36 - A fixed-size circular buffer of stereo samples (for stereo). 40 - A 'samples' field giving the (constant) number of sample pairs in the stereo buffer. 46 - A 'rpos' offset into the circular buffer which tells where to read the next samples 50 |<----------------- samples ----------------------->| 63 send samples from the stereo buffer to the host sound card/server. This method 64 shall also modify 'rpos' and returns the number of samples 'played'. A more detailed 67 - A 'write' method callback used to write a buffer of emulated sound samples from 78 - a 'conv()' function used to read sound samples from the emulated sound card and 81 - a 'total_hw_samples_mixed' which correspond to the number of samples that have 83 HWVoiceOut's 'rpos' offset). NOTE: this is a count of samples in the HWVoiceOu [all...] |
/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
counter_track_test.js | 15 var runTest = function(timestamps, samples, testFn) { 20 var n = samples.length; 27 for (var i = 0; i < samples.length; ++i) { 29 ctr.series[i].addSample(timestamps[k], samples[i][k]); 66 var samples = [[0, 3, 1, 2, 3, 1, 3, 3.1], 68 for (var i = 0; i < samples.length; ++i) { 70 ctr.series[i].addSample(timestamps[k], samples[i][k]); 95 var samples = [[0, 3, 1, 2, 3, 1, 3, 3.1], 98 runTest.call(this, timestamps, samples, function(ctr, container, track) {
|