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

1 2 3 4 5 6

  /art/test/960-default-smali/src/
Extension.java 16 public interface Extension {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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. Not
    [all...]
  /external/python/cpython2/Lib/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...]
  /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";
  /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/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extension
    [all...]
  /external/python/cpython2/Lib/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
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [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
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [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
48 distutils.core.Extension = Extension
49 distutils.extension.Extension = Extensio
    [all...]
  /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} 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/icu/android_icu4j/src/main/java/android/icu/impl/locale/
Extension.java 16 public class Extension {
20 protected Extension(char key) {
24 Extension(char key, String value) {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
Extension.java 12 public class Extension {
16 protected Extension(char key) {
20 Extension(char key, String value) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
Extension.java 12 public class Extension {
16 protected Extension(char key) {
20 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/clang/host/darwin-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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...]

Completed in 1264 milliseconds

1 2 3 4 5 6