HomeSort by relevance Sort by last modified time
    Searched defs:version (Results 276 - 300 of 4293) sorted by null

<<11121314151617181920>>

  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_manager_android.cc 36 const std::string version = MakeString( local
46 version.find("OpenGL ES 3.1") != std::string::npos) {
  /external/chromium_org/media/blink/
cache_util.cc 30 const int version = response.httpVersion(); local
32 version == WebURLResponse::HTTP_1_1 ? HttpVersion(1, 1) :
33 version == WebURLResponse::HTTP_1_0 ? HttpVersion(1, 0) :
34 version == WebURLResponse::HTTP_0_9 ? HttpVersion(0, 9) :
cache_util_unittest.cc 24 WebURLResponse::HTTPVersion version; member in struct:media::GRFUTestCase
34 response.setHTTPVersion(test.version);
89 ", version: %d, code: %d, headers: %s",
90 i, tests[i].version, tests[i].status_code,
  /external/chromium_org/media/cast/net/rtp/
rtp_parser.cc 42 const uint8 version = bits >> 6; local
43 if (version != 2)
  /external/chromium_org/native_client_sdk/src/doc/
conf.py 25 # If your documentation needs a minimal Sphinx version, state it here.
47 # The version info for the project you're documenting, acts as replacement for
48 # |version| and |release|, also used in various other places throughout the
51 # The short X.Y version.
52 version = '31' variable
53 # The full version, including alpha/beta/rc tags.
  /external/chromium_org/net/cert/
signed_tree_head.h 24 // Version enum in RFC 6962, Section 3.2. Note that while in the current
27 enum Version { V1 = 0, };
29 Version version; member in struct:net::ct::SignedTreeHead
  /external/chromium_org/net/quic/
quic_protocol_test.cc 60 // If you add a new version to the QuicVersion enum you will need to add a new
65 // Any logs would indicate an unsupported version which we don't expect.
71 // Explicitly test a specific version.
79 QuicVersion version = kSupportedQuicVersions[i]; local
80 EXPECT_LT(0u, QuicVersionToQuicTag(version));
99 // If you add a new version to the QuicVersion enum you will need to add a new
104 // Any logs would indicate an unsupported version which we don't expect.
115 QuicVersion version = kSupportedQuicVersions[i]; local
117 // Get the tag from the version (we can loop over QuicVersions easily).
118 QuicTag tag = QuicVersionToQuicTag(version);
164 QuicVersion version = kSupportedQuicVersions[i]; local
    [all...]
  /external/chromium_org/ppapi/proxy/
gamepad_resource.cc 22 base::subtle::Atomic32 version; local
24 version = base::subtle::NoBarrier_Load(sequence);
28 if ((version & 1) == 0)
34 return version;
38 base::subtle::Atomic32 version) {
41 return base::subtle::Release_Load(sequence) != version;
85 base::subtle::Atomic32 version; local
88 version = ReadBegin(&buffer_->sequence);
93 } while (ReadRetry(&buffer_->sequence, version));
  /external/chromium_org/sandbox/win/tests/validation_tests/
suite.cc 123 base::win::Version version = base::win::GetVersion(); local
124 if (version < base::win::VERSION_WIN7)
169 if (base::win::Version() < base::win::VERSION_VISTA)
191 if (base::win::Version() < base::win::VERSION_VISTA)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 99 // The current version of jQuery being used
629 // Since version 1.3, DOM methods and functions like alert
1170 version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
    [all...]
jquery-1.3.2.js 99 // The current version of jQuery being used
629 // Since version 1.3, DOM methods and functions like alert
1170 version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceCache.h 64 unsigned version() const { return m_version; } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccessInitializer.h 30 String version; member in struct:blink::MIDIAccessInitializer::PortDescriptor
32 PortDescriptor(const String& id, const String& manufacturer, const String& name, MIDIPort::MIDIPortTypeCode type, const String& version)
37 , version(version) { }
51 virtual void didAddInputPort(const String& id, const String& manufacturer, const String& name, const String& version) OVERRIDE;
52 virtual void didAddOutputPort(const String& id, const String& manufacturer, const String& name, const String& version) OVERRIDE;
  /external/chromium_org/third_party/angle/src/compiler/translator/
DirectiveHandler.cpp 151 int version)
153 if (version == 100 ||
154 version == 300)
156 mShaderVersion = version;
161 stream << version; local
164 "version number", str, "not supported");
  /external/chromium_org/third_party/closure_linter/
setup.py 5 # Licensed under the Apache License, Version 2.0 (the "License");
23 version='2.3.14', variable
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
header.h 23 unsigned int version: 3; member in struct:__anon17680
  /external/chromium_org/third_party/libvpx/source/libvpx/
webmenc.cc 37 std::string version = "vpxenc"; local
39 version.append(std::string(" ") + vpx_codec_version_str());
41 info->set_writing_app(version.c_str());
  /external/chromium_org/third_party/mesa/src/scons/
llvm.py 34 import distutils.version namespace
71 # Try to determine the LLVM version from llvm/Config/config.h
82 llvm_version = distutils.version.LooseVersion(llvm_version)
85 print 'scons: could not determine the LLVM version from %s' % llvm_config
95 if llvm_version >= distutils.version.LooseVersion('3.0'):
107 elif llvm_version >= distutils.version.LooseVersion('2.9'):
121 elif llvm_version >= distutils.version.LooseVersion('2.7'):
168 llvm_version = env.backtick('llvm-config --version').rstrip()
169 llvm_version = distutils.version.LooseVersion(llvm_version)
183 if llvm_version >= distutils.version.LooseVersion('3.1')
    [all...]
  /external/chromium_org/third_party/opus/src/celt/arm/
armcpu.c 133 int version; local
134 version = atoi(buf+17);
136 if(version >= 6)
  /external/chromium_org/third_party/ots/src/
hdmx.h 21 uint16_t version; member in struct:ots::OpenTypeHDMX
kern.h 21 uint16_t version; member in struct:ots::OpenTypeKERNFormat0
34 uint16_t version; member in struct:ots::OpenTypeKERN
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 43 // GetStringi may be NULL depending on the GL version.
305 GrGLVersion version = GrGLGetVersionFromString(verStr); local
307 if (version < GR_GL_VER(2,0)) {
388 if (version >= GR_GL_VER(3,0)) {
426 if (version >= GR_GL_VER(3,0)) {
451 if (version >= GR_GL_VER(3,0)) {
479 if (version >= GR_GL_VER(3,1)) {
SkGLContextHelper.cpp 49 GrGLVersion version = GrGLGetVersionFromString(versionStr); local
82 supportsPackedDepthStencil = version >= GR_GL_VER(3,0) ||
85 supportsPackedDepthStencil = version >= GR_GL_VER(3,0) ||
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_maxp.h 24 union Version {
25 SK_OT_Fixed version; member in union:SkOTTableMaximumProfile::Version
29 } version; member in struct:SkOTTableMaximumProfile
  /external/chromium_org/third_party/v4l2capture/
setup.py 16 version = "1.4", variable

Completed in 1467 milliseconds

<<11121314151617181920>>