HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 101 - 125 of 1927) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/message/
BasicRequestLine.java 11 * to you under the Apache License, Version 2.0 (the
39 * It contains the method, URI, and HTTP version of the request.
46 * @version $Revision: 604625 $
58 final ProtocolVersion version) {
68 if (version == null) {
70 ("Protocol version must not be null.");
74 this.protoversion = version;
BasicStatusLine.java 11 * to you under the Apache License, Version 2.0 (the
49 * @version $Id: BasicStatusLine.java 604625 2007-12-16 14:11:11Z olegk $
57 /** The protocol version. */
68 * Creates a new status line with the given version, status, and reason.
70 * @param version the protocol version of the response
75 public BasicStatusLine(final ProtocolVersion version, int statusCode,
78 if (version == null) {
80 ("Protocol version may not be null.");
86 this.protoVersion = version;
    [all...]
  /external/bluetooth/glib/
autogen.sh 16 if libtoolize --version < /dev/null > /dev/null 2>&1 ; then
17 libtool_version=`libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
32 (gtkdocize --version) < /dev/null > /dev/null 2>&1 || {
40 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
48 if automake-1.10 --version < /dev/null > /dev/null 2>&1 ; then
51 else if automake-1.9 --version < /dev/null > /dev/null 2>&1 ; then
  /external/e2fsprogs/lib/e2p/
fgetversion.c 2 * fgetversion.c - Get a file version on an ext2 file system
37 int fgetversion (const char * name, unsigned long * version)
49 *version = ver;
57 *version = ver;
fsetversion.c 2 * fsetversion.c - Set a file version on an ext2 file system
37 int fsetversion (const char * name, unsigned long version)
46 ver = (int) version;
55 int ver = (int)version;
  /external/webkit/WebCore/inspector/
InspectorDatabaseResource.h 49 static PassRefPtr<InspectorDatabaseResource> create(Database* database, const String& domain, const String& name, const String& version)
51 return adoptRef(new InspectorDatabaseResource(database, domain, name, version));
59 InspectorDatabaseResource(Database*, const String& domain, const String& name, const String& version);
InspectorDatabaseResource.cpp 45 InspectorDatabaseResource::InspectorDatabaseResource(Database* database, const String& domain, const String& name, const String& version)
50 , m_version(version)
64 jsonObject.set("version", m_version);
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryEntry.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
33 HistoryEntry(int version, DataInput in) throws IOException {
34 if (version >= VERSION_1) {
39 throw new IOException("invalid version " + version);
  /system/core/libcutils/
native_handle.c 4 * Licensed under the Apache License, Version 2.0 (the "License");
33 h->version = sizeof(native_handle_t);
42 if (h->version != sizeof(native_handle_t))
51 if (h->version != sizeof(native_handle_t))
  /bionic/libc/zoneinfo/
Android.mk 12 ALL_PREBUILT += $(TARGET_OUT)/usr/share/zoneinfo/zoneinfo.version
13 $(TARGET_OUT)/usr/share/zoneinfo/zoneinfo.version : $(LOCAL_PATH)/zoneinfo.version | $(ACP)
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
KeyTransRecipientInfo.java 16 private DERInteger version; field in class:KeyTransRecipientInfo
28 this.version = new DERInteger(2);
32 this.version = new DERInteger(0);
43 this.version = (DERInteger)seq.getObjectAt(0);
74 return version;
96 * version CMSVersion, -- always set to 0 or 2
107 v.add(version);
EnvelopedData.java 18 private DERInteger version; field in class:EnvelopedData
32 version = new DERInteger(2);
36 version = new DERInteger(0);
44 if (!ri.getVersion().equals(version))
46 version = new DERInteger(2);
63 version = (DERInteger)seq.getObjectAt(index++);
123 return version;
150 * version CMSVersion,
162 v.add(version);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
CertificationRequestInfo.java 18 * version INTEGER { v1(0) } (v1,...),
35 DERInteger version = new DERInteger(0); field in class:CertificationRequestInfo
64 if ((subject == null) || (version == null) || (subjectPKInfo == null))
73 version = (DERInteger)seq.getObjectAt(0);
88 if ((subject == null) || (version == null) || (subjectPKInfo == null))
96 return version;
118 v.add(version);
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 11 * to you under the Apache License, Version 2.0 (the
39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
54 * @version $Revision: 609106 $
64 /** Major version number of the protocol */
67 /** Minor version number of the protocol */
72 * Create a protocol version designator
    [all...]
  /dalvik/libcore/security/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
40 * version Version,
45 * Version ::= INTEGER
56 private int version; field in class:PrivateKeyInfo
66 public PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm,
69 this.version = version;
75 private PrivateKeyInfo(int version,
78 this(version, privateKeyAlgorithm, privateKey, attributes)
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
TBSRequest.java 19 DERInteger version; field in class:TBSRequest
29 this.version = V1;
46 version = DERInteger.getInstance((ASN1TaggedObject)seq.getObjectAt(0), true);
51 version = V1;
56 version = V1;
96 return version;
118 * version [0] EXPLICIT Version DEFAULT v1,
131 if (!version.equals(V1))
133 v.add(new DERTaggedObject(true, 0, version));
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.java 11 * to you under the Apache License, Version 2.0 (the
56 * @version $Revision: 674186 $
66 private ProtocolVersion version; field in class:RequestWrapper
80 this.version = null;
90 this.version = request.getProtocolVersion();
113 if (this.version != null) {
114 return this.version;
120 public void setProtocolVersion(final ProtocolVersion version) {
121 this.version = version;
    [all...]
  /external/apache-http/src/org/apache/http/params/
HttpProtocolParamBean.java 11 * to you under the Apache License, Version 2.0 (the
50 public void setVersion (final HttpVersion version) {
51 HttpProtocolParams.setVersion(params, version);
  /external/opencore/fileformats/mp4/composer/include/
filetypeatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
49 void setMajorBrandVersion(uint32 version)
51 _Version = version;
  /external/opencore/fileformats/mp4/composer/src/
fullatom.cpp 4 * Licensed under the Apache License, Version 2.0 (the "License");
30 // version and 3 for flags)
33 PVA_FF_FullAtom::PVA_FF_FullAtom(uint32 type, uint8 version, uint32 flags)
36 _version = version;
67 // Render Version
  /external/webkit/WebKitTools/Scripts/
update-webkit-chromium 35 if (`gclient --version`) {
  /frameworks/base/awt/javax/imageio/spi/
ImageInputStreamSpi.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
19 * @version $Revision: 1.3 $
53 * @param version
54 * the version.
58 public ImageInputStreamSpi(String vendorName, String version, Class<?> inputClass) {
59 super(vendorName, version);
ImageOutputStreamSpi.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
19 * @version $Revision: 1.3 $
54 * @param version
55 * the version.
59 public ImageOutputStreamSpi(String vendorName, String version, Class<?> outputClass) {
60 super(vendorName, version);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteOpenHelper.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
24 * A helper class to manage database creation and version management.
51 * @param version number of the database (starting at 1); if the database is older,
54 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) {
55 if (version < 1) throw new IllegalArgumentException("Version must be >= 1, was " + version);
60 mNewVersion = version;
101 int version = db.getVersion(); local
102 if (version != mNewVersion)
    [all...]
  /frameworks/base/tools/localize/
Perforce.h 13 static int GetResourceFileNames(const string& version, const string& base,
16 static int GetFile(const string& file, const string& version, string* result,

Completed in 326 milliseconds

1 2 3 45 6 7 8 91011>>