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

1 2 3

  /external/chromium_org/v8/src/extensions/i18n/
i18n-extension.h 36 class Extension : public v8::Extension {
38 Extension();
46 static Extension* extension_;
i18n-extension.cc 29 #include "i18n-extension.h"
38 Extension::Extension()
39 : v8::Extension("v8/i18n",
46 v8::Handle<v8::FunctionTemplate> Extension::GetNativeFunction(
72 void Extension::Register() {
73 static Extension i18n_extension;
  /external/chromium/chrome/common/net/
x509_certificate_model.h 86 struct Extension {
91 typedef std::vector<Extension> Extensions;
  /external/chromium_org/chrome/common/net/
x509_certificate_model.h 84 struct Extension {
89 typedef std::vector<Extension> Extensions;
  /external/e2fsprogs/contrib/python-uuid/
setup.py 2 from distutils.core import setup, Extension
4 uuid = Extension('e2fsprogs_uuid',
  /external/chromium_org/third_party/tlslite/
setup.py 4 from distutils.core import setup, Extension
10 ext = Extension("tlslite.utils.win32prng",
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
setup.py 2 # Build Python extension with configuration file input
28 from distutils.extension import Extension
71 Extension('yasm',
  /external/linux-tools-perf/util/
setup.py 3 from distutils.core import setup, Extension
9 perf = Extension('perf',
  /external/sfntly/cpp/src/test/
test_utils.cc 82 // Get a file's extension
84 const char* TestUtils::Extension(const char* file_path) {
  /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...]
core.py 23 from distutils.extension import Extension
54 # Legal keyword arguments for the Extension constructor
  /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'])]
test_install.py 17 from distutils.extension import Extension
204 Extension('xx', ['xxmodule.c'])])
  /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...]
core.py 23 from distutils.extension import Extension
54 # Legal keyword arguments for the Extension constructor
  /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'])]
test_install.py 17 from distutils.extension import Extension
204 Extension('xx', ['xxmodule.c'])])
  /external/harfbuzz_ng/contrib/python/
setup.py 6 from Pyrex.Distutils.extension import Extension
29 Extension("harfbuzz", ["lib/harfbuzz.pyx"], libraries=["harfbuzz"], library_dirs=["../../%s/src/.libs" % opts.build], include_dirs=["/usr/include/freetype2", "../../src", "../../%s/src" % opts.build]),
30 Extension("fontconfig", ["lib/fontconfig.pyx"], libraries=["fontconfig"])
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
Extension.java 38 * Represents an extension.
41 * @param <T> the type of the extension.
43 public class Extension<T> {
49 private Extension(int fieldNumber, TypeLiteral<T> type) {
57 * Creates a new instance of {@code Extension} for the specified {@code fieldNumber} and
60 public static <T> Extension<T> create(int fieldNumber, TypeLiteral<T> type) {
61 return new Extension<T>(fieldNumber, type);
65 * Creates a new instance of {@code Extension} for the specified {@code fieldNumber} and
68 public static <T> Extension<List<T>> createRepeated(int fieldNumber, TypeLiteral<List<T>> type) {
69 return new Extension<List<T>>(fieldNumber, type)
    [all...]
  /external/chromium_org/chrome/test/webdriver/test/
chromedriver.py 10 Style Note: Because this is an extension to the WebDriver python API and
68 ('GET', '/session/$sessionId/chrome/extension/$id'),
70 ('POST', '/session/$sessionId/chrome/extension/$id'),
72 ('DELETE', '/session/$sessionId/chrome/extension/$id'),
84 return map(lambda id: Extension(self, id), ids)
87 """Install the extension at the given path.
90 path: Path to packed or unpacked extension to install.
93 The installed extension.
98 return Extension(self, id)
123 class Extension(object)
    [all...]
  /external/chromium_org/third_party/protobuf/python/
setup.py 11 from setuptools import setup, Extension
16 from setuptools import setup, Extension
145 # C++ implementation extension
148 ext_module_list.append(Extension(
  /external/chromium_org/chrome/common/extensions/
extension.cc 5 #include "chrome/common/extensions/extension.h"
65 // A singleton object containing global data needed by the extension objects.
72 Extension::ScriptingWhitelist* whitelist() { return &scripting_whitelist_; }
78 // Whitelist ChromeVox, an accessibility extension from Google that needs
81 // TODO(dmazzoni): remove this once we have an extension API that
82 // allows any extension to request read-only access to webui pages.
85 // Whitelist "Discover DevTools Companion" extension from Google that
97 Extension::ScriptingWhitelist scripting_whitelist_;
103 const char Extension::kExtensionRegistryPath[] =
107 const char Extension::kMimeType[] = "application/x-chrome-extension"
160 scoped_refptr<Extension> extension = new Extension(path, manifest.Pass()); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Extension.java 17 * an object for the elements in the X.509 V3 extension block.
19 public class Extension
163 * Audit identity extension in attribute certificates.
168 * NoRevAvail extension in attribute certificates.
173 * TargetInformation extension in attribute certificates.
181 public Extension(
189 public Extension(
197 public Extension(
207 private Extension(ASN1Sequence seq)
227 public static Extension getInstance(Object obj
    [all...]

Completed in 331 milliseconds

1 2 3