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

  /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/
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...]
  /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...]
  /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...]

Completed in 638 milliseconds