HomeSort by relevance Sort by last modified time
    Searched refs:Build (Results 201 - 225 of 323) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/java/android/widget/
Scroller.java 21 import android.os.Build;
118 context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB);
TabWidget.java 26 import android.os.Build;
125 if (context.getApplicationInfo().targetSdkVersion <= Build.VERSION_CODES.DONUT) {
  /packages/apps/Email/
Android.mk 17 # Build the Email application itself, along with its tests and tests for the emailcommon
51 # only include rules to build other stuff for the original package, not the derived package.
53 # additionally, build unit tests in a separate .apk
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 25 import android.os.Build;
240 if (Build.VERSION.SDK_INT <= 9) {
  /system/extras/tests/bionic/libstdc++/
Android.mk 15 # Build control file for Bionic's test programs
16 # define the BIONIC_TESTS environment variable to build the test programs
23 # used to define a simple test program and build it as a standalone
27 # in the build. the variable will be cleaned on exit
77 # compiler flags, so only build this test for device/Bionic
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 24 import android.os.Build;
88 * Build/<buildID>) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
102 assertEquals(Build.VERSION.RELEASE, patternMatcher.group(1));
107 if ("REL".equals(Build.VERSION.CODENAME))
108 assertEquals(Build.MODEL, patternMatcher.group(4));
109 assertEquals(Build.ID, patternMatcher.group(5));
    [all...]
  /frameworks/base/core/java/android/webkit/
WebSettings.java 22 import android.os.Build;
471 final String version = Build.VERSION.RELEASE;
499 // add the model for the release build
500 if ("REL".equals(Build.VERSION.CODENAME)) {
501 final String model = Build.MODEL;
507 final String id = Build.ID;
509 buffer.append(" Build/");
    [all...]
  /external/v8/src/
d8.js 593 // Build a dump request.
606 // Build a lookup request.
612 // Build an evaluate request.
627 // Build a references request.
724 // Build a backtrace request from the text command.
771 // Build a frame request from the text command.
784 // Build a scopes request from the text command.
792 // Build a scope request from the text command.
805 // Build an evaluate request from the text command.
815 // Build an evaluate request from the text command
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 46 Build();
105 void Build() {
  /external/expat/bcb5/
elements.mak 63 Build=0
expat.mak 64 Build=0
expat_static.mak 64 Build=0
expatw.mak 64 Build=0
expatw_static.mak 65 Build=0
outline.mak 63 Build=0
xmlwf.mak 64 Build=0
  /external/libpng/scripts/
makevms.com 6 $! This procedure accepts one parameter (contrib), which causes it to build
50 $! Build the thing plain or with mms/mmk
100 $ write sys$output "Libpng build completed"
  /external/v8/test/mjsunit/
big-array-literal.js 36 // Build object-literal string.
big-object-literal.js 36 // Build object-literal string.
debug-sourceslice.js 42 // Build source by putting all lines together
string-externalize.js 35 // Build an ascii cons string.
  /external/v8/test/mjsunit/tools/
profile_view.js 43 // Build a tree:
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 30 import android.os.Build;
161 if (appInfo.targetSdkVersion >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
353 * Build a {@link Context} cloned into another package name, usually for the
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 27 import android.os.Build;
97 android.os.Build.VERSION_CODES.DONUT, 0),
99 android.os.Build.VERSION_CODES.DONUT, 0)
105 private static final int SDK_VERSION = Build.VERSION.SDK_INT;
106 private static final String SDK_CODENAME = "REL".equals(Build.VERSION.CODENAME)
107 ? null : Build.VERSION.CODENAME;
424 Build.VERSION.RESOURCES_SDK_INT);
639 Build.VERSION.RESOURCES_SDK_INT);
    [all...]
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 19 import android.os.Build;
33 private static final boolean IS_ENG_BUILD = "eng".equals(Build.TYPE);

Completed in 517 milliseconds

1 2 3 4 5 6 7 891011>>