HomeSort by relevance Sort by last modified time
    Searched refs:newfree (Results 1 - 6 of 6) sorted by null

  /external/python/cpython3/Python/
symtable.c 710 PyObject *newglobal = NULL, *newfree = NULL, *allfree = NULL; local
736 newfree = PySet_New(NULL);
737 if (!newfree)
814 if (!analyze_child_block(entry, newbound, newfree, newglobal,
822 temp = PyNumber_InPlaceOr(newfree, allfree);
828 if (ste->ste_type == FunctionBlock && !analyze_cells(scopes, newfree))
830 else if (ste->ste_type == ClassBlock && !drop_class_free(ste, newfree))
833 if (!update_symbols(ste->ste_symbols, scopes, bound, newfree,
837 temp = PyNumber_InPlaceOr(free, newfree);
847 Py_XDECREF(newfree);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 627 PyObject *newfree = NULL, *allfree = NULL; local
655 newfree = PyDict_New();
656 if (!newfree)
701 if (!analyze_child_block(entry, newbound, newfree, newglobal,
708 if (PyDict_Update(newfree, allfree) < 0)
710 if (ste->ste_type == FunctionBlock && !analyze_cells(scope, newfree))
712 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
718 if (PyDict_Update(free, newfree) < 0)
726 Py_XDECREF(newfree);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 625 PyObject *newfree = NULL, *allfree = NULL; local
653 newfree = PyDict_New();
654 if (!newfree)
699 if (!analyze_child_block(entry, newbound, newfree, newglobal,
706 if (PyDict_Update(newfree, allfree) < 0)
708 if (ste->ste_type == FunctionBlock && !analyze_cells(scope, newfree))
710 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
716 if (PyDict_Update(free, newfree) < 0)
724 Py_XDECREF(newfree);
    [all...]
  /external/python/cpython2/Python/
symtable.c 627 PyObject *newfree = NULL, *allfree = NULL; local
655 newfree = PyDict_New();
656 if (!newfree)
701 if (!analyze_child_block(entry, newbound, newfree, newglobal,
708 if (PyDict_Update(newfree, allfree) < 0)
710 if (ste->ste_type == FunctionBlock && !analyze_cells(scope, newfree))
712 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
718 if (PyDict_Update(free, newfree) < 0)
726 Py_XDECREF(newfree);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 278 %typemap(newfree) const AttributeType &AttributeName "delete $1;// my newfree override"
  /prebuilts/misc/common/swig/include/2.0.11/
swig.swg 353 %typemap(newfree) char * "delete [] $1;";
355 %typemap(newfree) char * "free($1);";

Completed in 293 milliseconds