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

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 6 from distutils.core import Extension, Distribution
49 xx_ext = Extension('xx', [xx_c])
145 modules = [Extension('foo', ['xxx'])]
210 #'extensions' option must be a list of Extension instances
214 # Extension instance or 2-tuple
219 # must be the extension name (a string) and match
234 self.assertTrue(isinstance(ext, Extension))
253 modules = [Extension('foo', ['xxx'])]
274 ext = Extension('foo', [c_file])
375 etree_ext = Extension('lxml.etree', [etree_c]
    [all...]
test_install_lib.py 7 from distutils.extension import Extension
63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 6 from distutils.core import Extension, Distribution
49 xx_ext = Extension('xx', [xx_c])
145 modules = [Extension('foo', ['xxx'])]
210 #'extensions' option must be a list of Extension instances
214 # Extension instance or 2-tuple
219 # must be the extension name (a string) and match
234 self.assertTrue(isinstance(ext, Extension))
253 modules = [Extension('foo', ['xxx'])]
274 ext = Extension('foo', [c_file])
375 etree_ext = Extension('lxml.etree', [etree_c]
    [all...]
test_install_lib.py 7 from distutils.extension import Extension
63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 31 std::string CoveragePrinter::getOutputPath(StringRef Path, StringRef Extension,
33 assert(Extension.size() && "The file extension may not be empty");
47 auto PathFilename = (sys::path::filename(Path) + "." + Extension).str();
54 CoveragePrinter::createOutputStream(StringRef Path, StringRef Extension,
59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BasicAliasAnalysis.cpp 163 ExtensionKind Extension;
178 ExtensionKind &Extension,
200 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
205 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
211 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
223 if ((isa<SExtInst>(V) && Extension != EK_ZeroExt) ||
224 (isa<ZExtInst>(V) && Extension != EK_SignExt)) {
230 Extension = isa<SExtInst>(V) ? EK_SignExt : EK_ZeroExt;
232 Value *Result = GetLinearExpression(CastOp, Scale, Offset, Extension,
338 ExtensionKind Extension = EK_NotExtended
    [all...]
  /external/vulkan-validation-layers/
vulkan.py 154 class Extension(object):
163 core = Extension(
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 98 for (map<int, Extension>::const_iterator iter = extensions_.begin();
138 #define GOOGLE_DCHECK_TYPE(EXTENSION, LABEL, CPPTYPE) \
139 GOOGLE_DCHECK_EQ((EXTENSION).is_repeated ? FieldDescriptor::LABEL_REPEATED \
142 GOOGLE_DCHECK_EQ(cpp_type((EXTENSION).type), FieldDescriptor::CPPTYPE_##CPPTYPE)
147 map<int, Extension>::const_iterator iter = extensions_.find(number);
164 Extension* extension; local
165 if (MaybeNewExtension(descriptor->number(), descriptor, &extension)) {
166 extension->type = descriptor->type();
167 GOOGLE_DCHECK_EQ(cpp_type(extension->type), FieldDescriptor::CPPTYPE_MESSAGE)
217 Extension* extension; local
232 Extension* extension = MaybeNewRepeatedExtension(descriptor); local
254 Extension* extension = MaybeNewRepeatedExtension(descriptor); local
265 const FieldDescriptor* extension = local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_install_lib.py 7 from distutils.extension import Extension
63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509v3CertificateBuilder.java 12 import org.bouncycastle.asn1.x509.Extension;
110 * Add a given extension field for the standard extensions tag (tag 3)
112 * @param oid the OID defining the extension type.
113 * @param isCritical true if the extension is critical, false otherwise.
114 * @param value the ASN.1 structure that forms the extension's value.
129 * Add a given extension field for the standard extensions tag (tag 3).
131 * @param extension the full extension value.
135 Extension extension)
179 Extension extension = cert.getTBSCertificate().getExtensions().getExtension(oid); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXCRLStoreSelector.java 15 import org.bouncycastle.asn1.x509.Extension;
70 * CRL indicator CRL extension.
76 * extension must be in the CRL.
115 * The issuing distribution point extension is a CRL extension which
127 * This is the DER encoded OCTET STRING extension value.
192 .getExtensionValue(Extension.deltaCRLIndicator.getId());
230 .getExtensionValue(Extension.issuingDistributionPoint
253 * extension set. Defaults to <code>false</code>.
256 * indicator extension are selected
    [all...]
  /external/brotli/
setup.py 12 from setuptools import Extension
15 from distutils.core import Extension
163 Extension(
  /external/libxml2/python/
setup.py 6 from distutils.core import setup, Extension
196 extens=[Extension('libxml2mod', c_files, include_dirs=includes,
200 extens.append(Extension('libxsltmod', xslt_c_files, include_dirs=includes,
setup.py.in 6 from distutils.core import setup, Extension
196 extens=[Extension('libxml2mod', c_files, include_dirs=includes,
200 extens.append(Extension('libxsltmod', xslt_c_files, include_dirs=includes,
  /external/python/cpython2/Lib/distutils/tests/
test_install_lib.py 7 from distutils.extension import Extension
63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeExtensionController.java 31 mTracker = test.getTracker("extension");
89 public Extension build() {
94 private class FakeExtension<T> implements Extension<T> {
  /libcore/ojluni/src/main/java/sun/security/x509/
InvalidityDateExtension.java 38 * The invalidity date is a non-critical CRL entry extension that
60 public class InvalidityDateExtension extends Extension
94 * @param critical true if the extension is to be treated as critical.
106 * Create the extension from the passed DER encoded value of the same.
108 * @param critical true if the extension is to be treated as critical.
175 * Write the extension to the DerOutputStream.
177 * @param out the DerOutputStream to write the extension to
210 public static InvalidityDateExtension toImpl(java.security.cert.Extension ext)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
abiflags-strip4-ph.d 24 ISA Extension: Cavium Networks Octeon
abiflags-strip5-ph.d 24 ISA Extension: Cavium Networks Octeon
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
Extension.java 39 * Represents an extension.
43 * @param <M> the type of the extendable message this extension is for.
44 * @param <T> the Java type of the extension; see {@link #clazz}.
46 public class Extension<M extends ExtendableMessageNano<M>, T> {
49 * Because we typically only define message-typed extensions, the Extension class hierarchy is
52 * Extension // ready to use for message/group typed extensions
78 * Creates an {@code Extension} of the given message type and tag number.
86 Extension<M, T> createMessageTyped(int type, Class<T> clazz, int tag) {
87 return new Extension<M, T>(type, clazz, tag, false);
96 * Creates an {@code Extension} of the given message type and tag number
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
KeyUsage.java 55 return KeyUsage.getInstance(extensions.getExtensionParsedValue(Extension.keyUsage));
SubjectKeyIdentifier.java 45 return SubjectKeyIdentifier.getInstance(extensions.getExtensionParsedValue(Extension.subjectKeyIdentifier));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 62 import org.bouncycastle.asn1.x509.Extension;
79 // import org.bouncycastle.x509.extension.X509ExtensionUtil;
86 protected static final String CERTIFICATE_POLICIES = Extension.certificatePolicies.getId();
87 protected static final String BASIC_CONSTRAINTS = Extension.basicConstraints.getId();
88 protected static final String POLICY_MAPPINGS = Extension.policyMappings.getId();
89 protected static final String SUBJECT_ALTERNATIVE_NAME = Extension.subjectAlternativeName.getId();
90 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId();
91 protected static final String KEY_USAGE = Extension.keyUsage.getId();
92 protected static final String INHIBIT_ANY_POLICY = Extension.inhibitAnyPolicy.getId();
93 protected static final String ISSUING_DISTRIBUTION_POINT = Extension.issuingDistributionPoint.getId()
    [all...]
  /external/markdown/markdown/extensions/
abbr.py 2 Abbreviation Extension for Python-Markdown
5 This extension adds abbreviation handling to Python-Markdown.
32 class AbbrExtension(markdown.Extension):
33 """ Abbreviation Extension for Python-Markdown. """
fenced_code.py 4 Fenced Code Extension for Python Markdown
7 This extension adds Fenced Code Blocks to Python-Markdown.
74 class FencedCodeExtension(markdown.Extension):

Completed in 1076 milliseconds

1 2 3 4 5 6 7 891011>>