Searched defs:version (Results 126 - 150 of 1603) sorted by relevance

1234567891011>>

/external/chromium_org/sync/test/
H A Dtrackable_mock_invalidation.cc13 int64 version,
17 : MockInvalidation(is_unknown_version, version, payload),
11 TrackableMockInvalidation( bool is_unknown_version, int64 version, const std::string& payload, MockInvalidationTracker* tracker, int tracking_id) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js99 // 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],
4396 'version': '1.2.2',
4675 Engine: {name: 'unknown', version: 0},
4710 var version = this.Engines[engine]();
4711 if (version){
4712 this.Engine = {name: engine, version: version};
4713 this.Engine[engine] = this.Engine[engine + version]
[all...]
H A Djquery-1.3.2.js99 // 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],
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFaceCache.h64 unsigned version() const { return m_version; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDOMWindowWebDatabase.cpp43 PassRefPtrWillBeRawPtr<Database> DOMWindowWebDatabase::openDatabase(LocalDOMWindow& window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState& exceptionState) argument
53 database = dbManager.openDatabase(window.document(), name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
H A DDatabaseClient.cpp56 void DatabaseClient::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
59 m_inspectorAgent->didOpenDatabase(database, domain, name, version);
H A DInspectorDatabaseResource.cpp40 PassRefPtrWillBeRawPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
42 return adoptRefWillBeNoop(new InspectorDatabaseResource(database, domain, name, version));
45 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
50 , m_version(version)
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIInput.cpp40 MIDIInput* MIDIInput::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version) argument
43 return adoptRefCountedGarbageCollectedWillBeNoop(new MIDIInput(access, id, manufacturer, name, version));
46 MIDIInput::MIDIInput(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version) argument
47 : MIDIPort(access, id, manufacturer, name, MIDIPortTypeInput, version)
H A DMIDIPort.cpp38 MIDIPort::MIDIPort(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, MIDIPortTypeCode type, const String& version) argument
43 , m_version(version)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBFactory.h51 virtual void open(const WebString& name, long long version, long long transactionId, WebIDBCallbacks* callbacks, WebIDBDatabaseCallbacks* databaseCallbacks, const WebString& databaseIdentifier) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVersionGLSL.cpp18 // (These constructors were reserved in GLSL version 1.10.)
116 void TVersionGLSL::updateVersion(int version) argument
118 mVersion = std::max(version, mVersion);
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_set.c52 * The licence and distribution terms for any publically available version or
64 int X509_set_version(X509 *x, long version) argument
67 if (x->cert_info->version == NULL)
69 if ((x->cert_info->version=M_ASN1_INTEGER_new()) == NULL)
72 return(ASN1_INTEGER_set(x->cert_info->version,version));
H A Dx509cset.c61 int X509_CRL_set_version(X509_CRL *x, long version) argument
64 if (x->crl->version == NULL)
66 if ((x->crl->version=M_ASN1_INTEGER_new()) == NULL)
69 return(ASN1_INTEGER_set(x->crl->version,version));
/external/chromium_org/third_party/closure_linter/
H A Dsetup.py23 version='2.3.14', variable
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-maxp-table.hh53 likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000u)));
56 /* We only implement version 0.5 as none of the extra fields in version 1.0 are useful. */
58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0), member in struct:OT::maxp
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dheader.h23 unsigned int version: 3; member in struct:__anon13055
/external/chromium_org/third_party/libwebp/enc/
H A Dconfig.c21 WebPPreset preset, float quality, int version) {
22 if (WEBP_ABI_IS_INCOMPATIBLE(version, WEBP_ENCODER_ABI_VERSION)) {
23 return 0; // caller/system version mismatch!
20 WebPConfigInitInternal(WebPConfig* config, WebPPreset preset, float quality, int version) argument
/external/chromium_org/third_party/mesa/src/scons/
H A Dllvm.py34 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
[all...]
/external/chromium_org/third_party/opus/src/celt/arm/
H A Darmcpu.c133 int version; local
134 version = atoi(buf+17);
136 if(version >= 6)
/external/chromium_org/third_party/ots/src/
H A Dhdmx.h21 uint16_t version; member in struct:ots::OpenTypeHDMX
H A Dhead.cc18 uint32_t version = 0; local
19 if (!table.ReadU32(&version) ||
24 if (version >> 16 != 1) {
H A Dkern.h21 uint16_t version; member in struct:ots::OpenTypeKERNFormat0
34 uint16_t version; member in struct:ots::OpenTypeKERN
H A Dmaxp.cc18 uint32_t version = 0; local
19 if (!table.ReadU32(&version)) {
23 if (version >> 16 > 1) {
35 if (version >> 16 == 1) {
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp43 // 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)) {
H A DSkGLContextHelper.cpp49 GrGLVersion version = GrGLGetVersionFromString(versionStr); local
82 supportsPackedDepthStencil = version >= GR_GL_VER(3,0) ||
85 supportsPackedDepthStencil = version >= GR_GL_VER(3,0) ||

Completed in 4695 milliseconds

1234567891011>>