/development/ndk/ |
.gitignore | 0 samples/*/libs/ 2 samples/*/obj/ 3 samples/*/bin/ 4 samples/*/gen/ 5 platforms/android-*/samples/*/obj 6 platforms/android-*/samples/*/libs
|
/developers/samples/android/common/ |
README.txt | 1 This directory contains shared classes referenced by some samples.
|
/external/glide/ |
.gitignore | 15 samples/flickr/.idea/* 16 samples/flickr/gen 17 samples/flickr/out 18 samples/flickr/bin 19 samples/flickr/local.properties 20 samples/flickr/target
|
settings.gradle | 3 include ':samples:flickr
|
/external/eigen/doc/snippets/ |
LLT_solve.cpp | 2 // let's generate some samples on the 3D plane of equation z = 2x+3y (with some noise) 3 DataMatrix samples = DataMatrix::Random(12,2); variable 4 VectorXf elevations = 2*samples.col(0) + 3*samples.col(1) + VectorXf::Random(12)*0.1; 5 // and let's solve samples * [x y]^T = elevations in least square sense: 7 = (samples.adjoint() * samples).llt().solve((samples.adjoint()*elevations));
|
/external/chromium_org/media/cast/test/utility/ |
audio_utility_unittest.cc | 15 std::vector<float> samples(480); 17 EncodeTimestamp(in_timestamp, 0, samples.size(), &samples.front()); 20 DecodeTimestamp(&samples.front(), samples.size(), &out_timestamp)); 26 std::vector<float> samples(480); 29 DecodeTimestamp(&samples.front(), samples.size(), &out_timestamp)); 33 std::vector<float> samples(4800); 34 EncodeTimestamp(4711, 0, samples.size(), &samples.front()) [all...] |
/developers/samples/android/experimental/ndkSampleGen/ |
samples.xml | 2 <samples>
3 <sample name="Teapot" path="../../../../../development/ndk/platforms/android-17/samples/Teapot"/>
4 <sample name="MoreTeapots" path="../../../../../development/ndk/platforms/android-18/samples/MoreTeapots"/>
5 </samples
|
/development/samples/SpellChecker/ |
_index.html | 1 <p>A set of samples that demonstrate how to create/use spell checker APIs.</p>
|
/external/skia/tools/ |
Stats.h | 5 Stats(const double samples[], int n) { 6 min = samples[0]; 7 max = samples[0]; 9 if (samples[i] < min) { min = samples[i]; } 10 if (samples[i] > max) { max = samples[i]; } 15 sum += samples[i]; 21 err += (samples[i] - mean) * (samples[i] - mean) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/github_file_system/ |
apps_samples.zip | |
/external/chromium_org/chrome/common/extensions/docs/templates/public/apps/ |
samples.html | 1 {{+partials.samples sidenav:sidenavs.apps 3 samplesList:samples.apps
|
/external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/ |
samples.html | 1 {{+partials.samples sidenav:sidenavs.extensions 3 samplesList:samples.extensions
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetIteratorTester.java | 42 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)), 46 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) 55 new IteratorTester<E>(4, IteratorFeature.MODIFIABLE, Arrays.asList(samples.e0, samples.e1 [all...] |
/external/oprofile/daemon/liblegacy/ |
opd_24_stats.h | 17 enum { OPD_KERNEL, /**< nr kernel samples */ 18 OPD_MODULE, /**< nr module samples */ 19 OPD_LOST_MODULE, /**< nr samples in module for which modules can not be located */ 20 OPD_LOST_PROCESS, /**< nr samples for which process info couldn't be accessed */ 21 OPD_PROCESS, /**< nr userspace samples */ 22 OPD_LOST_MAP_PROCESS, /**< nr samples for which map info couldn't be accessed */ 23 OPD_LOST_SAMPLEFILE, /**< nr samples for which sample file can't be opened */ 31 OPD_SAMPLES, /**< nr distinct samples */
|
/frameworks/base/docs/ |
docs-samples-redirect.html | 3 <meta http-equiv="refresh" content="0;url=../../samples/">
6 <a href="../../samples/">click here if you are not redirected</a>
|
/development/samples/RenderScript/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the Renderscript APIs.</p
|
/development/samples/USB/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the USB APIs.</p
|
/frameworks/base/tests/RenderScriptTests/MiscSamples/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the Renderscript APIs.</p
|
/external/chromium_org/tools/telemetry/telemetry/util/ |
statistics_unittest.py | 12 def Relax(samples, iterations=10): 19 for i in xrange(1, len(samples)): 20 voronoi_boundaries.append((samples[i] + samples[i-1]) * 0.5) 23 relaxed_samples.append(samples[0]) 24 for i in xrange(1, len(samples)-1): 27 relaxed_samples.append(samples[-1]) 28 samples = relaxed_samples 29 return samples 32 samples = [ [all...] |
/external/chromium_org/third_party/skia/tools/ |
Stats.h | 14 Stats(const double samples[], int n) { 15 min = samples[0]; 16 max = samples[0]; 18 if (samples[i] < min) { min = samples[i]; } 19 if (samples[i] > max) { max = samples[i]; } 24 sum += samples[i]; 30 err += (samples[i] - mean) * (samples[i] - mean) [all...] |
/external/chromium_org/base/metrics/ |
sample_map_unittest.cc | 13 SampleMap samples; local 15 samples.Accumulate(1, 100); 16 samples.Accumulate(2, 200); 17 samples.Accumulate(1, -200); 18 EXPECT_EQ(-100, samples.GetCount(1)); 19 EXPECT_EQ(200, samples.GetCount(2)); 21 EXPECT_EQ(300, samples.sum()); 22 EXPECT_EQ(100, samples.TotalCount()); 23 EXPECT_EQ(samples.redundant_count(), samples.TotalCount()) 58 SampleMap samples; local 101 SampleMap samples; local [all...] |
/external/chromium_org/components/copresence/test/ |
audio_test_support.h | 20 // Populate random samples given a random seed into the samples array. 21 void PopulateSamples(int random_seed, size_t size, float* samples); 23 // Create an audio bus populated with random samples. 26 int samples); 28 // Create an ref counted audio bus populated with random samples. 30 CreateRandomAudioRefCounted(int random_seed, int channels, int samples);
|
/external/oprofile/daemon/ |
opd_stats.h | 17 enum { OPD_SAMPLES, /**< nr. samples */ 18 OPD_KERNEL, /**< nr. kernel samples */ 19 OPD_PROCESS, /**< nr. userspace samples */ 20 OPD_NO_CTX, /**< nr. samples lost due to not knowing if in the kernel or not */ 21 OPD_LOST_KERNEL, /**< nr. kernel samples lost */ 22 OPD_LOST_SAMPLEFILE, /**< nr samples for which sample file can't be opened */ 23 OPD_LOST_NO_MAPPING, /**< nr samples lost due to no mapping */
|
/prebuilts/tools/common/easymock-tools/ |
easymock-3.1-samples.jar | |
/development/build/ |
sdk.atree | 218 frameworks/base/docs/docs-samples-redirect.html docs/samples/index.html 222 # Samples Component 225 # samples to include in the sdk samples package 227 # the list here should match the list of samples that we generate docs for, 229 development/apps/GestureBuilder samples/${PLATFORM_NAME}/legacy/GestureBuilder 230 development/samples/samples_source.properties samples/${PLATFORM_NAME}/source.properties 232 # PLEASE KEEP THE SAMPLES IN ALPHABETICAL ORDER [all...] |