Searched defs:version (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/opengl/tools/glgen/src/
H A DCodeEmitter.java19 void setVersion(int version, boolean ext, boolean pack); argument
H A DGenerateGL.java34 private static void emit(int version, boolean ext, boolean pack, argument
50 ".java-1" + version + "-if");
54 ".java-1" + version + "-if", glStream);
68 emitter.setVersion(version, ext, pack);
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/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/base/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/tools/localize/
H A DValues.h21 int version, const string& versionString, const string& comment = "");
43 int version; member in struct:StringResource
H A DPerforce.cpp99 Perforce::GetResourceFileNames(const string& version, const string& base, argument
111 cmd << " \"" << base << '/' << apps[i] << "/res/values/strings.xml@" << version << '"'; local
145 Perforce::GetFile(const string& file, const string& version, string* result, argument
149 cmd << "p4 print -q \"" << file << '@' << version << '"'; local
H A Dfile_utils.cpp98 int version, const string& versionString, bool printOnFailure)
109 ValuesFile* result = ValuesFile::ParseString(filename, text, configuration, version,
120 int version, const string& versionString, bool printOnFailure)
144 ValuesFile* result = ValuesFile::ParseString(filename, text, configuration, version,
97 get_values_file(const string& filename, const Configuration& configuration, int version, const string& versionString, bool printOnFailure) argument
119 get_local_values_file(const string& filename, const Configuration& configuration, int version, const string& versionString, bool printOnFailure) argument
H A DValuesFile.cpp29 ArrayHandler(ValuesFile* vf, int version, const string& versionString, const string& id);
45 ArrayHandler::ArrayHandler(ValuesFile* vf, int version, const string& versionString, argument
48 m_version(version),
91 ValuesHandler(ValuesFile* vf, int version, const string& versionString);
105 ValuesHandler::ValuesHandler(ValuesFile* vf, int version, const string& versionString) argument
107 m_version(version),
159 int version, const string& versionString)
163 TopElementHandler top("", "resources", new ValuesHandler(result, version, versionString));
171 int version, const string& versionString)
175 TopElementHandler top("", "resources", new ValuesHandler(result, version, versionStrin
158 ParseFile(const string& filename, const Configuration& config, int version, const string& versionString) argument
170 ParseString(const string& filename, const string& text, const Configuration& config, int version, const string& versionString) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java24 * A helper class to manage database creation and version management.
39 * monotonically increasing version numbers for upgrades. Also, there
40 * is no concept of a database downgrade; installing a new version of
41 * your app which uses a lower version number than a
42 * previously-installed version will result in undefined behavior.</p>
64 * @param version number of the database (starting at 1); if the database is older,
67 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { argument
68 if (version < 1) throw new IllegalArgumentException("Version must be >= 1, was " + version);
73 mNewVersion = version;
[all...]
H A DSQLiteCursor.java116 QueryThread(int version) { argument
117 mThreadState = version;
/frameworks/base/core/jni/
H A Dandroid_content_res_ObbScanner.cpp33 jfieldID version; member in struct:android::__anon31
71 env->SetIntField(obbInfo, gObbInfoClassInfo.version, obb->getVersion());
107 GET_FIELD_ID(gObbInfoClassInfo.version, gObbInfoClassInfo.clazz,
108 "version", "I");
H A Dandroid_backup_BackupHelperDispatcher.cpp35 int version; member in struct:android::chunk_header_v1
72 amt = read(fd, &flattenedHeader.version,
80 if (flattenedHeader.version != VERSION_1_HEADER) {
81 LOGW("Skipping unknown header version: 0x%08x, %d bytes", flattenedHeader.version,
93 LOGD(" version=0x%08x", flattenedHeader.version);
192 header.version = VERSION_1_HEADER;
H A Dandroid_hardware_SensorManager.cpp35 jfieldID version; member in struct:android::SensorOffsets
72 env->SetIntField(sensor, sensorOffsets.version, 1);
153 sensorOffsets.version = _env->GetFieldID(sensorClass, "mVersion", "I");
/frameworks/base/media/java/android/media/
H A DMiniThumbFile.java82 private String randomAccessFilePath(int version) { argument
86 return directoryName + "/.thumbdata" + version + "-" + mUri.hashCode();
/frameworks/base/services/surfaceflinger/
H A DGLExtensions.cpp38 GLubyte const* version,
46 mVersion = (char const*)version;
35 initWithGLStrings( GLubyte const* vendor, GLubyte const* renderer, GLubyte const* version, GLubyte const* extensions, char const* egl_vendor, char const* egl_version, char const* egl_extensions) argument
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java44 String version, String uri, String serial) {
48 mVersion = version;
94 * Returns the version of the accessory.
96 * @return the accessory version
169 String version = in.readString();
172 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
43 UsbAccessory(String manufacturer, String model, String description, String version, String uri, String serial) argument
/frameworks/base/include/utils/
H A DObbFile.h62 void setVersion(int32_t version) { argument
63 mVersion = version;
121 /* Package version this ObbFile is associated with */
/frameworks/base/media/libstagefright/codecs/mp3dec/include/
H A Dpvmp3decoder_api.h189 int16 version; member in struct:tPVMP3DecoderExternal
210 * Out: Size of the output frame in 16-bit words, This value depends on the mp3 version
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitor.java45 public void visit(int version, int access, String name, String signature, argument
H A DTransformClassAdapter.java68 public void visit(int version, int access, String name, argument
83 super.visit(version, access, name, signature, superName, interfaces);
/frameworks/base/include/ui/
H A DPixelFormat.h102 inline PixelFormatInfo() : version(sizeof(PixelFormatInfo)) { }
107 size_t version; member in struct:android::PixelFormatInfo
/frameworks/base/libs/ui/
H A DKeyCharacterMap.cpp18 unsigned int version; member in struct:Header
235 if ((header.version & 0xff) != 2) {
236 LOGW("Only support keycharmap version 2 (got 0x%08x)", header.version);
/frameworks/base/native/include/android/
H A Dsensor.h111 int32_t version; /* sizeof(struct ASensorEvent) */ member in struct:ASensorEvent
/frameworks/base/services/java/com/android/server/
H A DPackageManagerBackupAgent.java63 // version & signature info of each app in a restore set
65 // The version info of each backed-up app as read from the state file
77 Metadata(int version, Signature[] sigs) { argument
78 versionCode = version;
129 // If the stored version string differs, we need to re-backup all
143 * int SDKversion -- the SDK version of the OS itself on the device
180 // We have backed up this app before. Check whether the version
181 // of the backup matches the version of the current app; if they
202 * int version -- [4] the package's versionCode
206 // marshal the version cod
[all...]

Completed in 1417 milliseconds

12