Searched refs:version (Results 1 - 25 of 389) sorted by relevance

1234567891011>>

/frameworks/ml/bordeaux/learning/multiclass_pa/native/
H A Dutil.cpp31 MulticlassPA* CreateMulticlassPA(const string& version, argument
36 if (StringCaseEqual(version, "max")) {
39 } else if (StringCaseEqual(version, "opt")) {
42 } else if (StringCaseEqual(version, "random")) {
44 } else if (StringCaseEqual(version, "warp")) {
48 LOG(ERROR) << "Machine type (" << version << ") unknown";
H A Dutil.h28 MulticlassPA* CreateMulticlassPA(const string& version,
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dip.rsh17 #pragma version(1)
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dip.rsh17 #pragma version(1)
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dip.rsh17 #pragma version(1)
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
H A Dip.rsh17 #pragma version(1)
/frameworks/base/core/tests/coretests/apks/version/
H A DAndroid.mk6 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
13 LOCAL_AAPT_FLAGS := --version-code 2 --version-name 2.0
20 LOCAL_AAPT_FLAGS := --version-code 3 --version-name 3.0
27 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
34 LOCAL_AAPT_FLAGS := --version-code 2 --version
[all...]
/frameworks/base/core/tests/coretests/apks/version_nosys/
H A DAndroid.mk6 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
/frameworks/native/opengl/tools/glgen/src/
H A DCodeEmitter.java19 void setVersion(int version, boolean ext, boolean pack); argument
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockStats.java29 Entry(int count, long totalTime, int version) { argument
32 mVersion = version;
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A Ddouble.rs17 #pragma version(1)
H A Dincrement.rs17 #pragma version(1)
H A Dincrement2.rs17 #pragma version(1)
/frameworks/rs/tests/cppallocation/
H A Dmultiply.rs17 #pragma version(1)
/frameworks/rs/tests/cppstrided/
H A Dmultiply.rs17 #pragma version(1)
/frameworks/rs/tests/latency/
H A Dlatency.rs17 #pragma version(1)
/frameworks/rs/tests/cppbasic-getpointer/
H A Dmono.rs17 #pragma version(1)
/frameworks/base/core/java/android/content/pm/
H A DFeatureInfo.java32 * version, which must always be backwards compatible. That is, a device
33 * claiming to support version 3 of a specific feature must support apps
34 * requesting version 1 of that feature.
39 * this is null, then this is an OpenGL ES version feature as described
46 * maximum version of this feature supported by the device. The device
50 * minimum version of the feature required by the app.
52 * When a feature version is undefined by a device, it's assumed to be
53 * version 0.
55 public int version; field in class:FeatureInfo
63 * The GLES version use
[all...]
/frameworks/support/compat/java/android/support/v4/content/
H A DContextCompat.java121 final int version = Build.VERSION.SDK_INT;
122 if (version >= 16) {
125 } else if (version >= 11) {
225 final int version = Build.VERSION.SDK_INT;
226 if (version >= 19) {
230 if (version >= 11) {
285 final int version = Build.VERSION.SDK_INT;
286 if (version >= 19) {
338 final int version = Build.VERSION.SDK_INT;
339 if (version >
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_seek_synch.cpp157 int32 version; local
162 version = MPEG_2_5;
165 version = MPEG_2;
168 version = MPEG_1;
171 version = INVALID_VERSION;
177 if (version != INVALID_VERSION && (freq_index != 3))
179 int32 numBytes = fxp_mul32_Q28(mp3_bitrate[version][(temp<<16)>>28] << 20,
182 numBytes >>= (20 - version);
184 if (version != MPEG_1)
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java25 * A helper class to manage database creation and version management.
40 * monotonically increasing version numbers for upgrades.</p>
72 * @param version number of the database (starting at 1); if the database is older,
76 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { argument
77 this(context, name, factory, version, null);
91 * @param version number of the database (starting at 1); if the database is older,
97 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version, argument
99 if (version < 1) throw new IllegalArgumentException("Version must be >= 1, was " + version);
104 mNewVersion = version;
[all...]
/frameworks/support/compat/java/android/support/v4/text/
H A DICUCompat.java53 final int version = Build.VERSION.SDK_INT;
54 if (version >= 21) {
56 } else if (version >= 14) {
/frameworks/support/core-utils/java/android/support/v4/provider/
H A DDocumentFile.java110 final int version = Build.VERSION.SDK_INT;
111 if (version >= 19) {
128 final int version = Build.VERSION.SDK_INT;
129 if (version >= 21) {
142 final int version = Build.VERSION.SDK_INT;
143 if (version >= 19) {
/frameworks/rs/api/
H A Drs_math.spec153 version: 9
167 version: 9
181 version: 24
190 version: 9
204 version: 24
213 version: 9
229 version: 24
238 version: 9
252 version: 24
261 version
[all...]
/frameworks/base/libs/hwui/
H A DExtensions.cpp48 const char* version = (const char*) glGetString(GL_VERSION); local
50 // Section 6.1.5 of the OpenGL ES specification indicates the GL version
53 // OpenGL<space>ES<space><version number><space><vendor-specific information>
55 // In addition section 6.1.5 describes the version number thusly:
57 // "The version number is either of the form major number.minor number or
62 if (sscanf(version, "OpenGL ES %d.%d", &mVersionMajor, &mVersionMinor) != 2) {
63 // If we cannot parse the version number, assume OpenGL ES 2.0

Completed in 834 milliseconds

1234567891011>>