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

  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
Native.java 19 public class Native {
24 public static native int add(int a, int b);
25 public static native String arch();
  /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);
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/src/com/framework/shareduid/bit32/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 32 bit native code] 2 + 3 = " + String.valueOf(sum));
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/src/com/framework/shareduid/bit64/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 64 bit native code] 2 + 3 = " + String.valueOf(sum));
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/src/com/framework/shareduid/dual/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 32 bit native code] 2 + 3 = " + String.valueOf(sum));
  /external/chromium_org/third_party/WebKit/PerformanceTests/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/chromium_org/v8/src/
d8.js 71 Debug.ScriptType = { Native: 0,
857 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Native);
867 ScriptTypeFlag(Debug.ScriptType.Native) |
    [all...]
debug-debugger.js 36 Debug.ScriptType = { Native: 0,
628 throw new Error('Cannot set break point in native code.');
637 if (script.type == Debug.ScriptType.Native) {
638 throw new Error('Cannot set break point in native code.');
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 572 /// The 'native' strategy is to use the architecture's provided
574 Native,
701 // We can never access structs with object members with a native
737 // Otherwise, we can use native loads and stores.
738 Kind = Native;
843 case PropertyImplStrategy::Native: {
    [all...]

Completed in 326 milliseconds