HomeSort by relevance Sort by last modified time
    Searched refs:Native (Results 1 - 24 of 24) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Native.java 20 * Interface to native (C++) DSP code.
22 public class Native {
23 public native short[] generateSinusoid(float freq, float duration,
25 public native float[] measureRms(short[] pcm, float sampleRate,
27 public native float[] glitchTest(float sampleRate, float stimFreq,
29 public native float[] overflowCheck(short[] pcm, float sampleRate);
30 public native float[] compareSpectra(short[] pcm, short[] refPcm,
32 public native float linearityTest(short[][] pcms,
57 private static Native mInstance = null;
63 private Native() {}
    [all...]
CalibrateVolumeActivity.java 60 private Native mNative;
78 mNative = Native.getInstance();
104 float rms = results[Native.MEASURE_RMS_RMS];
210 float rms = results[Native.MEASURE_RMS_RMS];
211 float duration = results[Native.MEASURE_RMS_DURATION];
212 float mean = results[Native.MEASURE_RMS_MEAN];
Experiment.java 43 protected Native mNative;
49 mNative = Native.getInstance();
  /development/pdk/pndk/samples/samplejni/src/com/example/jniexample/
JNIExample.java 13 int sum = Native.add(2, 3);
14 tv.setText("Native Code test: 2 + 3 = " + Integer.toString(sum));
19 class Native {
21 System.loadLibrary("native");
24 static native int add(int a, int b);
  /development/samples/SimpleJNI/src/com/example/android/simplejni/
SimpleJNI.java 29 int sum = Native.add(2, 3);
35 class Native {
42 static native int add(int a, int b);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
BiasExperiment.java 21 import com.android.cts.verifier.audioquality.Native;
47 float rms = results[Native.MEASURE_RMS_RMS];
48 float duration = results[Native.MEASURE_RMS_DURATION];
49 float mean = results[Native.MEASURE_RMS_MEAN];
SpectrumShapeExperiment.java 21 import com.android.cts.verifier.audioquality.Native;
54 float maxDeviation = ret[Native.SPECTRUM_MAX_DEVIATION];
55 float error = ret[Native.SPECTRUM_ERROR];
56 float rmsDeviation = ret[Native.SPECTRUM_RMS_DEVIATION];
OverflowExperiment.java 22 import com.android.cts.verifier.audioquality.Native;
64 float error = ret[Native.OVERFLOW_ERROR];
65 float duration = ret[Native.OVERFLOW_DURATION];
66 float minPeak = ret[Native.OVERFLOW_MIN];
67 float maxPeak = ret[Native.OVERFLOW_MAX];
SoundLevelExperiment.java 22 import com.android.cts.verifier.audioquality.Native;
64 float rms = results[Native.MEASURE_RMS_RMS];
65 float duration = results[Native.MEASURE_RMS_DURATION];
GlitchExperiment.java 21 import com.android.cts.verifier.audioquality.Native;
78 int glitches = Math.round(ret[Native.GLITCH_COUNT]);
79 float error = ret[Native.GLITCH_ERROR];
80 float duration = ret[Native.GLITCH_DURATION];
WarmLatencyExperiment.java 22 import com.android.cts.verifier.audioquality.Native;
307 mLastRms = results[Native.MEASURE_RMS_RMS];
  /frameworks/base/media/libdrm/mobile1/
Android.mk 56 # Build DRM1 Java Native Interface(JNI) library
62 # Source files of DRM1 Java Native Interfaces
  /external/v8/test/mjsunit/
debug-script.js 41 if (scripts[i].type == Debug.ScriptType.Native) {
54 // This has to be updated if the number of native scripts change.
64 var math_script = Debug.findScript('native math.js');
65 assertEquals('native math.js', math_script.name);
66 assertEquals(Debug.ScriptType.Native, math_script.type);
69 var date_delay_script = Debug.findScript('native date.js');
70 assertEquals('native date.js', date_delay_script.name);
71 assertEquals(Debug.ScriptType.Native, date_delay_script.type);
74 var debug_delay_script = Debug.findScript('native debug.js');
75 assertEquals('native debug.js', debug_delay_script.name)
    [all...]
unicode-test.js     [all...]
  /development/ndk/platforms/android-9/samples/native-activity/
Android.mk 27 # Native code.
34 $(TOPDIR)frameworks/base/native/include \
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 24 var Native = function(options){
36 object.constructor = Native;
37 object.$family = {name: 'native'};
44 Native.typize(object, family);
49 if (generics) Native.genericize(obj, name, protect);
73 Native.genericize = function(object, property, check){
80 Native.implement = function(objects, properties){
84 Native.typize = function(object, family){
92 for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
94 var types = {'boolean': Boolean, 'native': Native, 'object': Object}
    [all...]
concat-jquery-mootools-prototype.js 143 // Resetting the length to 0, then using the native Array push
    [all...]
  /dalvik/vm/
Dvm.mk 116 Native.c \
157 native/InternalNative.c \
158 native/dalvik_system_DexFile.c \
159 native/dalvik_system_VMDebug.c \
160 native/dalvik_system_VMRuntime.c \
161 native/dalvik_system_VMStack.c \
162 native/dalvik_system_Zygote.c \
163 native/java_lang_Class.c \
164 native/java_lang_Object.c \
165 native/java_lang_Runtime.c
    [all...]
  /frameworks/base/docs/html/sdk/
sdk_toc.cs 131 <h2><span class="en">Native Development Tools</span>
  /external/v8/src/
d8.js 89 Debug.ScriptType = { Native: 0,
692 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Native);
702 ScriptTypeFlag(Debug.ScriptType.Native) |
1100 if (body[i].type == Debug.ScriptType.Native) {
1101 result += ', native';
    [all...]
debug-debugger.js 59 Debug.ScriptType = { Native: 0,
522 throw new Error('Cannot set break point in native code.');
531 if (script.type == Debug.ScriptType.Native) {
532 throw new Error('Cannot set break point in native code.');
    [all...]
  /external/elfutils/
configure 825 --disable-nls do not use Native Language Support
    [all...]
  /external/bison/
configure 869 --disable-nls do not use Native Language Support
    [all...]
  /external/e2fsprogs/
configure     [all...]

Completed in 1407 milliseconds