HomeSort by relevance Sort by last modified time
    Searched defs:version (Results 226 - 250 of 2174) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractFullBox.java 4 * Licensed under the Apache License, Version 2.0 (the License);
30 private int version; field in class:AbstractFullBox
42 return version;
45 public void setVersion(int version) {
46 this.version = version;
59 * Parses the version/flags header and returns the remaining box size.
65 version = IsoTypeReader.readUInt8(content);
71 IsoTypeWriter.writeUInt8(bb, version);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StatusLineParser.java 33 * @version 1.2 $Revision: 1.7 $ $Date: 2009/07/17 18:58:05 $
77 String version = this.sipVersion(); local
78 retval.setSipVersion(version);
  /external/objenesis/tck/test/org/objenesis/tck/
OsgiTest.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
42 String version = getImplementationVersion(Objenesis.class); local
44 // of a Maven dependency with the jar. Which explains why the version is null (no Manifest
45 // since there's no jar. In that case we get the version from the pom.xml and hope the Maven
47 if(version == null) {
53 xPathExpression = xPath.compile("/project/parent/version");
63 version = xPathExpression.evaluate(doc);
69 return new String[] {"org.objenesis, objenesis, " + version};
  /external/oprofile/libop/
op_sample_file.h 23 u32 version; member in struct:opd_header
  /external/qemu/distrib/sdl-1.2.15/src/
SDL.c 8 version 2.1 of the License, or (at your option) any later version.
51 /* The current SDL version */
52 static SDL_version version = variable
251 /* Return the library version number */
254 return(&version);
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_mcsn.h 8 version 2 of the License, or (at your option) any later version.
34 unsigned short version; /* Version */ member in struct:__anon13299
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_tveille.h 8 version 2 of the License, or (at your option) any later version.
38 unsigned long version; member in struct:__anon13537
  /external/qemu/target-i386/
hax-i386.h 5 ** License version 2, as published by the Free Software Foundation, and
41 uint32_t version; member in struct:hax_state
62 int hax_mod_version(struct hax_state *hax, struct hax_module_version *version);
  /external/skia/src/sfnt/
SkOTTable_maxp_TT.h 18 SK_OT_Fixed version; member in struct:SkOTTableMaximumProfile_TT
19 static const SK_OT_Fixed VERSION = SkTEndian_SwapBE32(0x00010000);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
OdexHeader.java 52 public final int version; field in class:OdexHeader
58 version = 35;
60 version = 36;
  /external/webkit/Source/WebCore/storage/
IDBDatabase.h 59 String version() const { return m_backend->version(); } function in class:WebCore::IDBDatabase
70 PassRefPtr<IDBVersionChangeRequest> setVersion(ScriptExecutionContext*, const String& version, ExceptionCode&);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.h 53 int version; member in struct:WKBundlePageOverlayClient
  /frameworks/base/core/java/android/content/res/
ObbInfo.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
42 * 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/base/core/java/android/webkit/
ViewStateSerializer.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
34 // VERSION = 1 was for pictures encoded using a previous copy of libskia
35 static final int VERSION = 2;
44 dos.writeInt(VERSION);
54 int version = dis.readInt(); local
55 if (version > VERSION) {
56 throw new IOException("Unexpected version: " + version);
60 int baseLayer = nativeDeserializeViewState(version, dis
    [all...]
  /frameworks/base/core/jni/
android_content_res_ObbScanner.cpp 4 * Licensed under the Apache License, Version 2.0 (the "License");
34 jfieldID version; member in struct:android::__anon19670
62 env->SetIntField(obbInfo, gObbInfoClassInfo.version, obb->getVersion());
98 GET_FIELD_ID(gObbInfoClassInfo.version, clazz,
99 "version", "I");
  /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/view/
ViewGroupCompat.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
65 final int version = Build.VERSION.SDK_INT; typedefs
66 if (version >= 14) {
68 } else if (version >= 11) {
105 * SDK version of 11 (Honeycomb) or newer. On earlier platform versions this feature
  /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...]
  /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/include/sys/
_system_properties.h 56 unsigned version; member in struct:prop_area
  /bionic/libc/kernel/common/linux/
ncp_mount.h 36 int version; member in struct:ncp_mount_data
55 int version; member in struct:ncp_mount_data_v4
swap.h 45 __u32 version; member in struct:swap_header::__anon511
  /bootable/recovery/
verifier.cpp 4 * Licensed under the Apache License, Version 2.0 (the "License");
198 // supported by Android, the string is preceded by a version
233 // a version 1 key has no version specifier.
236 int version; local
237 if (fscanf(f, "%d {", &version) != 1) goto exit;
238 if (version == 2) {
  /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

Completed in 617 milliseconds

1 2 3 4 5 6 7 8 91011>>