Searched refs:extensions (Results 1 - 25 of 412) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLDepthTexture.cpp52 Extensions3D* extensions = context->getExtensions(); local
53 return extensions->supports("GL_CHROMIUM_depth_texture")
54 || extensions->supports("GL_OES_depth_texture")
55 || extensions->supports("GL_ARB_depth_texture");
H A DWebGLCompressedTextureS3TC.cpp57 Extensions3D* extensions = context->graphicsContext3D()->getExtensions(); local
58 return extensions->supports("GL_EXT_texture_compression_s3tc")
59 || (extensions->supports("GL_EXT_texture_compression_dxt1")
60 && extensions->supports("GL_CHROMIUM_texture_compression_dxt3")
61 && extensions->supports("GL_CHROMIUM_texture_compression_dxt5"));
H A DWebGLCompressedTextureATC.cpp55 Extensions3D* extensions = context->graphicsContext3D()->getExtensions(); local
56 return extensions->supports("GL_AMD_compressed_ATC_texture");
H A DOESVertexArrayObject.cpp79 Extensions3D* extensions = m_context->graphicsContext3D()->getExtensions();
80 return extensions->isVertexArrayOES(arrayObject->object());
94 Extensions3D* extensions = m_context->graphicsContext3D()->getExtensions(); local
96 extensions->bindVertexArrayOES(arrayObject->object());
101 extensions->bindVertexArrayOES(0);
H A DWebGLCompressedTexturePVRTC.cpp57 Extensions3D* extensions = context->graphicsContext3D()->getExtensions(); local
58 return extensions->supports("GL_IMG_texture_compression_pvrtc");
/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509_ext.c71 return(X509v3_get_ext_count(x->crl->extensions));
76 return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos));
81 return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos));
86 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos));
91 return(X509v3_get_ext(x->crl->extensions,loc));
96 return(X509v3_delete_ext(x->crl->extensions,loc));
101 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx);
107 return X509V3_add1_i2d(&x->crl->extensions, nid, value, crit, flags);
112 return(X509v3_add_ext(&(x->crl->extensions),ex,loc) != NULL);
117 return(X509v3_get_ext_count(x->cert_info->extensions));
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitMimeInfo.cpp36 GRefPtr<GPtrArray> extensions; member in struct:_WebKitMimeInfo
122 * Get the list of file extensions associated to the
130 if (info->extensions)
131 return reinterpret_cast<gchar**>(info->extensions->pdata);
133 if (info->mimeInfo.extensions.isEmpty())
136 info->extensions = adoptGRef(g_ptr_array_new_with_free_func(g_free));
137 for (size_t i = 0; i < info->mimeInfo.extensions.size(); ++i) {
138 if (info->mimeInfo.extensions[i].isEmpty())
140 g_ptr_array_add(info->extensions.get(), g_strdup(info->mimeInfo.extensions[
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/slapi/
H A Dslapi_ext.c39 * Object extensions
41 * We only support two types -- connection and operation extensions.
53 } extensions[SLAPI_X_EXT_MAX]; member in struct:slapi_registered_extension_set
58 void **extensions; member in struct:slapi_extension_block
104 assert( extensionhandle < registered_extensions.extensions[objecttype].count );
106 assert( registered_extensions.extensions[objecttype].constructors != NULL );
107 constructor = registered_extensions.extensions[objecttype].constructors[extensionhandle];
109 assert( eblock->extensions[extensionhandle] == NULL );
112 eblock->extensions[extensionhandle] = (*constructor)( object, parent );
114 eblock->extensions[extensionhandl
[all...]
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DDOMMimeType.cpp52 const Vector<String>& extensions = mimeClassInfo().extensions; local
55 for (size_t i = 0; i < extensions.size(); ++i) {
58 builder.append(extensions[i]);
/macosx-10.10/ruby-106/ruby/lib/uri/
H A Dldap.rb20 # ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]
35 :extensions,
57 # scope, filter, and extensions.
63 # [host, port, dn, attributes, scope, filter, extensions].
81 [:extensions, :filter, :scope, :attributes].collect do |x|
125 # private method to cleanup +attributes+, +scope+, +filter+ and +extensions+,
131 @extensions = nil
134 attrs, scope, filter, extensions = @query.split('?')
139 @extensions = extensions i
234 def extensions method in class:URI.LDAP
[all...]
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dsecurity.rb378 # The default set of extensions are:
393 alt_name = certificate.extensions.find do |extension|
406 # The +extensions+ restrict the key to the indicated uses.
408 def self.create_cert subject, key, age = ONE_YEAR, extensions = EXTENSIONS,
423 cert.extensions = extensions.map do |ext_name, value|
432 # a subject alternative name of +email+ and the given +extensions+ for the
435 def self.create_cert_email email, key, age = ONE_YEAR, extensions = EXTENSIONS
438 extensions = extensions
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hdb/
H A Dext.c44 if (ent->extensions == NULL)
48 * check for unknown extensions and if they where tagged mandatory
51 for (i = 0; i < ent->extensions->len; i++) {
52 if (ent->extensions->val[i].data.element !=
55 if (ent->extensions->val[i].mandatory) {
70 if (entry->extensions == NULL)
73 for (i = 0; i < entry->extensions->len; i++)
74 if (entry->extensions->val[i].data.element == (enum HDB_extension_data_enum)type)
75 return &entry->extensions->val[i];
96 if (entry->extensions
[all...]
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_x509crl.rb86 assert_equal("CRLReason", revoked[0].extensions[0].oid)
87 assert_equal("CRLReason", revoked[1].extensions[0].oid)
88 assert_equal("CRLReason", revoked[2].extensions[0].oid)
89 assert_equal("CRLReason", revoked[3].extensions[0].oid)
90 assert_equal("CRLReason", revoked[4].extensions[0].oid)
92 assert_equal("Key Compromise", revoked[0].extensions[0].value)
93 assert_equal("CA Compromise", revoked[1].extensions[0].value)
94 assert_equal("Affiliation Changed", revoked[2].extensions[0].value)
95 assert_equal("Superseded", revoked[3].extensions[0].value)
96 assert_equal("Cessation Of Operation", revoked[4].extensions[
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_security.rb34 assert_equal 3, cert.extensions.length,
35 cert.extensions.map { |e| e.to_a.first }
37 constraints = cert.extensions.find { |ext| ext.oid == 'basicConstraints' }
40 key_usage = cert.extensions.find { |ext| ext.oid == 'keyUsage' }
44 key_ident = cert.extensions.find { |ext| ext.oid == 'subjectKeyIdentifier' }
78 assert_equal 5, cert.extensions.length,
79 cert.extensions.map { |e| e.to_a.first }
81 constraints = cert.extensions.find { |ext| ext.oid == 'subjectAltName' }
84 constraints = cert.extensions.find { |ext| ext.oid == 'basicConstraints' }
87 key_usage = cert.extensions
[all...]
/macosx-10.10/tcl-105/tcl_ext/tdom/
H A DMakefile.tnc18 Sources = $(SRCROOT)/tdom/extensions/$(Project)
/macosx-10.10/WebCore-7600.1.25/loader/mac/
H A DLoaderNSURLExtras.mm84 Vector<String> extensions = MIMETypeRegistry::getExtensionsForMIMEType(mimeType);
86 if (extensions.isEmpty() || !vectorContainsString(extensions, extension)) {
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Misc/
H A Dpyobjc_setup.py38 extensions = self.extensions
39 self.extensions = [
40 e for e in extensions if e.name.startswith('PyObjCTest') ]
42 self.extensions = extensions
/macosx-10.10/ruby-106/ruby/lib/rubygems/commands/
H A Dpristine_command.rb14 :extensions => true,
23 add_option('--[no-]extensions',
24 'Restore gems with extensions',
26 options[:extensions] = value
42 '--extensions'
52 will revert them. All extensions are rebuilt and all bin stubs for the gem
57 If --no-extensions is provided pristine will not attempt to restore a gem
93 unless spec.extensions.empty? or options[:extensions] then
/macosx-10.10/Security-57031.1.35/Security/regressions/test/
H A Dtestcert.c108 CFMutableDictionaryRef extensions = NULL; local
112 extensions = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
113 test_cert_key_usage(extensions, kSecKeyUsageKeyCertSign | kSecKeyUsageCRLSign);
114 test_cert_path_length(extensions, 0);
115 ca_cert = SecGenerateSelfSignedCertificate(ca_subject, extensions, public_key, private_key);
120 CFReleaseSafe(extensions);
134 CFMutableDictionaryRef extensions = NULL; local
144 //extensions = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
145 //require(extensions, out);
146 //test_cert_key_usage(extensions, key_usag
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/surfaces/glx/
H A DX11Helper.h37 #include <X11/extensions/Xcomposite.h>
38 #include <X11/extensions/Xrender.h>
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_cl/lib/
H A DDecodedCrl.cpp21 * with extensions parsed and decoded (still in NSS format).
50 mDecodedExtensions.decodeFromNss(mCrl.tbs.extensions);
58 /* decode mCrl.tbs and its extensions */
69 mDecodedExtensions.decodeFromNss(mCrl.tbs.extensions);
77 assert(tbs.extensions == NULL);
80 /* no extensions, no error */
83 mDecodedExtensions.encodeToNss(tbs.extensions);
/macosx-10.10/libxslt-13/libxslt/libexslt/
H A Dexslt.c9 #include <libxslt/extensions.h>
23 * Registers all available EXSLT extensions
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Doc/
H A Dconf.py16 # If extensions (or modules to document with autodoc) are in another directory,
23 # Add any Sphinx extension module names here, as strings. They can be extensions
25 extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.ifconfig', 'rst2pdf.pdfbuilder'] variable
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A DX509Templates.h103 NSS_CertExtension **extensions; // optional member in struct:__anon3553
138 NSS_CertExtension **extensions; // optional member in struct:__anon3555
156 NSS_CertExtension **extensions; // optional member in struct:__anon3556
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A DX509Templates.h103 NSS_CertExtension **extensions; // optional member in struct:__anon3988
138 NSS_CertExtension **extensions; // optional member in struct:__anon3990
156 NSS_CertExtension **extensions; // optional member in struct:__anon3991

Completed in 312 milliseconds

1234567891011>>