HomeSort by relevance Sort by last modified time
    Searched refs:Extension (Results 26 - 50 of 552) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/sksl/ir/
SkSLExtension.h 16 * An extension declaration.
18 struct Extension : public ProgramElement {
19 Extension(Position position, String name)
24 return "#extension " + fName + " : enable";
  /external/v8/src/extensions/
free-buffer-extension.h 13 class FreeBufferExtension : public v8::Extension {
16 : v8::Extension("v8/free-buffer", "native function freeBuffer();") {}
ignition-statistics-extension.h 13 class IgnitionStatisticsExtension : public v8::Extension {
16 : v8::Extension("v8/ignition-statistics", kSource) {}
statistics-extension.h 13 class StatisticsExtension : public v8::Extension {
15 StatisticsExtension() : v8::Extension("v8/statistics", kSource) {}
externalize-string-extension.h 13 class ExternalizeStringExtension : public v8::Extension {
15 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
gc-extension.h 14 class GCExtension : public v8::Extension {
17 : v8::Extension("v8/gc",
trigger-failure-extension.h 13 class TriggerFailureExtension : public v8::Extension {
15 TriggerFailureExtension() : v8::Extension("v8/trigger-failure", kSource) {}
  /external/python/cpython2/Misc/
BeOS-setup.py 11 from distutils.core import Extension, setup
73 # Figure out the location of the source code for extension modules
131 self.announce('WARNING: building of extension "%s" failed: %s' %
179 exts.append( Extension('_weakref', ['_weakref.c']) )
180 exts.append( Extension('_symtable', ['symtablemodule.c']) )
183 exts.append( Extension('array', ['arraymodule.c']) )
185 exts.append( Extension('cmath', ['cmathmodule.c'],
189 exts.append( Extension('math', ['mathmodule.c'],
192 exts.append( Extension('strop', ['stropmodule.c']) )
194 exts.append( Extension('time', ['timemodule.c']
    [all...]
  /external/autotest/utils/named_semaphore/
setup.py 4 module = distutils.core.Extension("namedsem", sources=["namedsem.c"])
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateExtensions.java 47 public class CertificateExtensions implements CertAttrSet<Extension> {
60 private Map<String,Extension> map = Collections.synchronizedMap(
61 new TreeMap<String,Extension>());
64 private Map<String,Extension> unparseableExtensions;
74 * @param in the DerInputStream to read the Extension from.
87 Extension ext = new Extension(exts[i]);
94 // Parse the encoded extension
95 private void parseExtension(Extension ext) throws IOException {
98 if (extClass == null) { // Unsupported extension
    [all...]
Extension.java 34 * Represent a X509 Extension Attribute.
38 * the driving license number as a extension.
40 * <p>Extensions are represented as a sequence of the extension identifier
41 * (Object Identifier), a boolean flag stating whether the extension is to
42 * be treated as being critical and the extension value itself (this is again
43 * a DER encoding of the extension value).
45 * ASN.1 definition of Extension:
46 * Extension ::= SEQUENCE {
61 public class Extension implements java.security.cert.Extension {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
setup.py 2 # package and install PyEfiCompressor extension
18 from distutils.core import setup, Extension
29 Extension(
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
setup.py 2 # package and install PyEfiCompressor extension
18 from distutils.core import setup, Extension
29 Extension(
  /external/autotest/client/deps/lansim/src/
setup.py 5 from distutils.core import setup, Extension
7 # C extension modules.
20 ext_mods.append(Extension('pyiftun',
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
rm-simd-ext.d 1 #name: SIMD Extension Removal
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv2-mp-bad.d 1 #name: ARM MP Extension errors
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtensionsGenerator.java 30 * Add an extension with the given oid and the passed in value to be included
31 * in the OCTET STRING associated with the extension.
33 * @param oid OID for the extension.
35 * @param value the ASN.1 object to be included in the extension.
47 * Add an extension with the given oid and the passed in byte array to be wrapped in the
48 * OCTET STRING associated with the extension.
50 * @param oid OID for the extension.
61 throw new IllegalArgumentException("extension " + oid + " already added");
65 extensions.put(oid, new Extension(oid, critical, new DEROctetString(value)));
69 * Add a given extension
82 extensions.put(extension.getExtnId(), extension); local
    [all...]
Extensions.java 57 Extension ext = Extension.getInstance(e.nextElement());
67 * @param extension a single extension.
70 Extension extension)
72 this.ordering.addElement(extension.getExtnId());
73 this.extensions.put(extension.getExtnId(), extension); local
82 Extension[] extensions
    [all...]
  /external/clang/lib/Frontend/
FrontendOptions.cpp 14 InputKind FrontendOptions::getInputKindForExtension(StringRef Extension) {
15 return llvm::StringSwitch<InputKind>(Extension)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleExtensions.java 29 private SortedMap<Character, Extension> _map;
32 private static final SortedMap<Character, Extension> EMPTY_MAP =
33 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
46 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
51 NUMBER_THAI._map = new TreeMap<Character, Extension>();
73 // Build extension map
74 _map = new TreeMap<Character, Extension>();
88 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
130 public Extension getExtension(Character key)
186 Extension extension = entry.getValue(); local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 25 private SortedMap<Character, Extension> _map;
28 private static final SortedMap<Character, Extension> EMPTY_MAP =
29 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
42 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
47 NUMBER_THAI._map = new TreeMap<Character, Extension>();
69 // Build extension map
70 _map = new TreeMap<Character, Extension>();
84 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
126 public Extension getExtension(Character key)
182 Extension extension = entry.getValue(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 25 private SortedMap<Character, Extension> _map;
28 private static final SortedMap<Character, Extension> EMPTY_MAP =
29 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
42 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
47 NUMBER_THAI._map = new TreeMap<Character, Extension>();
69 // Build extension map
70 _map = new TreeMap<Character, Extension>();
84 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
126 public Extension getExtension(Character key)
182 Extension extension = entry.getValue(); local
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java 9 import org.bouncycastle.asn1.x509.Extension;
29 Extension currentCaName = entry.getExtensions().getExtension(Extension.certificateIssuer);
61 * @return true if extension are present, false otherwise.
72 * in the IssuingDistributionPoint extension and either a previous entry, or the current one,
73 * has specified a different CA via the certificateIssuer extension.
84 * Look up the extension associated with the passed in OID.
86 * @param oid the OID of the extension of interest.
88 * @return the extension if present, null otherwise.
90 public Extension getExtension(ASN1ObjectIdentifier oid
    [all...]
  /external/markdown/markdown/extensions/
extra.py 3 Python-Markdown Extra Extension
10 on your PYTHONPATH. This extension simply wraps them all up as a
11 convenience so that only one extension needs to be listed when
13 extension for specifics about that extension.
17 without that extension.
41 class ExtraExtension(markdown.Extension):
45 """ Register extension instances. """
  /external/sfntly/cpp/src/test/
test_utils_test.cc 57 // Check if the proper extension is obtained
61 result = TestUtils::Extension("../data/ext/tuffy.ttf");
64 // more than one 'extension'
65 result = TestUtils::Extension("tuffy.ttf.fake");
68 // no extension
69 result = TestUtils::Extension("tuffy");
72 // bogus extension
73 result = TestUtils::Extension("tuffy.");

Completed in 1429 milliseconds

12 3 4 5 6 7 8 91011>>