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

1234567

/frameworks/base/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/opengl/libs/
H A Dglesv2dbg.h26 DbgContext* CreateDbgContext(const unsigned version, const gl_hooks_t * const hooks);
/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/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/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>
64 * @param version number of the database (starting at 1); if the database is older,
68 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { argument
69 this(context, name, factory, version, new DefaultDatabaseErrorHandler());
83 * @param version number of the database (starting at 1); if the database is older,
88 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version, argument
90 if (version < 1) throw new IllegalArgumentException("Version must be >= 1, was " + version);
98 mNewVersion = version;
[all...]
/frameworks/base/tools/localize/
H A DValues.cpp16 version(ve),
29 version(),
42 version(that.version),
63 if (version != that.version) {
64 return version < that.version ? -1 : 1;
H A Dfile_utils.h14 int version, const string& versionString, bool printOnFailure);
16 int version, const string& versionString, bool printOnFailure);
H A DPerforce.h13 static int GetResourceFileNames(const string& version, const string& base,
16 static int GetFile(const string& file, const string& version, string* result,
H A DValuesFile.h22 int version, const string& versionString);
25 int version, const string& versionString);
H A DValues.h21 int version, const string& versionString, const string& comment = "");
43 int version; member in struct:StringResource
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/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/core/java/android/webkit/
H A DViewStateSerializer.java54 int version = dis.readInt();
55 if (version != VERSION) {
56 throw new IOException("Unexpected version: " + version);
/frameworks/base/core/jni/
H A Dandroid_content_res_ObbScanner.cpp34 jfieldID version; member in struct:android::__anon29
62 env->SetIntField(obbInfo, gObbInfoClassInfo.version, obb->getVersion());
98 GET_FIELD_ID(gObbInfoClassInfo.version, clazz,
99 "version", "I");
/frameworks/base/services/java/com/android/server/net/
H A DNetworkIdentitySet.java41 final int version = in.readInt();
42 switch (version) {
66 throw new ProtocolException("unexpected version: " + version);
/frameworks/compile/libbcc/include/bcc/
H A Dbcc_mccache.h33 /* magic and version */
35 uint8_t version[4]; member in struct:MCO_Header
/frameworks/base/include/ui/
H A DPixelFormat.h102 inline PixelFormatInfo() : version(sizeof(PixelFormatInfo)) { }
107 size_t version; member in struct:android::PixelFormatInfo
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp49 * The minimum version which does not require translation (i.e. is already
56 unsigned int version)
58 mTranslatedBitcodeSize(0), mVersion(version) {
83 LOGE("Invalid API version: %u is out of range ('%u' - '%u')", mVersion,
88 // We currently don't need to transcode any API version higher than 14 or
89 // the current API version (i.e. 10000)
97 // then write the bitcode back out in a more modern (acceptable) version.
55 BitcodeTranslator(const char *bitcode, size_t bitcodeSize, unsigned int version) argument
/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk51 /Developer/Makefiles/bin/version.pl $(RC_ProjectName) > $(OBJROOT)/version.c; \
52 gcc -arch $* -c ${OBJROOT}/version.c -o version.o; \
/frameworks/compile/linkloader/lib/
H A DELFHeader.cpp91 char const *ELFHeaderHelperMixin::getVersionStr(uint32_t version) { argument
92 switch (version) {
93 default: return "Invalid version";
94 case EV_CURRENT: return "Current version";
/frameworks/base/core/java/android/content/
H A DSyncStatusInfo.java96 int version = parcel.readInt();
97 if (version != VERSION && version != 1) {
98 Log.w("SyncStatusInfo", "Unknown version: " + version);
115 if (version == 1) {
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java30 * the version of the accessory, and a user visible description of the accessory to the device.
31 * The manufacturer, model and version strings are used by the USB Manager to choose
57 String version, String uri, String serial) {
61 mVersion = version;
107 * Returns the version of the accessory.
109 * @return the accessory version
182 String version = in.readString();
185 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
56 UsbAccessory(String manufacturer, String model, String description, String version, String uri, String serial) argument

Completed in 4589 milliseconds

1234567