HomeSort by relevance Sort by last modified time
    Searched defs:importer (Results 26 - 50 of 96) sorted by null

12 3 4

  /external/python/cpython2/Launcher/
launcher_internal.cpp 178 PyObject *py_launcher_path, *importer; local
183 importer = PyImport_GetImporter(py_launcher_path);
184 if (importer == NULL) {
188 if (importer != Py_None && importer->ob_type != &PyNullImporter_Type) {
192 Py_DECREF(importer);
197 Py_DECREF(importer);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
main.c 203 PyObject *argv0 = NULL, *importer = NULL; local
206 (importer = PyImport_GetImporter(argv0)) &&
207 (importer->ob_type != &PyNullImporter_Type))
216 Py_DECREF(importer);
222 Py_XDECREF(importer);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
main.c 203 PyObject *argv0 = NULL, *importer = NULL; local
206 (importer = PyImport_GetImporter(argv0)) &&
207 (importer->ob_type != &PyNullImporter_Type))
216 Py_DECREF(importer);
222 Py_XDECREF(importer);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
391 found = self.importer(used)
397 self.importer(used)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
main.c 198 PyObject *argv0 = NULL, *importer = NULL; local
201 (importer = PyImport_GetImporter(argv0)) &&
202 (importer->ob_type != &PyNullImporter_Type))
211 Py_DECREF(importer);
217 Py_XDECREF(importer);
  /external/drm_hwcomposer/
drmdisplaycomposition.h 34 class Importer;
109 int Init(DrmResources *drm, DrmCrtc *crtc, Importer *importer,
174 Importer *importer() const { function in class:android::DrmDisplayComposition
196 Importer *importer_ = NULL;
hwcomposer.cpp 197 std::unique_ptr<Importer> importer; member in struct:android::hwc_context_t
438 ret = layer.InitFromHwcLayer(sf_layer, ctx->importer.get(), ctx->gralloc);
448 ctx->drm.compositor()->CreateComposition(ctx->importer.get()));
787 ctx->importer.reset(Importer::CreateInstance(&ctx->drm));
788 if (!ctx->importer) {
789 ALOGE("Failed to create importer instance");
  /external/pdfium/xfa/fxfa/
cxfa_ffdoc.cpp 413 auto importer = local
415 return importer->ImportData(pStream);
  /external/python/cpython2/Lib/logging/
config.py 368 importer = __import__ variable in class:BaseConfigurator
375 # set the importer on the instance, but leave it defined in the class
378 self.importer = __import__
388 found = self.importer(used)
394 self.importer(used)
    [all...]
  /external/python/cpython2/Modules/
main.c 208 PyObject *argv0 = NULL, *importer = NULL; local
211 (importer = PyImport_GetImporter(argv0)) &&
212 (importer->ob_type != &PyNullImporter_Type))
221 Py_DECREF(importer);
227 Py_XDECREF(importer);
  /external/python/cpython3/Lib/logging/
config.py 364 importer = staticmethod(__import__) variable in class:BaseConfigurator
378 found = self.importer(used)
384 self.importer(used)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bimport.go 27 type importer struct { type
60 p := importer{
244 func (p *importer) formatErrorf(format string, args ...interface{}) {
254 func (p *importer) verifyTypes() {
270 func (p *importer) pkg() *types.Pkg {
335 func (p *importer) obj(tag int) {
398 func (p *importer) pos() src.XPos {
435 func (p *importer) path() string {
452 func (p *importer) newtyp(etype types.EType) *types.Type {
461 func (p *importer) importtype(pt, t *types.Type)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bimport.go 27 type importer struct { type
60 p := importer{
244 func (p *importer) formatErrorf(format string, args ...interface{}) {
254 func (p *importer) verifyTypes() {
270 func (p *importer) pkg() *types.Pkg {
335 func (p *importer) obj(tag int) {
398 func (p *importer) pos() src.XPos {
435 func (p *importer) path() string {
452 func (p *importer) newtyp(etype types.EType) *types.Type {
461 func (p *importer) importtype(pt, t *types.Type)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 377 importer = __import__ variable in class:BaseConfigurator
384 # set the importer on the instance, but leave it defined in the class
387 self.importer = __import__
397 found = self.importer(used)
403 self.importer(used)
    [all...]
  /external/python/cpython3/Modules/
main.c 231 PyObject *sys_path0 = NULL, *importer; local
237 importer = PyImport_GetImporter(sys_path0);
238 if (importer == NULL)
241 if (importer == Py_None) {
243 Py_DECREF(importer);
246 Py_DECREF(importer);
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
bimport.go 21 type importer struct { type
63 p := importer{
165 func (p *importer) pkg() *types.Package {
237 func (p *importer) declare(obj types.Object) {
247 // method importer.obj, switch case importing functions).
255 func (p *importer) obj(tag int) {
295 func (p *importer) pos() token.Pos {
358 func (p *importer) qualifiedName() (pkg *types.Package, name string) {
364 func (p *importer) record(t types.Type) {
370 // the importer
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
bimport.go 21 type importer struct { type
63 p := importer{
165 func (p *importer) pkg() *types.Package {
237 func (p *importer) declare(obj types.Object) {
247 // method importer.obj, switch case importing functions).
255 func (p *importer) obj(tag int) {
295 func (p *importer) pos() token.Pos {
358 func (p *importer) qualifiedName() (pkg *types.Package, name string) {
364 func (p *importer) record(t types.Type) {
370 // the importer
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSymbolDefinitions.java 780 String importer = local
784 writeFile(tmpdir, "B.g", importer);
812 String importer = local
816 writeFile(tmpdir, "B.g", importer);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 85 interface Importer {
92 * The Importer can be set, otherwise [import locale] syntax is not supported.
107 * Sets the pointer to an Importer object.
110 void setImporter(Importer importerAlias) {
111 importer = importerAlias;
656 if(importer == null) {
662 importer.getRules(baseID,
917 private Importer importer; field in class:CollationRuleParser
    [all...]
  /external/icu/icu4c/source/i18n/
collationbuilder.cpp 55 class BundleImporter : public CollationRuleParser::Importer {
169 BundleImporter importer; local
171 &importer,
235 CollationRuleParser::Importer *importer,
258 parser.setImporter(importer);
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 81 interface Importer {
88 * The Importer can be set, otherwise [import locale] syntax is not supported.
103 * Sets the pointer to an Importer object.
106 void setImporter(Importer importerAlias) {
107 importer = importerAlias;
652 if(importer == null) {
658 importer.getRules(baseID,
913 private Importer importer; field in class:CollationRuleParser
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 1121 PyObject *importer; local
1175 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL; local
1359 PyObject *importer; local
    [all...]

Completed in 663 milliseconds

12 3 4