Searched refs:Version (Results 26 - 50 of 634) sorted by relevance

1234567891011>>

/external/syslinux/efi32/include/efi/
H A Defiui.h49 UINT32 Version; member in struct:_UI_INTERFACE
H A Dlibsmbios.h67 SMBIOS_STRING Version; member in struct:__anon21195
82 SMBIOS_STRING Version; member in struct:__anon21196
90 SMBIOS_STRING Version; member in struct:__anon21197
/external/syslinux/efi64/include/efi/
H A Defiui.h49 UINT32 Version; member in struct:_UI_INTERFACE
H A Dlibsmbios.h67 SMBIOS_STRING Version; member in struct:__anon21372
82 SMBIOS_STRING Version; member in struct:__anon21373
90 SMBIOS_STRING Version; member in struct:__anon21374
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defiui.h49 UINT32 Version; member in struct:_UI_INTERFACE
H A Dlibsmbios.h67 SMBIOS_STRING Version; member in struct:__anon21592
82 SMBIOS_STRING Version; member in struct:__anon21593
90 SMBIOS_STRING Version; member in struct:__anon21594
/external/libchrome/base/
H A Dversion_unittest.cc16 Version v;
21 Version v1("1.2.3.4");
23 Version v3;
26 Version v2(v1);
70 Version version(cases[i].input);
99 Version lhs(cases[i].lhs);
100 Version rhs(cases[i].rhs);
155 const Version version(cases[i].lhs);
179 EXPECT_EQ(Version::IsValidWildcardString(cases[i].version),
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
H A DSignedCertificateTimestamp.java4 * Licensed under the Apache License, Version 2.0 (the "License");
32 public enum Version { enum in class:SignedCertificateTimestamp
47 private final Version version;
57 public SignedCertificateTimestamp(Version version, byte[] logId,
68 public Version getVersion() {
93 if (version != Version.V1.ordinal()) {
98 Version.V1,
/external/apache-xml/src/main/java/org/apache/xalan/
H A DVersion.src6 * to you under the Apache License, Version 2.0 (the "License");
27 * org.apache.project-name.Version.getVersion() be a standard way
29 * org.apache.xalan.processor.Version class.</P>
34 public class Version
39 * Version String formatted like
83 * Version number. This changes only when there is a
H A DVersion.java6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 577939 2007-09-20 21:45:37Z minchau $
27 * org.apache.project-name.Version.getVersion() be a standard way
29 * org.apache.xalan.processor.Version class.</P>
34 public class Version class
39 * Version String formatted like
83 * Version number. This changes only when there is a
/external/deqp/framework/randomshaders/
H A DrsgParameters.hpp9 * Licensed under the Apache License, Version 2.0 (the "License");
40 enum Version enum in namespace:rsg
97 Version version;
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DInfoStream.h31 support::ulittle32_t Version; member in struct:llvm::pdb::InfoStream::Header
56 uint32_t Version; member in class:llvm::pdb::InfoStream
/external/mesa3d/docs/specs/
H A DMESA_release_buffers.spec17 Version
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DVersion.java6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 477252 2006-11-20 16:52:00Z minchau $
27 * org.apache.project-name.Version.getVersion() be a standard way
31 public final class Version class
36 * Version String formatted like
80 * Version number. This changes only when there is a
H A DVersion.src6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.src 468654 2006-10-28 07:09:23Z minchau $
27 * org.apache.project-name.Version.getVersion() be a standard way
31 public final class Version
36 * Version String formatted like
80 * Version number. This changes only when there is a
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
H A DVersion.java23 public class Version extends Command { class in inherits:Command
H A DAllCommands.java32 new Report(), new ClassInfo(), new ExecInfo(), new Version());
/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl1490 my $Version;
1849 $Descriptor{$LibVersion}{"Version"} = parseTag(\$Content, "version");
1851 $Descriptor{$LibVersion}{"Version"} = $TargetVersion{$LibVersion};
1853 if(not $Descriptor{$LibVersion}{"Version"}) {
2120 remove_Unused($Version, "Extra");
2126 remove_Unused($Version, "All");
2129 remove_Unused($Version, "Extended");
2135 foreach my $Tid (keys(%{$TypeInfo{$Version}})) {
2136 check_Completeness($TypeInfo{$Version}{$Tid}, $Version);
[all...]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFCompileUnit.cpp33 Version = debug_info.getU16(offset_ptr);
38 bool versionOK = DWARFContext::isSupportedVersion(Version);
63 Version = debug_info_data.getU16(&offset);
68 bool versionOK = DWARFContext::isSupportedVersion(Version);
81 Version = 0;
91 << " version = " << format("0x%04x", Version)
/external/v8/src/
H A Dversion.h14 class Version { class in namespace:v8::internal
/external/mesa3d/src/mesa/main/
H A Dcontext.h303 return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
313 return ctx->API == API_OPENGLES2 && ctx->Version >= 31;
323 return ctx->API == API_OPENGLES2 && ctx->Version >= 32;
334 (_mesa_is_desktop_gl(ctx) && ctx->Version >= 32);
345 (ctx->API == API_OPENGLES2 && ctx->Version >= 31);
H A Dversion.c130 ctx->Version / 10, ctx->Version % 10,
184 &ctx->Version)) {
202 ctx->Extensions.Version = ctx->Version;
584 * Set the context's Version and VersionString fields.
591 if (ctx->Version)
594 ctx->Version = _mesa_get_version(&ctx->Extensions, &ctx->Const, ctx->API);
595 ctx->Extensions.Version = ctx->Version;
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
H A DDumperOptions.java4 * Licensed under the Apache License, Version 2.0 (the "License");
138 public enum Version { enum in class:DumperOptions
143 private Version(Integer[] version) { method in class:DumperOptions.Version
156 return "Version: " + getRepresentation();
174 private Version version = null;
243 public void setVersion(Version version) {
247 public Version getVersion() {
/external/ltp/
H A DMakefile90 all: $(addsuffix -all,$(COMMON_TARGETS)) Version
161 $(RM) -f Version
167 SRCDIR_INSTALL_READONLY := Version
174 .PHONY: Version
175 Version:
182 $(INSTALL_DIR)/Version: Version
/external/junit/src/main/java/org/junit/runner/
H A DJUnitCore.java3 import junit.runner.Version;
70 system.out().println("JUnit version " + Version.id());
84 return Version.id();

Completed in 1983 milliseconds

1234567891011>>