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

1 2

  /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();
BaseActivity.java 29 int sum = Native.add(2, 3);
SplitAppTest.java 127 // We shouldn't have any native code in base
129 Native.add(2, 4);
130 fail("Unexpected native code in base");
217 Log.d(TAG, "testNative() thinks it's using ABI " + Native.arch());
220 assertEquals(11642, Native.add(4933, 6709));
  /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/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
pch.h 10 #include <Windows.Phone.Media.Capture.Native.h
  /external/avahi/avahi-sharp/
Utility.cs 25 using Mono.Unix.Native;
27 using Stdlib = Mono.Unix.Native.Stdlib;
Client.cs 26 using Mono.Unix.Native;
28 using Stdlib = Mono.Unix.Native.Stdlib;
  /external/v8/
Makefile.nacl 43 $(error Cannot find Native Client toolchain in "${NACL_TOOLCHAIN}")
50 NACL_LINK = "$(NACL_TOOLCHAIN)/bin/pnacl-clang++ --pnacl-allow-native -arch x86-32"
56 NACL_LINK = "$(NACL_TOOLCHAIN)/bin/pnacl-clang++ --pnacl-allow-native -arch x86-64"
  /external/v8/test/mjsunit/
debug-script.js 36 // Note: this test checks that that the number of scripts reported as native
37 // by Debug.scripts() is the same as a number of core native scripts.
38 // Native scripts that are added by --harmony-shipping are classified
56 if (scripts[i].type == Debug.ScriptType.Native) {
58 // TODO(1641): Remove check for equally named native scripts once the
74 // This has to be updated if the number of native scripts change.
83 var math_script = Debug.findScript('native math.js');
84 assertEquals('native math.js', math_script.name);
85 assertEquals(Debug.ScriptType.Native, math_script.type);
88 var debug_delay_script = Debug.findScript('native debug.js')
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /development/ndk/platforms/android-9/samples/native-activity/
Android.mk 27 # Native code.
34 $(TOPDIR)frameworks/base/native/include \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 14 #error Native Compiler support only available in C++ compiler
comdefsp.h 14 #error Native compiler support only available in C++ compiler.
    [all...]
  /external/avahi/avahi-ui-sharp/
ServiceDialog.cs 7 using Mono.Unix.Native;
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/
UnicodeFont.java 371 } else if (renderType == RenderType.Native) offsetX += bounds.width;
412 if (renderType == RenderType.Native) {
701 Java, Native, FreeType
GlyphPage.java 172 if (unicodeFont.getRenderType() == RenderType.Native) {
  /external/clang/lib/CodeGen/
CGObjC.cpp 624 /// The 'native' strategy is to use the architecture's provided
626 Native,
753 // We can never access structs with object members with a native
789 // Otherwise, we can use native loads and stores.
790 Kind = Native;
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 742 the "all-targets", "Native", "NativeCodeGen", and "Engine" components.
750 # Find the configured native target.
763 parser.error("invalid native target: %r (not in project)" % (
766 parser.error("invalid native target: %r (not a target)" % (
818 native_group = find_special_group('Native')
828 # If we have a native target, then that defines the native and
835 # If we have a native target with a JIT, use that for the engine. Otherwise,
    [all...]
  /external/libchrome/
Android.mk 580 # Native unit tests. Run with:
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/
Hiero.java 313 unicodeFont.setRenderType(RenderType.Native);
805 nativeRadio = new JRadioButton("Native");
    [all...]
  /external/v8/src/debug/
debug.js 67 Debug.ScriptType = { Native: 0,
588 throw MakeError(kDebugger, 'Cannot set break point in native code.');
597 if (script.type == Debug.ScriptType.Native) {
598 throw MakeError(kDebugger, 'Cannot set break point in native code.');
    [all...]
  /frameworks/base/docs/html/topic/performance/
performance_toc.cs     [all...]

Completed in 490 milliseconds

1 2