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

1 2 3 45 6 7 8 91011>>

  /external/clang/include/clang/Basic/
Makefile 10 Version.inc
18 # Compute the Clang version from the LLVM version, unless specified explicitly.
55 $(ObjDir)/Version.inc.tmp : Version.inc.in Makefile $(LLVM_OBJ_ROOT)/Makefile.config $(ObjDir)/.dir
56 $(Echo) "Updating Clang version info."
  /external/chromium/chrome/browser/
plugin_data_remover.cc 11 #include "base/version.h"
26 // The minimum Flash Player version that implements NPP_ClearSiteData.
177 scoped_ptr<Version> version(
178 webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version));
179 scoped_ptr<Version> min_version(Version::GetVersionFromString(
183 min_version.reset(Version::GetVersionFromString(kMinFlashVersion));
185 version.get() &&
186 min_version->CompareTo(*version) == -1
    [all...]
  /external/chromium_org/chrome/browser/component_updater/test/
test_installer.h 70 Version current_version_;
  /external/chromium_org/chrome/browser/ui/views/message_center/
web_notification_tray_win.cc 38 base::win::Version win_version = base::win::GetVersion();
42 // StatusIconWin uses NIIF_LARGE_ICON if the version is >= vista. According
  /external/chromium_org/chrome/installer/util/
fake_installation_state.h 9 #include "base/version.h"
20 // Takes ownership of |version|.
21 void AddChrome(bool system_install, bool multi_install, Version* version) {
23 chrome_state.set_version(version);
30 .AppendASCII(version->GetString())
installer_state.cc 293 // Parse --critical-update-version=W.X.Y.Z
296 critical_update_version_ = Version(critical_version_value);
462 // Strip off <version>/Installer/setup.exe; see GetInstallerDirectory().
504 Version* InstallerState::GetCurrentVersion(
507 scoped_ptr<Version> current_version;
508 // If we're doing a multi-install, the current version may be either an
539 const Version* version = NULL; local
542 // installation path. If so, we use old_version, which holds the version of
545 version = product_state->old_version()
674 Version version; local
    [all...]
  /external/chromium_org/net/cert/
x509_util_mac.cc 51 tp_ssl_options.Version = CSSM_APPLE_TP_SSL_OPTS_VERSION;
62 tp_ssl_options.Version = CSSM_APPLE_TP_SSL_OPTS_VERSION;
93 tp_crl_options.Version = CSSM_APPLE_TP_CRL_OPTS_VERSION;
120 tp_ocsp_options.Version = CSSM_APPLE_TP_OCSP_OPTS_VERSION;
  /external/chromium_org/net/tools/quic/test_tools/
http_message_test_utils.cc 28 // the enum values defined in Version and Method of HTTPMessage.
84 HTTPMessage::Version HTTPMessage::StringToVersion(StringPiece str) {
88 return static_cast<HTTPMessage::Version>(i);
99 const char* HTTPMessage::VersionToString(Version version) {
100 CHECK_LT(static_cast<size_t>(version), arraysize(kHTTPVersionString));
101 return kHTTPVersionString[version];
109 HTTPMessage::HTTPMessage(Version ver, Method request, const string& path)
  /external/chromium_org/sandbox/win/src/
sandbox_utils.cc 16 base::win::Version version = base::win::GetVersion(); local
17 return (version > base::win::VERSION_XP) ||
18 ((version == base::win::VERSION_XP) &&
  /external/clang/lib/Basic/
Makefile 40 $(ObjDir)/Version.o: $(ObjDir)/.ver-svn
  /external/eigen/Eigen/src/Core/
Assign.h 242 int Version = Specialized>
249 template<typename Derived1, typename Derived2, int Unrolling, int Version>
250 struct assign_impl<Derived1, Derived2, InvalidTraversal, Unrolling, Version>
255 template<typename Derived1, typename Derived2, int Version>
256 struct assign_impl<Derived1, Derived2, DefaultTraversal, NoUnrolling, Version>
269 template<typename Derived1, typename Derived2, int Version>
270 struct assign_impl<Derived1, Derived2, DefaultTraversal, CompleteUnrolling, Version>
279 template<typename Derived1, typename Derived2, int Version>
280 struct assign_impl<Derived1, Derived2, DefaultTraversal, InnerUnrolling, Version>
296 template<typename Derived1, typename Derived2, int Version>
    [all...]
  /external/libppp/src/
command.h 62 extern const char Version[];
  /external/libvpx/libvpx/vp8/common/
onyxd.h 33 int Version;
  /external/llvm/include/llvm/Transforms/
Instrumentation.h 43 // A four-byte version string. The meaning of a version string is described in
45 char Version[4];
107 /// NOTE: If the IR file to be debugged is not on disk, use the version of this
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 37 : TotalLength(0), Version(0), PrologueLength(0), MinInstLength(0),
43 // Version identifier for the statement information format.
44 uint16_t Version;
66 return PrologueLength + sizeof(TotalLength) + sizeof(Version) +
78 TotalLength = Version = PrologueLength = 0;
  /external/smack/src/org/jivesoftware/smackx/packet/
Version.java 8 * All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
26 * A Version IQ packet, which is used by XMPP clients to discover version information
29 * An example to discover the version of the server:
31 * // Request the version from the server.
32 * Version versionRequest = new Version();
45 * Version versionResult = (Version)result;
51 public class Version extends IQ
54 private String version; field in class:Version
    [all...]
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.cc 21 #include "base/version.h"
62 // If we don't have Pnacl installed, this is the version we claim.
71 void CheckVersionCompatiblity(const base::Version& current_version) {
93 Version* latest_version,
102 Version version(path.BaseName().MaybeAsASCII());
103 if (!version.IsValid())
106 if (version.CompareTo(*latest_version) > 0) {
109 *latest_version = version;
114 *latest_version = version;
262 Version version; local
    [all...]
  /external/chromium/chrome/browser/extensions/
external_registry_extension_loader_win.cc 11 #include "base/version.h"
27 // Registry value of that key that defines the current version of the .crx file.
28 const wchar_t kRegistryExtensionVersion[] = L"version";
77 scoped_ptr<Version> version; local
78 version.reset(Version::GetVersionFromString(
80 if (!version.get()) {
81 LOG(ERROR) << "Invalid version value " << extension_version
  /external/chromium_org/components/variations/
processed_study.cc 9 #include "base/version.h"
26 !Version::IsValidWildcardString(study.filter().min_version())) {
27 DVLOG(1) << study.name() << " has invalid min version: "
32 !Version::IsValidWildcardString(study.filter().max_version())) {
33 DVLOG(1) << study.name() << " has invalid max version: "
  /external/e2fsprogs/contrib/
build-rpm 13 pkgvers=`grep Version: e2fsprogs.spec | awk '{print $2;}'`
35 [ "`rpmbuild --version 2> /dev/null`" ] && RPM=rpmbuild || RPM=rpm
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.stdout.exp 14 Linux Version 2.6.29, Compiled #1 SMP Mon May 4 09:51:54 EDT 2009
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.stdout.exp 14 Linux Version 2.6.32, Compiled #1 Wed May 13 15:51:54 UTC 2009
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.stdout.exp 14 Linux Version 2.6.29, Compiled #1 Wed May 13 15:51:54 UTC 2009
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.stdout.exp 14 Linux Version 2.6.29, Compiled #1 SMP Mon May 4 09:51:54 EDT 2009
  /external/chromium_org/chrome_frame/
dll_redirector.cc 19 #include "base/version.h"
125 // Build our own file version outside of the lock:
126 scoped_ptr<Version> our_version(GetCurrentModuleVersion());
145 // back to loading our current version. We return true to indicate that the
146 // caller should not attempt to delegate to an already loaded version.
178 // Either write our own version number or read it in if it was already
190 dll_version_.reset(new Version(buffer));
194 // If we either couldn't parse a valid version out of the shared
195 // memory or we did parse a version and it is the same as our own,
202 NOTREACHED() << "Failed to map in version beacon."
    [all...]

Completed in 224 milliseconds

1 2 3 45 6 7 8 91011>>