Searched refs:version (Results 1 - 25 of 164) sorted by last modified time

1234567

/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java124 final int version = android.os.Build.VERSION.SDK_INT;
125 if (version >= 14) {
127 } else if (version >= 9) {
/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/bcinfo/tools/
H A Dmain.cpp165 unsigned int version = 14; local
168 version = 12;
172 new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version);
/frameworks/compile/libbcc/include/bcc/
H A Dbcc_cache.h31 /* magic and version */
33 uint8_t version[4]; member in struct:OBCC_Header
H A Dbcc_mccache.h33 /* magic and version */
35 uint8_t version[4]; member in struct:MCO_Header
/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/compile/libbcc/lib/ExecutionEngine/
H A DMCCacheReader.cpp155 if (memcmp(mpHeader->version, OBCC_VERSION, 4) != 0) {
156 mpHeader->version[4 - 1] = '\0'; // ensure c-style string terminated
157 LOGI("Cache file format version mismatch: now %s cached %s\n",
158 OBCC_VERSION, mpHeader->version);
H A DMCCacheWriter.cpp89 // Magic word and version
91 memcpy(header->version, OBCC_VERSION, 4);
/frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/
H A DCacheReader.cpp159 if (memcmp(mpHeader->version, OBCC_VERSION, 4) != 0) {
160 mpHeader->version[4 - 1] = '\0'; // ensure c-style string terminated
161 LOGI("Cache file format version mismatch: now %s cached %s\n",
162 OBCC_VERSION, mpHeader->version);
H A DCacheWriter.cpp97 // Magic word and version
99 memcpy(header->version, OBCC_VERSION, 4);
/frameworks/compile/libbcc/runtime/lib/
H A Dgcc_personality_v0.c186 _Unwind_Reason_Code __gcc_personality_v0(int version, _Unwind_Action actions, 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/libbcc/runtime/make/platform/
H A Dclang_darwin.mk2 # version of the OS. The issue is that the backend may use functions which were
4 # with a version of the library which contains private_extern definitions of all
/frameworks/compile/linkloader/include/
H A DELFHeader.h34 static char const *getVersionStr(uint32_t version);
/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/compile/slang/
H A DRSCCOptions.td110 def version : Flag<"-version">,
111 HelpText<"Print the assembler version">;
112 def _version : Flag<"--version">, Alias<version>;
H A Dslang_rs_backend.cpp157 int version = mContext->getVersion(); local
158 if (version == 0) {
159 // Not setting a version is an error
162 "Missing pragma for version in source file"));
163 } else if (version > 1) {
166 "Pragma for version in source file must be set to 1"));
H A Dslang_rs_context.cpp63 version(0),
79 // For #pragma version
H A Dslang_rs_context.h85 int version; member in class:slang::RSContext
212 int getVersion() const { return version; }
214 version = v;
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs17 #pragma version(1)
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java39 private static final String SYNC_STATE_META_VERSION_COLUMN = "version";
73 long version = DatabaseUtils.longForQuery(db,
76 if (version != DB_VERSION) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiApConfigStore.java147 int version = in.readInt();
148 if (version != 1) {
149 Log.e(TAG, "Bad version on hotspot configuration file, set defaults");
H A DWifiConfigStore.java66 * <version>
77 * An invalid version on read would result in discarding the contents of
78 * the file. On the next write, the latest version is written to file.
743 int version = in.readInt();
744 if (version != 2 && version != 1) {
745 loge("Bad version on IP configuration file, ignore read");
773 if (version == 1) {
/frameworks/base/native/include/android/
H A Dsensor.h111 int32_t version; /* sizeof(struct ASensorEvent) */ member in struct:ASensorEvent
/frameworks/base/obex/javax/obex/
H A DClientSession.java446 int version = mInput.read();

Completed in 263 milliseconds

1234567