HomeSort by relevance Sort by last modified time
    Searched defs:extensions (Results 51 - 75 of 379) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/cldr/tools/java/org/unicode/cldr/tool/
SimpleLocaleParser.java 18 * Will throw IllegalArgumentException for duplicate variants and extensions.
37 + // extensions
69 private Map<String, String> extensions; field in class:SimpleLocaleParser
120 extensions = new LinkedHashMap<String, String>(); // group 5 are extensions, 6 is private use
121 // extensions are a bit more complicated
126 extensions = Collections.unmodifiableMap(extensions);
136 if (extensions.containsKey(key)) {
139 extensions.put(key, extension.group(2))
    [all...]
  /external/kotlinc/lib/
android-extensions-runtime.jar 
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 22 package org.apache.xalan.extensions;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java 10 import org.bouncycastle.asn1.x509.Extensions;
59 * Return whether or not the holder's CRL entry contains extensions.
92 Extensions extensions = entry.getExtensions(); local
94 if (extensions != null)
96 return extensions.getExtension(oid);
103 * Return the extensions block associated with this CRL entry if there is one.
105 * @return the extensions block, null otherwise.
107 public Extensions getExtensions()
114 * extensions contained in this holder's CRL entry
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
SingleResp.java 12 import org.bouncycastle.asn1.x509.Extensions;
17 private Extensions extensions; field in class:SingleResp
23 this.extensions = resp.getSingleExtensions();
75 return extensions != null;
80 if (extensions != null)
82 return extensions.getExtension(oid);
90 return OCSPUtils.getExtensionOIDs(extensions);
95 return OCSPUtils.getCriticalExtensionOIDs(extensions);
100 return OCSPUtils.getNonCriticalExtensionOIDs(extensions);
    [all...]
  /external/clang/docs/analyzer/
conf.py 17 # If extensions (or modules to document with autodoc) are in another directory,
27 # Add any Sphinx extension module names here, as strings. They can be extensions
29 extensions = ['sphinx.ext.todo', 'sphinx.ext.mathjax'] variable
  /external/deqp/external/openglcts/modules/common/
glcExposedExtensionsTests.cpp 69 : deqp::TestCase(context, "validate_extensions", "Test verifies if extensions with "
100 const string_vector& extensions = m_context.getContextInfo().getExtensions(); local
101 string_vector::const_iterator currExtension = extensions.begin();
104 while (currExtension != extensions.end())
127 // but other exceptions will be checked to log all not allowed extensions
149 : TestCaseGroup(context, "exposed_extensions", "Verifies exposed extensions")
  /external/deqp/framework/egl/
egluConfigFilter.cpp 62 const std::vector<std::string> extensions = getDisplayExtensions(*m_cfg.object.egl, m_cfg.object.display); local
64 if (de::contains(extensions.begin(), extensions.end(), "EGL_EXT_pixel_format_float"))
  /external/deqp/modules/gles2/
tes2InfoTests.cpp 75 : TestCase (context, "extensions", "Supported Extensions")
81 const vector<string> extensions = m_context.getContextInfo().getExtensions(); local
83 for (vector<string>::const_iterator i = extensions.begin(); i != extensions.end(); i++)
  /external/deqp/modules/gles3/
tes3InfoTests.cpp 75 : TestCase (context, "extensions", "Supported Extensions")
81 const vector<string> extensions = m_context.getContextInfo().getExtensions(); local
83 for (vector<string>::const_iterator i = extensions.begin(); i != extensions.end(); i++)
  /external/deqp/modules/gles31/
tes31InfoTests.cpp 75 : TestCase (context, "extensions", "Supported Extensions")
81 const vector<string> extensions = m_context.getContextInfo().getExtensions(); local
83 for (vector<string>::const_iterator i = extensions.begin(); i != extensions.end(); i++)
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferencesHeader.java 1 package gov.nist.javax.sip.header.extensions;
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 1 package gov.nist.javax.sip.parser.extensions;
4 import gov.nist.javax.sip.header.extensions.*;
ReplacesParser.java 1 package gov.nist.javax.sip.parser.extensions;
4 import gov.nist.javax.sip.header.extensions.*;
  /external/python/dateutil/docs/
conf.py 19 # If extensions (or modules to document with autodoc) are in another directory,
31 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
33 extensions = [ variable
  /external/python/funcsigs/docs/
conf.py 17 # If extensions (or modules to document with autodoc) are in another directory,
27 # Add any Sphinx extension module names here, as strings. They can be extensions
29 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.viewcode'] variable
  /external/python/mock/docs/
conf.py 19 # If your extensions are in another directory, add it here. If the directory
27 # Add any Sphinx extension module names here, as strings. They can be extensions
29 extensions = ['sphinx.ext.doctest'] variable
  /external/python/rsa/doc/
conf.py 18 # If extensions (or modules to document with autodoc) are in another directory,
28 # Add any Sphinx extension module names here, as strings. They can be extensions
30 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', variable
  /external/python/six/documentation/
conf.py 8 # If extensions (or modules to document with autodoc) are in another directory,
18 # Add any Sphinx extension module names here, as strings. They can be extensions
20 extensions = ["sphinx.ext.intersphinx"] variable
  /external/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 75 GrGLExtensions extensions; local
76 if (!extensions.init(kGL_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString,
94 if (extensions.has("GL_KHR_blend_equation_advanced")) {
96 } else if (extensions.has("GL_NV_blend_equation_advanced")) {
108 if (glVer >= GR_GL_VER(4,4) || extensions.has("GL_ARB_clear_texture")) {
133 if (glVer >= GR_GL_VER(3,1) || extensions.has("GL_ARB_draw_instanced") ||
134 extensions.has("GL_EXT_draw_instanced")) {
139 if (glVer >= GR_GL_VER(4,0) || extensions.has("GL_ARB_draw_indirect")) {
154 if (glVer >= GR_GL_VER(3,2) || extensions.has("GL_ARB_texture_multisample")) {
159 if (glVer >= GR_GL_VER(3,3) || extensions.has("GL_ARB_timer_query"))
438 GrGLExtensions extensions; local
    [all...]
GrGLExtensions.cpp 53 // skip over multiple spaces between extensions
81 // glGetStringi and indexed extensions were added in version 3.0 of desktop GL and ES.
102 const char* extensions = (const char*) getString(GR_GL_EXTENSIONS); local
103 if (!extensions) {
106 eat_space_sep_strings(&fStrings, extensions);
109 const char* extensions = queryString(eglDisplay, GR_EGL_EXTENSIONS); local
111 eat_space_sep_strings(&fStrings, extensions);
147 // extensions after the add
  /external/skqp/src/gpu/gl/
GrGLAssembleInterface.cpp 75 GrGLExtensions extensions; local
76 if (!extensions.init(kGL_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString,
94 if (extensions.has("GL_KHR_blend_equation_advanced")) {
96 } else if (extensions.has("GL_NV_blend_equation_advanced")) {
108 if (glVer >= GR_GL_VER(4,4) || extensions.has("GL_ARB_clear_texture")) {
133 if (glVer >= GR_GL_VER(3,1) || extensions.has("GL_ARB_draw_instanced") ||
134 extensions.has("GL_EXT_draw_instanced")) {
139 if (glVer >= GR_GL_VER(4,0) || extensions.has("GL_ARB_draw_indirect")) {
154 if (glVer >= GR_GL_VER(3,2) || extensions.has("GL_ARB_texture_multisample")) {
159 if (glVer >= GR_GL_VER(3,3) || extensions.has("GL_ARB_timer_query"))
441 GrGLExtensions extensions; local
    [all...]
GrGLExtensions.cpp 53 // skip over multiple spaces between extensions
81 // glGetStringi and indexed extensions were added in version 3.0 of desktop GL and ES.
102 const char* extensions = (const char*) getString(GR_GL_EXTENSIONS); local
103 if (!extensions) {
106 eat_space_sep_strings(&fStrings, extensions);
109 const char* extensions = queryString(eglDisplay, GR_EGL_EXTENSIONS); local
111 eat_space_sep_strings(&fStrings, extensions);
147 // extensions after the add
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Box.java 16 package org.yaml.snakeyaml.extensions.compactnotation;
CompactConstructorTest.java 16 package org.yaml.snakeyaml.extensions.compactnotation;

Completed in 1850 milliseconds

1 23 4 5 6 7 8 91011>>