Searched refs:version (Results 101 - 125 of 371) sorted by relevance

1234567891011>>

/frameworks/support/v4/java/android/support/v4/widget/
H A DTextViewCompat.java163 final int version = Build.VERSION.SDK_INT;
164 if (version >= 23) {
166 } else if (version >= 18) {
168 } else if (version >= 17) {
170 } else if (version >= 16) {
/frameworks/base/libs/common_time/
H A Dcommon_time_server_packets.h41 // protocol version of the packet
42 uint16_t version; member in class:android::TimeServicePacketHeader
61 version = kCurVersion;
69 (version == kCurVersion) &&
/frameworks/rs/api/
H A Drs_object_types.spec88 version: 14
102 version: 14
119 version: 16
162 version: 16
187 version: 24
201 version: 16
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java364 if (item.id == clone.id && item.version == clone.version) {
402 items.get(index).version = items.get(index).version + 1;
628 int version; field in class:OpReorderTest.Item
630 Item(int id, int version) { argument
632 this.version = version;
640 return new Item(other.id, other.version);
645 assertEquals(logPrefix + "\n" + item1 + " vs " + item2, item1.version, item
[all...]
/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp44 uint16_t version; member in struct:Header
90 header.version = DDMS_VERSION;
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DIPresenceListener.aidl36 * Gets the version of the presence listener implementation.
37 * @param version, version information.
39 void getVersionCb(in String version );
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp63 * The minimum version which does not require translation (i.e. is already
72 unsigned int version)
74 mTranslatedBitcodeSize(0), mVersion(version) {
106 ALOGE("Invalid API version: %u is out of range ('%u' - '%u')", mVersion,
111 // We currently don't need to transcode any API version higher than 14 or
112 // the current API version (i.e. 10000)
120 // then write the bitcode back out in a more modern (acceptable) version.
135 ALOGE("No compatible bitcode reader for API version %d", mVersion);
151 // Use the LLVM 3.2 bitcode writer, instead of the top-of-tree version.
71 BitcodeTranslator(const char *bitcode, size_t bitcodeSize, unsigned int version) argument
/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc54 // On darwin, we want to update the version to match that of the
/frameworks/native/include/input/
H A DInputDevice.h30 bus(0), vendor(0), product(0), version(0) {
40 uint16_t version; member in struct:android::InputDeviceIdentifier
148 * names to try based on the device name, vendor, product, and version.
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp35 .version = 3,
121 .version = 1,
H A DCorrectedGyroSensor.cpp44 .version = 1,
H A DGravitySensor.cpp43 .version = 3,
H A DLinearAccelerationSensor.cpp38 .version = gsensor.getVersion(),
H A DOrientationSensor.cpp36 .version = 1,
/frameworks/rs/java/tests/MathErr/src/com/example/android/rs/matherr/
H A Dmath_err.rs17 #pragma version(1)
/frameworks/av/media/libstagefright/include/
H A DID3.h44 Version version() const;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDevice.java66 String manufacturerName, String productName, String version, String serialNumber) {
75 mVersion = version;
109 * Returns the version number of the device.
111 * @return the device version
297 String version = in.readString();
301 manufacturerName, productName, version, serialNumber);
64 UsbDevice(String name, int vendorId, int productId, int Class, int subClass, int protocol, String manufacturerName, String productName, String version, String serialNumber) argument
/frameworks/base/packages/CtsShim/build/
H A DAndroid.mk77 LOCAL_AAPT_FLAGS := --version-name WrongSHA
/frameworks/base/tools/layoutlib/rename_font/
H A Dbuild_font.py46 version = None variable in class:FontInfo
160 font.version = get_version(namerecord.text)
185 valid version, it's sanitized and appended to the font family name. The
191 if font.version is not None:
192 new_family = font.family + font.version
213 # The spec says that the version string should start with "Version ". But not
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h83 static const char* version();
/frameworks/compile/slang/
H A DRSCCOptions.td155 def version : Flag<["-"], "version">,
156 HelpText<"Print the assembler version">;
157 def _version : Flag<["--"], "version">, Alias<version>;
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp44 surface.version = sizeof(surface);
149 sur.version = sizeof(GGLSurface);
179 surface.version = sizeof(GGLSurface);
211 mipmap.version = sizeof(GGLSurface);
/frameworks/native/opengl/tools/glgen/src/
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);
/frameworks/base/services/core/java/com/android/server/
H A DServiceWatcher.java218 int version = Integer.MIN_VALUE;
221 version = rInfo.serviceInfo.metaData.getInt(
226 if (version > bestVersion) {
227 bestVersion = version;
273 private void bindToPackageLocked(ComponentName component, int version, int userId) { argument
278 mBoundVersion = version;
280 if (D) Log.d(mTag, "binding " + component + " (v" + version + ") (u" + userId + ")");
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java291 final int version = android.os.Build.VERSION.SDK_INT;
292 if (version >= 23) {
294 } else if (version >= 21) {
296 } else if (version >= 19) {
298 } else if (version >= 17) {
300 } else if (version >= 11) {
302 } else if (version >= 5) {

Completed in 991 milliseconds

1234567891011>>