Home
last modified time | relevance | path

Searched full:extensions (Results 1 – 25 of 2645) sorted by relevance

12345678910>>...106

/third_party/protobuf/benchmarks/datasets/google_message3/
Dbenchmark_message3_1.proto457 extensions 1000 to 536870911;
598 extensions 17 to 17;
599 extensions 21 to 21;
600 extensions 25 to 25;
601 extensions 27 to 27;
602 extensions 29 to 29;
603 extensions 30 to 30;
604 extensions 31 to 31;
605 extensions 32 to 32;
606 extensions 33 to 33;
[all …]
/third_party/protobuf/docs/
Doptions.md3 This file contains a global registry of known extensions for descriptor.proto,
5 their own extensions, can be confident that there won't be collisions in
14 ## Existing Registered Extensions
18 * Extensions: 1000
22 * Extensions: 1001
26 * Extensions: 1002
30 * Extensions: 1003
34 * Extensions: 1004
38 * Extensions: 1005
42 * Extensions: 1006
[all …]
/third_party/node/deps/npm/node_modules/mime-db/
Ddb.json68 "extensions": ["ez"] array
75 "extensions": ["aw"] array
86 "extensions": ["atom"] array
91 "extensions": ["atomcat"] array
103 "extensions": ["atomsvc"] array
121 "extensions": ["bdoc"] array
154 "extensions": ["ccxml"] array
162 "extensions": ["cdmia"] array
166 "extensions": ["cdmic"] array
170 "extensions": ["cdmid"] array
[all …]
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
Dtest_util.py194 extensions = message.Extensions
202 extensions[pb2.optional_int32_extension] = 101
203 extensions[pb2.optional_int64_extension] = 102
204 extensions[pb2.optional_uint32_extension] = 103
205 extensions[pb2.optional_uint64_extension] = 104
206 extensions[pb2.optional_sint32_extension] = 105
207 extensions[pb2.optional_sint64_extension] = 106
208 extensions[pb2.optional_fixed32_extension] = 107
209 extensions[pb2.optional_fixed64_extension] = 108
210 extensions[pb2.optional_sfixed32_extension] = 109
[all …]
Ddescriptor_test.py88 extensions=[])
152 self.assertEqual(9876543210, file_options.Extensions[file_opt1])
155 self.assertEqual(-56, message_options.Extensions[message_opt1])
158 self.assertEqual(8765432109, field_options.Extensions[field_opt1])
160 self.assertEqual(42, field_options.Extensions[field_opt2])
163 self.assertEqual(-789, enum_options.Extensions[enum_opt1])
166 self.assertEqual(123, enum_value_options.Extensions[enum_value_opt1])
170 self.assertEqual(-9876543210, service_options.Extensions[service_opt1])
174 method_options.Extensions[method_opt1])
187 self.assertEqual(False, message_options.Extensions[
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DCaps.cpp65 const Extensions &extensions) in GenerateMinimumTextureCaps() argument
70 caps.texturable = internalFormatInfo.textureSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
71 caps.filterable = internalFormatInfo.filterSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
72 caps.textureAttachment = internalFormatInfo.textureAttachmentSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
73 caps.renderbuffer = internalFormatInfo.renderbufferSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
125 const Extensions &extensions, in InitMinimumTextureCapsMap() argument
131 GenerateMinimumTextureCaps(internalFormat, clientVersion, extensions)); in InitMinimumTextureCapsMap()
135 Extensions::Extensions() = default;
137 Extensions::Extensions(const Extensions &other) = default;
139 std::vector<std::string> Extensions::getStrings() const in getStrings()
[all …]
Dformatutils.cpp70 static bool AlwaysSupported(const Version &, const Extensions &) in AlwaysSupported() argument
75 static bool NeverSupported(const Version &, const Extensions &) in NeverSupported() argument
81 static bool RequireES(const Version &clientVersion, const Extensions &) in RequireES() argument
86 // Pointer to a boolean memeber of the Extensions struct
87 typedef bool(Extensions::*ExtensionBool);
91 static bool RequireExt(const Version &, const Extensions &extensions) in RequireExt() argument
93 return extensions.*bool1; in RequireExt()
98 static bool RequireESOrExt(const Version &clientVersion, const Extensions &extensions) in RequireESOrExt() argument
101 extensions.*bool1; in RequireESOrExt()
104 // Check for a minimum client version or two extensions
[all …]
DCompiler.cpp72 const gl::Extensions &extensions = state.getExtensions(); in Compiler() local
89 mResources.OES_standard_derivatives = extensions.standardDerivatives; in Compiler()
90 mResources.EXT_draw_buffers = extensions.drawBuffers; in Compiler()
91 mResources.EXT_shader_texture_lod = extensions.shaderTextureLOD; in Compiler()
92 mResources.OES_EGL_image_external = extensions.eglImageExternal; in Compiler()
93 mResources.OES_EGL_image_external_essl3 = extensions.eglImageExternalEssl3; in Compiler()
94 mResources.NV_EGL_stream_consumer_external = extensions.eglStreamConsumerExternal; in Compiler()
95 mResources.ARB_texture_rectangle = extensions.textureRectangle; in Compiler()
97 extensions.textureStorageMultisample2DArray; in Compiler()
98 mResources.OES_texture_3D = extensions.texture3DOES; in Compiler()
[all …]
/third_party/protobuf/python/google/protobuf/internal/
Dtest_util.py230 extensions = message.Extensions
238 extensions[pb2.optional_int32_extension] = 101
239 extensions[pb2.optional_int64_extension] = 102
240 extensions[pb2.optional_uint32_extension] = 103
241 extensions[pb2.optional_uint64_extension] = 104
242 extensions[pb2.optional_sint32_extension] = 105
243 extensions[pb2.optional_sint64_extension] = 106
244 extensions[pb2.optional_fixed32_extension] = 107
245 extensions[pb2.optional_fixed64_extension] = 108
246 extensions[pb2.optional_sfixed32_extension] = 109
[all …]
Ddescriptor_test.py162 self.assertEqual(9876543210, file_options.Extensions[file_opt1])
165 self.assertEqual(-56, message_options.Extensions[message_opt1])
168 self.assertEqual(8765432109, field_options.Extensions[field_opt1])
170 self.assertEqual(42, field_options.Extensions[field_opt2])
173 self.assertEqual(-99, oneof_options.Extensions[oneof_opt1])
176 self.assertEqual(-789, enum_options.Extensions[enum_opt1])
179 self.assertEqual(123, enum_value_options.Extensions[enum_value_opt1])
183 self.assertEqual(-9876543210, service_options.Extensions[service_opt1])
187 method_options.Extensions[method_opt1])
218 self.assertEqual(False, message_options.Extensions[
[all …]
/third_party/node/test/parallel/
Dtest-module-multi-extensions.js11 const file = path.join(tmpdir.path, 'test-extensions.foo.bar');
21 require.extensions['.bar'] = common.mustNotCall();
22 require.extensions['.foo.bar'] = common.mustCall();
23 const modulePath = path.join(tmpdir.path, 'test-extensions');
27 delete require.extensions['.bar'];
28 delete require.extensions['.foo.bar'];
33 require.extensions['.foo.bar'] = common.mustCall();
34 const modulePath = path.join(tmpdir.path, 'test-extensions');
42 delete require.extensions['.foo.bar'];
47 const modulePath = path.join(tmpdir.path, 'test-extensions');
[all …]
/third_party/openssl/crypto/x509/
Dx509_ext.c21 return X509v3_get_ext_count(x->crl.extensions); in X509_CRL_get_ext_count()
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos); in X509_CRL_get_ext_by_critical()
42 return X509v3_get_ext(x->crl.extensions, loc); in X509_CRL_get_ext()
47 return X509v3_delete_ext(x->crl.extensions, loc); in X509_CRL_delete_ext()
52 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx); in X509_CRL_get_ext_d2i()
58 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags); in X509_CRL_add1_ext_i2d()
63 return (X509v3_add_ext(&(x->crl.extensions), ex, loc) != NULL); in X509_CRL_add_ext()
68 return X509v3_get_ext_count(x->cert_info.extensions); in X509_get_ext_count()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
DFunctionsWGL.cpp41 const std::vector<std::string> &extensions, in GetWGLExtensionProcAddress() argument
47 if (std::find(extensions.begin(), extensions.end(), extensionName) != extensions.end()) in GetWGLExtensionProcAddress()
146 angle::SplitStringAlongWhitespace(extensionString, &extensions); in initialize()
151 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_create_context", in initialize()
155 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
157 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
159 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pixel_format", in initialize()
163 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_EXT_swap_control", in initialize()
167 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pbuffer", in initialize()
169 GetWGLExtensionProcAddress(glModule, getProcAddress, extensions, "WGL_ARB_pbuffer", in initialize()
[all …]
/third_party/flutter/skia/src/gpu/gl/
DGrGLAssembleGLESInterfaceAutogen.cpp45 GrGLExtensions extensions; in GrGLMakeAssembledGLESInterface() local
46 if (!extensions.init(kGLES_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString, in GrGLMakeAssembledGLESInterface()
155 } else if (extensions.has("GL_OES_vertex_array_object")) { in GrGLMakeAssembledGLESInterface()
161 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
165 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
169 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
171 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
175 if (extensions.has("GL_EXT_clear_texture")) { in GrGLMakeAssembledGLESInterface()
183 } else if (extensions.has("GL_EXT_draw_instanced")) { in GrGLMakeAssembledGLESInterface()
210 if (extensions.has("GL_EXT_multi_draw_indirect")) { in GrGLMakeAssembledGLESInterface()
[all …]
DGrGLAssembleGLInterfaceAutogen.cpp48 GrGLExtensions extensions; in GrGLMakeAssembledGLInterface() local
49 if (!extensions.init(kGL_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString, in GrGLMakeAssembledGLInterface()
167 } else if (extensions.has("GL_ARB_blend_func_extended")) { in GrGLMakeAssembledGLInterface()
171 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
173 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
180 } else if (extensions.has("GL_ARB_clear_texture")) { in GrGLMakeAssembledGLInterface()
188 } else if (extensions.has("GL_ARB_draw_instanced")) { in GrGLMakeAssembledGLInterface()
191 } else if (extensions.has("GL_EXT_draw_instanced")) { in GrGLMakeAssembledGLInterface()
202 } else if (extensions.has("GL_ARB_draw_indirect")) { in GrGLMakeAssembledGLInterface()
211 } else if (extensions.has("GL_ARB_texture_multisample")) { in GrGLMakeAssembledGLInterface()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DDispatchTableGL_autogen.cpp20 // Check for nullptr so extensions do not overwrite core imports.
30 const std::set<std::string> &extensions) in initProcsDesktopGL() argument
759 if (extensions.count("GL_ARB_ES2_compatibility") != 0) in initProcsDesktopGL()
768 if (extensions.count("GL_ARB_ES3_1_compatibility") != 0) in initProcsDesktopGL()
773 if (extensions.count("GL_ARB_ES3_2_compatibility") != 0) in initProcsDesktopGL()
778 if (extensions.count("GL_ARB_base_instance") != 0) in initProcsDesktopGL()
786 if (extensions.count("GL_ARB_blend_func_extended") != 0) in initProcsDesktopGL()
792 if (extensions.count("GL_ARB_buffer_storage") != 0) in initProcsDesktopGL()
797 if (extensions.count("GL_ARB_clear_buffer_object") != 0) in initProcsDesktopGL()
803 if (extensions.count("GL_ARB_clear_texture") != 0) in initProcsDesktopGL()
[all …]
/third_party/libxml2/result/HTML/
Dfp40.htm6 <title>README - Microsoft FrontPage 2000 Server Extensions</title>
12 <h1><a name="top">Microsoft FrontPage 2000 Server Extensions, UNIX</a></h1>
17 <p>The FrontPage Server Extensions are a set of programs on the Web server that support:
36 information to supplement the Microsoft FrontPage Server Extensions documentation.</p>
39 <a href="#upgrading">Upgrading from previous version of FrontPage Server Extensions</a><br>
48 <p>You need to take some special steps to run the FrontPage Server Extensions with Apache 1.3.4.
49 FrontPage Server Extensions expect to find all resource directives in the main server
50 configuration file, usually http.conf. To prevent the server extensions from using any secondary
73 <h3><a name="upgrading">Upgrading from previous version of FrontPage Server Extensions</a></h3>
77 <p>When you install FrontPage 2000 Server Extensions, a new frontpage.cnf file is created in the /u…
[all …]
/third_party/boringssl/src/crypto/x509/
Dx509_ext.c67 return (X509v3_get_ext_count(x->crl->extensions)); in X509_CRL_get_ext_count()
72 return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos)); in X509_CRL_get_ext_by_NID()
77 return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos)); in X509_CRL_get_ext_by_OBJ()
82 return (X509v3_get_ext_by_critical(x->crl->extensions, crit, lastpos)); in X509_CRL_get_ext_by_critical()
87 return (X509v3_get_ext(x->crl->extensions, loc)); in X509_CRL_get_ext()
92 return (X509v3_delete_ext(x->crl->extensions, loc)); in X509_CRL_delete_ext()
97 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx); in X509_CRL_get_ext_d2i()
103 return X509V3_add1_i2d(&x->crl->extensions, nid, value, crit, flags); in X509_CRL_add1_ext_i2d()
108 return (X509v3_add_ext(&(x->crl->extensions), ex, loc) != NULL); in X509_CRL_add_ext()
113 return (X509v3_get_ext_count(x->cert_info->extensions)); in X509_get_ext_count()
[all …]
/third_party/flutter/skia/src/gpu/vk/
DGrVkExtensions.cpp68 // We grab all the extensions for the VkInstance and VkDevice so we can look up what spec in getSpecVersions()
69 // version each of the supported extensions are. We do not grab the extensions for layers in getSpecVersions()
71 // special for those extensions. in getSpecVersions()
80 // instance extensions in getSpecVersions()
86 VkExtensionProperties* extensions = new VkExtensionProperties[extensionCount]; in getSpecVersions() local
87 res = grVkEnumerateInstanceExtensionProperties(nullptr, &extensionCount, extensions); in getSpecVersions()
89 delete[] extensions; in getSpecVersions()
93 int idx = find_info(fExtensions, extensions[i].extensionName); in getSpecVersions()
95 fExtensions[idx].fSpecVersion = extensions[i].specVersion; in getSpecVersions()
98 delete[] extensions; in getSpecVersions()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.cpp486 gl::Extensions *extensions, in GenerateCaps() argument
652 extensions->setTextureExtensionSupport(*textureCapsMap); in GenerateCaps()
653 extensions->elementIndexUint = deviceCaps.MaxVertexIndex >= (1 << 16); in GenerateCaps()
654 extensions->getProgramBinary = true; in GenerateCaps()
655 extensions->rgb8rgba8 = true; in GenerateCaps()
656 extensions->readFormatBGRA = true; in GenerateCaps()
657 extensions->pixelBufferObject = false; in GenerateCaps()
658 extensions->mapBuffer = false; in GenerateCaps()
659 extensions->mapBufferRange = false; in GenerateCaps()
663 extensions->depthTextureOES = false; in GenerateCaps()
[all …]
/third_party/boost/boost/beast/http/
Dchunk_encode.hpp110 net::const_buffer, // chunk-extensions
122 with no chunk extensions.
136 with provided chunk extensions.
141 @param extensions The chunk extensions string. This
157 string_view extensions);
163 with provided chunk extensions.
165 extensions object.
170 @param extensions The chunk extensions object. The expression
171 `extensions.str()` must be valid, and the return type must
174 ownership of the buffers provided by the chunk extensions object.
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DExtensionRegistry.cs41 … /// Provides extensions to messages while parsing. This API is experimental and subject to change.
58 private IDictionary<ObjectIntPair<Type>, Extension> extensions; field in Google.Protobuf.ExtensionRegistry
65 extensions = new Dictionary<ObjectIntPair<Type>, Extension>(); in ExtensionRegistry()
70 extensions = collection.ToDictionary(k => k.Key, v => v.Value); in ExtensionRegistry()
74 /// Gets the total number of extensions in this extension registry
76 public int Count => extensions.Count;
85 …return extensions.TryGetValue(new ObjectIntPair<Type>(target, WireFormat.GetTagFieldNumber(lastTag… in ContainsInputField()
95extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in Add()
99 /// Adds the specified extensions to the registry
101 public void AddRange(IEnumerable<Extension> extensions) in AddRange() argument
[all …]
/third_party/protobuf/benchmarks/java/src/main/java/com/google/protobuf/
DProtoCaliperBenchmark.java60 ExtensionRegistry extensions = ExtensionRegistry.newInstance(); in getExtensionRegistry() local
61 com.google.protobuf.benchmarks.BenchmarkMessage38.registerAllExtensions(extensions); in getExtensionRegistry()
62 com.google.protobuf.benchmarks.BenchmarkMessage37.registerAllExtensions(extensions); in getExtensionRegistry()
63 com.google.protobuf.benchmarks.BenchmarkMessage36.registerAllExtensions(extensions); in getExtensionRegistry()
64 com.google.protobuf.benchmarks.BenchmarkMessage35.registerAllExtensions(extensions); in getExtensionRegistry()
65 com.google.protobuf.benchmarks.BenchmarkMessage34.registerAllExtensions(extensions); in getExtensionRegistry()
66 com.google.protobuf.benchmarks.BenchmarkMessage33.registerAllExtensions(extensions); in getExtensionRegistry()
67 com.google.protobuf.benchmarks.BenchmarkMessage32.registerAllExtensions(extensions); in getExtensionRegistry()
68 com.google.protobuf.benchmarks.BenchmarkMessage31.registerAllExtensions(extensions); in getExtensionRegistry()
69 com.google.protobuf.benchmarks.BenchmarkMessage3.registerAllExtensions(extensions); in getExtensionRegistry()
[all …]
/third_party/glfw/docs/
Dcompat.dox7 This guide describes the various API extensions used by this version of GLFW.
18 @section compat_x11 X11 extensions, protocols and IPC standards
71 GLFW uses the XRandR 1.3 and Xf86vidmode extensions to provide gamma ramp
73 extensions, gamma ramp support will not function.
80 @section compat_glx GLX extensions
89 `GLX_SGI_swap_control` extensions to provide vertical retrace synchronization
117 extensions to provide support for sRGB framebuffers. Where both of these
118 extensions are unavailable, the `GLFW_SRGB_CAPABLE` hint will have no effect.
121 @section compat_wgl WGL extensions
128 extensions listed below. If both are available, the EXT one is preferred. If
[all …]
/third_party/protobuf/docs/csharp/
Dproto2.md58 ### Extensions subsection in Generated code
60 Extensions are generated in static containers like reflection classes and type classes.
61 For example for a file called `foo.proto` containing extensions in the file scope, a
62 `FooExtensions` class is created containing the extensions defined in the file scope.
63 For easy access, this class can be used with `using static` to bring all extensions into scope.
82 public partial static class Extensions {
89 using static FooBar.Baz.Extensions;
106 Just like in Java, extension registries can be constructed to parse extensions when reading new mes…
119 Baz.Extensions.FooExt
122 Assert.True(foo.HasExtension(Bas.Extensions.FooExt));
[all …]

12345678910>>...106