HomeSort by relevance Sort by last modified time
    Searched refs:Version (Results 126 - 150 of 6738) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
txfw32.h 23 USHORT Version;
33 USHORT Version;
45 USHORT Version;
63 USHORT Version;
sdkddkver.h 2 * sdkddkver.h: Version definitions for SDK and DDK. Originally
43 /* Mappings Between IE Version and Windows Version */
131 /* Version Fields in NTDDI_VERSION */
136 /* Macros to Extract Version Fields From NTDDI_VERSION */
137 #define OSVER(Version) ((Version) & OSVERSION_MASK)
138 #define SPVER(Version) (((Version) & SPVERSION_MASK) >> 8)
139 #define SUBVER(Version) (((Version) & SUBVERSION_MASK)
    [all...]
  /tools/metalava/src/main/java/com/android/tools/metalava/
Version.kt 4 * Licensed under the Apache License, Version 2.0 (the "License");
24 /** Version strings */
25 object Version {
26 val VERSION: String
30 val stream = BufferedInputStream(Version::class.java.getResourceAsStream("/version.properties"))
33 VERSION = properties.getProperty("metalavaVersion")
  /frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
VersionInfo.java 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
27 private final ArrayMap<Class<?>, Version> mVersions = new ArrayMap<>();
40 // The legacy default version is from the first class we add.
51 mVersions.put(cls, new Version(provider.version(), true));
55 mVersions.put(requires.target(), new Version(requires.version(), required));
60 mVersions.put(r.target(), new Version(r.version(), required));
76 ArrayMap<Class<?>, Version> versions = new ArrayMap<>(mVersions)
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscSystemManufacturerFunction.c 46 EFI_STRING Version;
77 Version = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
78 VerStrLen = StrLen(Version);
110 // Version will be the 3rd optional string following the formatted structure.
112 SmbiosRecord->Version = 3;
114 // Version will be the 4th optional string following the formatted structure.
123 UnicodeStrToAsciiStr(Version, OptionalStrStart + ManuStrLen + 1 + PdNameStrLen + 1);
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscSystemManufacturerFunction.c 46 EFI_STRING Version;
77 Version = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
78 VerStrLen = StrLen(Version);
110 // Version will be the 3rd optional string following the formatted structure.
112 SmbiosRecord->Version = 3;
114 // Version will be the 4th optional string following the formatted structure.
123 UnicodeStrToAsciiStr(Version, OptionalStrStart + ManuStrLen + 1 + PdNameStrLen + 1);
  /system/libvintf/include/vintf/
CompatibilityMatrix.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
49 Version getMinimumMetaVersion() const;
51 // If the corresponding <xmlfile> with the given version exists, for the first match,
59 // (Normally, version ranges do not overlap, and the only match is returned.)
60 std::string getXmlSchemaPath(const std::string& xmlFileName, const Version& version) const;
63 const std::string& package, const Version& expectVersion,
102 bool matchInstance(const std::string& halName, const Version& version,
120 Version mAvbMetaVersion
    [all...]
ManifestInstance.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 #include "Version.h"
39 using VersionType = Version;
43 Version version() const;
54 // return package@version::interface/instance
56 // return @version::interface/instance
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
AcpiSupportAcpiSupportProtocol.c 32 @param Version The version of the list to add the table to.
45 IN EFI_ACPI_TABLE_VERSION Version,
52 @param Version Bitmask of which versions to remove.
62 IN EFI_ACPI_TABLE_VERSION Version,
103 @param Version Versions that the table is currently used in.
116 OUT EFI_ACPI_TABLE_VERSION *Version,
152 // Get handle and version
156 *Version = CurrentTable->Version;
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type02/
MiscBaseBoardManufacturerFunction.c 53 CHAR16 *Version;
85 Version = (CHAR16 *) PcdGetPtr (PcdBaseBoardVersion);
86 if (StrLen(Version) > 0)
89 HiiSetString (mHiiHandle, TokenToUpdate, Version, NULL);
105 Version = HiiGetPackageString(&gEfiCallerIdGuid, TokenToGet, NULL);
106 VerStrLen = StrLen(Version);
153 UnicodeStrToAsciiStr(Version, OptionalStrStart + ManuStrLen + 1 + ProductNameStrLen + 1);
177 if(Version != NULL)
179 FreePool(Version);
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Binary/AmdModulePkg/Common/
Iscp.h 12 * @e version: $Revision: 338015 $ @e date: $Date: 2016-04-04 10:40:16 -0500 (Mon, 04 Apr 2016) $
128 UINT32 Version; ///< Version of HOB structure
156 UINT32 Version; ///< Version of NV data structure
164 UINT32 Version; ///< Version of Fuse Info Buffer structure
170 UINT32 Version; ///< Version of CPU reset Buffer structure
177 UINT32 Version; ///< Version of MAC address Info Buffer structure
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
RmPkg.py 46 # @param Version: Version of Dp
49 def CheckDpDepex(Dep, Guid, Version, WorkspaceDir):
50 (Removable, DependModuleList) = Dep.CheckDpDepexForRemove(Guid, Version)
103 # @param Version: Version of Dp
106 def GetCurrentFileList(DataBase, Guid, Version, WorkspaceDir):
108 for Dir in DataBase.GetDpInstallDirList(Guid, Version):
144 StoredDistFile, Guid, Version = GetInstalledDpInfo(Options.DistributionFile, Dep, DataBase, WorkspaceDir)
149 CheckDpDepex(Dep, Guid, Version, WorkspaceDir)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpIo.c 61 @param[in] Version IP_VERSION_4 or IP_VERSION_6
73 IN UINT8 Version
86 IpSender = IpIoFindSender (&IpIo, Version, Src);
93 if (Version == IP_VERSION_6) {
110 if (Version == IP_VERSION_6) {
121 ASSERT (Version == IpIo->IpVersion);
123 if (Version == IP_VERSION_4) {
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
SignedCertificateTimestamp.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
32 public enum Version {
47 private final Version version; field in class:SignedCertificateTimestamp
57 public SignedCertificateTimestamp(Version version, byte[] logId,
60 this.version = version;
68 public Version getVersion() {
69 return version;
92 int version = Serialization.readNumber(input, CTConstants.VERSION_LENGTH); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version package
17 UsageLine: "version",
18 Short: "print Go version",
19 Long: `Version prints the Go version, as reported by runtime.Version.`,
27 fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version package
17 UsageLine: "version",
18 Short: "print Go version",
19 Long: `Version prints the Go version, as reported by runtime.Version.`,
27 fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiTableProtocol.c 38 @param Version The version of the list to add the table to.
52 IN EFI_ACPI_TABLE_VERSION Version,
60 @param Version Bitmask of which versions to remove.
71 IN EFI_ACPI_TABLE_VERSION Version,
114 @param Version Version(s) to publish.
124 IN EFI_ACPI_TABLE_VERSION Version
140 if ((Version & EFI_ACPI_TABLE_VERSION_1_0B) != 0) {
147 if ((Version & ACPI_TABLE_VERSION_GTE_2_0) != 0) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/
Version.src 6 * to you under the Apache License, Version 2.0 (the "License");
24 * Administrative class to keep track of the version number of
27 * org.apache.project-name.Version.getVersion() be a standard way
28 * to get version information. This class will replace the older
29 * org.apache.xalan.processor.Version class.</P>
31 * information about the version of the XSLT spec we support.</P>
34 public class Version
38 * Get the basic version string for the current Xalan release.
39 * Version String formatted like
42 * Futurework: have this read version info from jar manifest.
    [all...]
  /external/deqp/framework/randomshaders/
rsgParameters.hpp 9 * Licensed under the Apache License, Version 2.0 (the "License");
40 enum Version
85 , version (VERSION_100)
97 Version version; member in class:rsg::ProgramParameters
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
InfoStream.h 31 support::ulittle32_t Version;
54 // PDB file format version. We only support VC70. See the enumeration
56 uint32_t Version;
  /external/mesa3d/docs/specs/
MESA_release_buffers.spec 17 Version
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
elfedit-2.d 12 Version:[ \t]+1 \(current\)
elfedit-3.d 12 Version:[ \t]+1 \(current\)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-common-3.d 7 Version: 1
cfi-common-4.d 7 Version: 1

Completed in 924 milliseconds

1 2 3 4 56 7 8 91011>>