HomeSort by relevance Sort by last modified time
    Searched defs:Extension (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /art/test/960-default-smali/src/
Extension.java 16 public interface Extension {
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/src/
setup_v4l2.py 5 """Script to set up v4l2 extension module.
7 from distutils.core import setup, Extension
11 ext_modules = [Extension('v4l2', ['v4l2module.cc'])])
setup_vaapi.py 5 """Script to set up vaapi extension module.
7 from distutils.core import setup, Extension
9 module = Extension('vaapi',
setup_vaapi_drm.py 5 """Script to set up vaapi extension module.
7 from distutils.core import setup, Extension
9 module = Extension('vaapi',
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
setup.py 25 from _setup.ext import Extension
28 # no c extension for jython
31 ext=[Extension('_rcssmin', sources=['rcssmin.c'])]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/
setup.py 25 from _setup.ext import Extension
28 # no c extension for jython
31 ext=[Extension('_rjsmin', sources=['rjsmin.c'])]
  /external/selinux/policycoreutils/sepolicy/
setup.py 6 from distutils.core import setup, Extension
7 policy = Extension("sepolicy._policy",
  /external/e2fsprogs/contrib/python-uuid/
setup.py 2 from distutils.core import setup, Extension
4 uuid = Extension('e2fsprogs_uuid',
  /external/jetty/src/java/org/eclipse/jetty/websocket/
Extension.java 23 public interface Extension extends WebSocketParser.FrameHandler, WebSocketGenerator
  /libcore/ojluni/src/main/java/java/security/cert/
Extension.java 33 * This interface represents an X.509 extension.
37 * or public keys and for managing a certification hierarchy. The extension
42 * Each extension contains an object identifier, a criticality setting
43 * indicating whether it is a critical or a non-critical extension, and
48 * Extension ::= SEQUENCE {
60 * This interface is designed to provide access to a single extension,
66 public interface Extension {
76 * Gets the extension's criticality setting.
78 * @return true if this is a critical extension.
87 * @return a copy of the extension's value, or <code>null</code> if n
    [all...]
  /external/clang/include/clang/Serialization/
ModuleFileExtension.h 34 /// Metadata for a module file extension.
36 /// The name used to identify this particular extension block within
38 /// extension, because this name will be used to match the name of
39 /// an extension block to the appropriate reader.
42 /// The major version of the extension data.
45 /// The minor version of the extension data.
56 /// An abstract superclass that describes a custom extension to the
59 /// A module file extension can introduce additional information into
67 /// Retrieves the metadata for this module file extension.
70 /// Hash information about the presence of this extension into th
    [all...]
  /external/fonttools/
setup.py 5 from distutils.core import setup, Extension
9 # load py2exe distutils extension, if available
29 '*** WARNING: Building of extension "%s" '
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
Extension.java 14 public class Extension {
18 protected Extension(char key) {
22 Extension(char key, String value) {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
Extension.java 10 public class Extension {
14 protected Extension(char key) {
18 Extension(char key, String value) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
Extension.java 10 public class Extension {
14 protected Extension(char key) {
18 Extension(char key, String value) {
  /external/sfntly/cpp/src/test/
test_utils.cc 82 // Get a file's extension
84 const char* TestUtils::Extension(const char* file_path) {
  /libcore/ojluni/src/main/java/sun/util/locale/
Extension.java 35 class Extension {
39 protected Extension(char key) {
43 Extension(char key, String value) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 1 from distutils.core import Extension as _Extension
7 Also ensures that no other distutils extension monkeypatched the distutils
29 class Extension(_Extension):
30 """Extension that uses '.c' files in place of '.pyx' files"""
44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
47 import sys, distutils.core, distutils.extension namespace
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [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/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 1 from distutils.core import Extension as _Extension
7 Also ensures that no other distutils extension monkeypatched the distutils
29 class Extension(_Extension):
30 """Extension that uses '.c' files in place of '.pyx' files"""
44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
47 import sys, distutils.core, distutils.extension namespace
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [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'])]

Completed in 1426 milliseconds

1 2 3 4 5 6