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

123456789

/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/native/opengl/libs/
H A Dglestrace.h27 void GLTrace_eglCreateContext(int version, EGLContext c);
28 void GLTrace_eglMakeCurrent(unsigned version, gl_hooks_t *hooks, EGLContext c);
/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)
H A Dmsg.rs17 #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/native/opengl/libs/GLES_trace/src/
H A Dgltrace_egl.h23 void GLTrace_eglCreateContext(int version, int contextId);
/frameworks/native/opengl/tools/glgen/src/
H A DCodeEmitter.java19 void setVersion(int version, boolean ext, boolean pack); argument
H A DJsr239CodeEmitter.java69 public void setVersion(int version, boolean ext, boolean pack) { argument
70 if (version == 0) {
73 } else if (version == 1) {
79 throw new RuntimeException("Bad version: " + version);
/frameworks/base/services/java/com/android/server/updates/
H A DTZInfoInstallReceiver.java27 super("/data/misc/zoneinfo/", "tzdata", "metadata/", "version");
31 protected void install(byte[] encodedContent, int version) throws IOException { argument
32 super.install(Base64.decode(encodedContent, Base64.DEFAULT), version);
/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/support/v4/java/android/support/v4/content/
H A DContextCompat.java89 final int version = Build.VERSION.SDK_INT;
90 if (version >= 16) {
93 } else if (version >= 11) {
/frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
H A Dlaunchtestxyw.rs17 #pragma version(1)
/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.java26 * A helper class to manage database creation and version management.
41 * monotonically increasing version numbers for upgrades.</p>
73 * @param version number of the database (starting at 1); if the database is older,
77 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { argument
78 this(context, name, factory, version, null);
92 * @param version number of the database (starting at 1); if the database is older,
98 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version, argument
100 if (version < 1) throw new IllegalArgumentException("Version must be >= 1, was " + version);
105 mNewVersion = version;
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DPopupMenuCompat.java58 final int version = android.os.Build.VERSION.SDK_INT;
59 if (version >= 19) {
/frameworks/base/core/java/android/content/res/
H A DObbInfo.java42 * The version of the package to which the OBB file belongs.
44 public int version; field in class:ObbInfo
68 sb.append(",version=");
69 sb.append(version);
83 dest.writeInt(version);
102 version = source.readInt();
/frameworks/compile/libbcc/include/bcinfo/
H A DBitcodeTranslator.h34 * Translates \p bitcode of a particular \p version to the latest version.
38 * \param version - corresponding target SDK version of \p bitcode.
41 unsigned int version);
46 * Translate the supplied bitcode to the latest supported version.
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java116 return IoUtils.readFileAsString("/data/misc/keychain/metadata/version");
160 private String createSignature(String content, String version, String requiredHash) argument
165 signer.update(version.trim().getBytes());
169 verifySignature(content, version, requiredHash, sig, createCertificate()));
173 public boolean verifySignature(String content, String version, String requiredPrevious, argument
178 signer.update(version.trim().getBytes());
183 private void sendIntent(String contentPath, String version, String required, String sig) { argument
187 i.putExtra(EXTRA_VERSION_NUMBER, version);
193 private String runTest(String cert, String content, String version, String required, String sig) argument
198 sendIntent(contentPath, version, require
203 runTestWithoutSig(String cert, String content, String version, String required) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceRequest.java49 private WifiP2pDnsSdServiceRequest(String dnsQuery, int dnsType, int version) { argument
53 version));
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp36 GLubyte const* version,
41 mVersion = (char const*)version;
33 initWithGLStrings( GLubyte const* vendor, GLubyte const* renderer, GLubyte const* version, GLubyte const* extensions) argument

Completed in 1853 milliseconds

123456789