/frameworks/support/v4/java/android/support/v4/graphics/ |
BitmapCompat.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 81 final int version = android.os.Build.VERSION.SDK_INT; typedefs 82 if (version >= 19) { 84 } else if (version >= 18) { 86 } else if (version >= 12) {
|
/frameworks/support/v4/java/android/support/v4/hardware/display/ |
DisplayManagerCompat.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 57 final int version = android.os.Build.VERSION.SDK_INT; local 58 if (version >= 17) {
|
/frameworks/support/v4/java/android/support/v4/widget/ |
PopupWindowCompat.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 63 final int version = android.os.Build.VERSION.SDK_INT; typedefs 64 if (version >= 19) {
|
/libcore/dex/src/main/java/com/android/dex/ |
DexFormat.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 47 /** dex file version number for the current format variant */ 50 /** dex file version number for API level 13 and earlier */ 86 String version = "" + ((char) magic[4]) + ((char) magic[5]) +((char) magic[6]); local 88 if (version.equals(VERSION_CURRENT)) { 90 } else if (version.equals(VERSION_FOR_API_13)) { 101 String version; local 104 version = VERSION_CURRENT; 106 version = VERSION_FOR_API_13; 109 return MAGIC_PREFIX + version + MAGIC_SUFFIX [all...] |
/libcore/luni/src/main/java/javax/crypto/spec/ |
RC5ParameterSpec.java | 5 * The ASF licenses this file to You under the Apache License, Version 2.0 29 private final int version; field in class:RC5ParameterSpec 36 * version, round count an word size (in bits). 38 * @param version 39 * the version. 45 public RC5ParameterSpec(int version, int rounds, int wordSize) { 46 this.version = version; 54 * version, round count, word size (in bits) and an <i>initialization 61 * @param version [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/ |
PrivateKeyInfo.java | 5 * The ASF licenses this file to You under the Apache License, Version 2.0 37 * version Version, 42 * Version ::= INTEGER 51 private final int version; field in class:PrivateKeyInfo 57 public PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm, 59 this.version = version; 65 private PrivateKeyInfo(int version, 68 this(version, privateKeyAlgorithm, privateKey, attributes) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tbs.h | 35 UINT32 version; member in struct:_TBS_CONTEXT_PARAMS
|
/system/core/toolbox/ |
mkswap.c | 11 uint32_t version; member in struct:linux_swap_header 61 sw_hdr.version = 1;
|
/frameworks/base/core/java/android/net/http/ |
HttpsConnection.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 274 ProtocolVersion version = statusLine.getProtocolVersion(); local 276 req.mEventHandler.status(version.getMajor(), 277 version.getMinor(),
|
/bionic/libc/bionic/ |
system_properties_compat.c | 33 * ramdisk may be using an old version of init. This can all be removed once 51 unsigned version; member in struct:prop_area_compat
|
/bionic/libc/kernel/uapi/linux/ |
dlm_plock.h | 36 __u32 version[3]; member in struct:dlm_plock_info
|
ncp_mount.h | 36 int version; member in struct:ncp_mount_data 55 int version; member in struct:ncp_mount_data_v4
|
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebt_ulog.h | 40 int version; member in struct:ebt_ulog_packet_msg
|
/bionic/libc/kernel/uapi/scsi/ |
scsi_netlink.h | 29 uint8_t version; member in struct:scsi_nl_hdr 57 #define INIT_SCSI_NL_HDR(hdr, t, mtype, mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
|
/development/ndk/platforms/android-3/include/linux/ |
ncp_mount.h | 30 int version; member in struct:ncp_mount_data 49 int version; member in struct:ncp_mount_data_v4
|
/development/ndk/platforms/android-3/include/sys/ |
_system_properties.h | 55 unsigned version; member in struct:prop_area
|
/development/ndk/platforms/android-L/include/linux/ |
dlm_plock.h | 36 __u32 version[3]; member in struct:dlm_plock_info
|
ncp_mount.h | 36 int version; member in struct:ncp_mount_data 55 int version; member in struct:ncp_mount_data_v4
|
/development/ndk/platforms/android-L/include/linux/netfilter_bridge/ |
ebt_ulog.h | 40 int version; member in struct:ebt_ulog_packet_msg
|
/device/generic/goldfish/opengl/system/egl/ |
eglContext.h | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 37 EGLint version; member in struct:EGLContext_t
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
RC5ParameterSpecTest.java | 5 * The ASF licenses this file to You under the Apache License, Version 2.0 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method 44 int version = 1; local 50 new RC5ParameterSpec(version, rounds, wordSize, null); 57 new RC5ParameterSpec(version, rounds, wordSize + 8, iv); 64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] { 1, 2, 3 }); 70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds, 79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int 85 int version = 1; local 92 new RC5ParameterSpec(version, rounds, wordSize, null, offset) 141 int version = 1; local 156 int version = 1; local 171 int version = 1; local 188 int version = 1; local 215 int version = 1; local 265 int version = 1; local [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
CertificateTest.java | 5 * The ASF licenses this file to You under the Apache License, Version 2.0 66 * version [0] EXPLICIT Version DEFAULT v1, 74 * -- If present, version MUST be v2 or v3 76 * -- If present, version MUST be v2 or v3 78 * -- If present, version MUST be v3 81 * Version ::= INTEGER { v1(0), v2(1), v3(2) } 123 int version = 2; //v3 local 160 TBSCertificate tbsCertificate = new TBSCertificate(version, serialNumber,
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
BestMatchSpec.java | 11 * to you under the Apache License, Version 2.0 (the 113 if (helem.getParameterByName("version") != null) { 123 // Do we have a cookie with a version attribute? 170 int version = Integer.MAX_VALUE; local 172 if (cookie.getVersion() < version) { 173 version = cookie.getVersion(); 176 if (version > 0) {
|
/external/bison/ |
GNUmakefile | 12 # the Free Software Foundation, either version 3 of the License, or 13 # (at your option) any later version. 45 # Ensure that $(VERSION) is up to date for dist-related targets, but not 47 _have-git-version-gen := \ 48 $(shell test -f $(srcdir)/$(_build-aux)/git-version-gen && echo yes) 49 ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL)) 55 && $(_build-aux)/git-version-gen \ 56 .tarball-version \ 57 $(git-version-gen-tag-sed-script)) 58 ifneq ($(_curr-ver),$(VERSION)) [all...] |
/external/blktrace/btreplay/ |
btrecord.h | 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 66 * @version: Version information 72 __u64 version; member in struct:io_file_hdr 83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub) 85 *mjr = (int)((version >> 16) & 0xff); 86 *mnr = (int)((version >> 8) & 0xff); 87 *sub = (int)((version >> 0) & 0xff);
|