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

1 2 3 4 5 6

  /frameworks/base/core/tests/coretests/src/android/os/
BuildTest.java 19 import android.os.Build;
26 * Provides test cases for android.os.Build and, in turn, many of the
27 * system properties set by the build system.
52 * Asserts that all android.os.Build fields are non-empty and/or in a valid range.
56 assertNotEmpty("ID", Build.ID);
57 assertNotEmpty("DISPLAY", Build.DISPLAY);
58 assertNotEmpty("PRODUCT", Build.PRODUCT);
59 assertNotEmpty("DEVICE", Build.DEVICE);
60 assertNotEmpty("BOARD", Build.BOARD);
61 assertNotEmpty("BRAND", Build.BRAND)
    [all...]
  /cts/tests/tests/dpi/src/android/dpi/cts/
DefaultManifestAttributesSdkTest.java 19 import android.os.Build;
32 assertEquals(Build.VERSION.SDK_INT, getAppInfo().targetSdkVersion);
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 21 import android.os.Build;
26 @TestTargetClass(Build.VERSION.class)
35 assertEquals(EXPECTED_RELEASE, Build.VERSION.RELEASE);
36 assertEquals(EXPECTED_SDK, Build.VERSION.SDK);
40 * Verifies {@link Build.FINGERPRINT} follows expected format:
48 final String fingerprint = Build.FINGERPRINT;
51 assertEquals("Build fingerprint must not include whitespace", -1,
54 assertEquals("Build fingerprint does not match expected format", 7, fingerprintSegs.length);
55 assertEquals(Build.BRAND, fingerprintSegs[0]);
56 assertEquals(Build.PRODUCT, fingerprintSegs[1])
    [all...]
BuildTest.java 21 import android.os.Build;
25 @TestTargetClass(Build.class)
36 /** Tests that check the values of {@link Build#CPU_ABI} and {@link Build#CPU_ABI2}. */
48 String message = String.format("CPU is ARM v7 compatible, so Build.CPU_ABI must be %s"
49 + " and Build.CPU_ABI2 must be %s.", ARMEABI_V7, ARMEABI);
50 assertEquals(message, ARMEABI_V7, Build.CPU_ABI);
51 assertEquals(message, ARMEABI, Build.CPU_ABI2);
53 String message = String.format("CPU is not ARM v7 compatible, so Build.CPU_ABI must "
54 + "be %s and Build.CPU_ABI2 must be 'unknown'.", ARMEABI)
    [all...]
  /ndk/samples/hello-neon/jni/
Application.mk 0 # Build both ARMv5TE and ARMv7-A machine code.
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 23 import android.os.Build;
72 addResult(BUILD_ID, Build.ID);
73 addResult(PRODUCT_NAME, Build.PRODUCT);
74 addResult(BUILD_DEVICE, Build.DEVICE);
75 addResult(BUILD_BOARD, Build.BOARD);
76 addResult(BUILD_BRAND, Build.BRAND);
77 addResult(BUILD_MODEL, Build.MODEL);
78 addResult(BUILD_TYPE, Build.TYPE);
79 addResult(BUILD_TAGS, Build.TAGS);
80 addResult(BUILD_FINGERPRINT, Build.FINGERPRINT)
    [all...]
  /bootable/recovery/edify/
parser.y 79 | expr ';' expr { $$ = Build(SequenceFn, @$, 2, $1, $3); }
81 | expr '+' expr { $$ = Build(ConcatFn, @$, 2, $1, $3); }
82 | expr EQ expr { $$ = Build(EqualityFn, @$, 2, $1, $3); }
83 | expr NE expr { $$ = Build(InequalityFn, @$, 2, $1, $3); }
84 | expr AND expr { $$ = Build(LogicalAndFn, @$, 2, $1, $3); }
85 | expr OR expr { $$ = Build(LogicalOrFn, @$, 2, $1, $3); }
86 | '!' expr { $$ = Build(LogicalNotFn, @$, 1, $2); }
87 | IF expr THEN expr ENDIF { $$ = Build(IfElseFn, @$, 2, $2, $4); }
88 | IF expr THEN expr ELSE expr ENDIF { $$ = Build(IfElseFn, @$, 3, $2, $4, $6); }
Android.mk 11 # the build system otherwise forces them to be c++.
15 # Build the host-side command line tool
30 # Build the device-side library
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkVars.java 18 import android.os.Build;
64 VAR_MAP.put("build.board", new StaticVarGetter(Build.BOARD));
65 VAR_MAP.put("build.brand", new StaticVarGetter(Build.BRAND));
66 VAR_MAP.put("build.device", new StaticVarGetter(Build.DEVICE));
67 VAR_MAP.put("build.display", new StaticVarGetter(Build.DISPLAY));
68 VAR_MAP.put("build.fingerprint", new StaticVarGetter(Build.FINGERPRINT))
    [all...]
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessor.java 22 import android.os.Build;
55 int sdkVersion = Integer.parseInt(Build.VERSION.SDK); // Cupcake style
56 if (sdkVersion < Build.VERSION_CODES.ECLAIR) {
  /external/webkit/WebKitTools/Scripts/
build-dumprendertree 42 Usage: $programName [options] [options to pass to build system]
44 --clean Clean up the build directory
45 --gtk Build the GTK+ port
46 --qt Build the Qt port
47 --wx Build the wxWindows port
64 # Build
73 # Qt, Gtk and wxWindows build everything in one shot. No need to build anything here.
  /external/e2fsprogs/misc/
Android.mk 4 # Build mke2fs
58 # Build tune2fs
107 # Build badblocks
  /external/svox/pico/
Android.mk 8 # Build Pico activity
21 # Build Pico Shared Library
43 # Build Base Generic SVOX Pico Library
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 37 * Define a simple widget that shows the Wiktionary "Word of the day." To build
51 // Build the widget update
73 android.os.Build.VERSION.CODENAME + " " +
74 android.os.Build.ID);
76 android.os.Build.FINGERPRINT
  /development/simulator/wrapsim/
Android.mk 4 # Build instructions for simulator LD_PRELOAD wrapper.
45 # Build instructions for simulator runtime launch wrapper.
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
completerollout.py 30 from webkitpy.steps.build import Build
39 Build,
build.py 34 class Build(AbstractStep):
38 Options.build,
43 def build(self, build_style): member in class:Build
47 if not self._options.build:
51 self.build("debug")
52 self.build("release")
54 self.build(self._options.build_style)
  /frameworks/base/core/java/android/util/
CharsetUtils.java 19 import android.os.Build;
167 * Gets the default vendor for this build.
172 return Build.BRAND;
  /system/core/libacc/
Android.mk 28 # Build children
  /frameworks/base/opengl/libs/
Android.mk 4 # Build META EGL library
19 # needed on sim build because of weird logging issues
65 # Build the wrapper OpenGL ES 1.x library
78 # needed on sim build because of weird logging issues
101 # Build the wrapper OpenGL ES 2.x library
114 # needed on sim build because of weird logging issues
136 # Build the ETC1 host static library
151 # Build the ETC1 device library
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 27 import android.os.Build;
133 || !mStoredIncrementalVersion.equals(Build.VERSION.INCREMENTAL)) {
135 + Build.VERSION.INCREMENTAL + " - rewriting");
151 outputBufferStream.writeInt(Build.VERSION.SDK_INT);
152 outputBufferStream.writeUTF(Build.VERSION.INCREMENTAL);
275 if (storedSystemVersion > Build.VERSION.SDK_INT) {
285 + " is compatible with OS version " + Build.VERSION.SDK_INT
287 + Build.VERSION.INCREMENTAL + ")");
412 out.writeInt(Build.VERSION.SDK_INT);
413 out.writeUTF(Build.VERSION.INCREMENTAL)
    [all...]
  /dalvik/libdex/
Android.mk 41 ## Build the device version of libdex
57 ## Build the host version of libdex
  /external/e2fsprogs/e2fsck/
Android.mk 4 # Build the libext2 profile library
48 # Build the e2fsck binary
  /frameworks/base/media/libdrm/mobile1/
Android.mk 6 # Build DRM1 core library
56 # Build DRM1 Java Native Interface(JNI) library
  /packages/apps/Phone/
Android.mk 18 # Build the Phone app which includes the emergency dialer. See Contacts
35 # Build the test package

Completed in 678 milliseconds

1 2 3 4 5 6