Searched refs:version (Results 26 - 50 of 217) sorted by relevance

123456789

/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dlevels_relaxed.rs17 #pragma version(1)
H A Dvignette_approx_relaxed.rs17 #pragma version(1)
H A Dvignette_relaxed.rs17 #pragma version(1)
H A Dgreyscale.rs17 #pragma version(1)
H A Dcolormatrix.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) {
H A DIntentCompat.java85 final int version = Build.VERSION.SDK_INT;
86 if (version >= 15) {
88 } else if (version >= 11) {
/frameworks/base/tests/RenderScriptTests/ComputePerf/src/com/example/android/rs/computeperf/
H A Dlaunchtestxyw.rs17 #pragma version(1)
H A Dlaunchtestxlw.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/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/native/opengl/tools/glgen/src/
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/core/java/android/webkit/
H A DViewStateSerializer.java53 int version = dis.readInt();
54 if (version > VERSION) {
55 throw new IOException("Unexpected version: " + version);
59 int baseLayer = nativeDeserializeViewState(version, dis,
83 private static native int nativeDeserializeViewState(int version, argument
/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/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dgreyscale.fs17 #pragma version(1)
H A Dcolormatrix.fs17 #pragma version(1)
/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/base/services/java/com/android/server/net/
H A DNetworkIdentitySet.java41 final int version = in.readInt();
44 if (version <= VERSION_INIT) {
51 if (version >= VERSION_ADD_NETWORK_ID) {
57 if (version >= VERSION_ADD_ROAMING) {
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DGDBJIT.h56 uint32_t version; member in struct:jit_descriptor
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp90 egl_connection_t const* cnx, int version) :
92 config(config), read(0), draw(0), cnx(cnx), version(version) {
111 const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS);
89 egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, egl_connection_t const* cnx, int version) argument
/frameworks/base/core/jni/
H A Dandroid_content_res_ObbScanner.cpp34 jfieldID version; member in struct:android::__anon968
62 env->SetIntField(obbInfo, gObbInfoClassInfo.version, obb->getVersion());
98 GET_FIELD_ID(gObbInfoClassInfo.version, clazz,
99 "version", "I");
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_eglapi.cpp132 void GLTrace_eglCreateContext(int version, EGLContext c) { argument
134 GLTraceContext *traceContext = sGLTraceState->createTraceContext(version, c);
138 gltrace::GLTrace_eglCreateContext(version, traceContext->getId());
141 void GLTrace_eglMakeCurrent(const unsigned version, gl_hooks_t *hooks, EGLContext c) { argument
/frameworks/base/tests/RenderScriptTests/SurfaceTexture/src/com/example/android/rs/sto/
H A Dsto.rs17 #pragma version(1)

Completed in 497 milliseconds

123456789