Home
last modified time | relevance | path

Searched refs:toc_entry (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/
Dzipimport.c50 PyObject *get_data(const char *archive, PyObject *toc_entry);
428 PyObject *toc_entry; in zipimporter_get_data() local
453 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_data()
454 if (toc_entry == NULL) { in zipimporter_get_data()
458 return get_data(PyString_AsString(self->archive), toc_entry); in zipimporter_get_data()
477 PyObject *toc_entry; in zipimporter_get_source() local
506 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_source()
507 if (toc_entry != NULL) in zipimporter_get_source()
508 return get_data(PyString_AsString(self->archive), toc_entry); in zipimporter_get_source()
918 get_data(const char *archive, PyObject *toc_entry) in get_data() argument
[all …]
/external/python/cpython3/Modules/
Dzipimport.c53 static PyObject *get_data(PyObject *archive, PyObject *toc_entry);
576 PyObject *toc_entry; in zipimporter_get_data() local
604 toc_entry = PyDict_GetItem(self->files, key); in zipimporter_get_data()
605 if (toc_entry == NULL) { in zipimporter_get_data()
612 return get_data(self->archive, toc_entry); in zipimporter_get_data()
634 PyObject *toc_entry; in zipimporter_get_source() local
666 toc_entry = PyDict_GetItem(self->files, fullpath); in zipimporter_get_source()
668 if (toc_entry != NULL) { in zipimporter_get_source()
670 bytes = get_data(self->archive, toc_entry); in zipimporter_get_source()
1129 get_data(PyObject *archive, PyObject *toc_entry) in get_data() argument
[all …]
/external/python/cpython2/Launcher/
Dlauncher_internal.cpp33 PyObject *get_data(const char *archive, PyObject *toc_entry);
82 PyObject *toc_entry; in GetEntryPointFilePath() local
84 toc_entry = PyDict_GetItemString(files, ENTRYPOINT_FILE); in GetEntryPointFilePath()
85 if (toc_entry == NULL) { in GetEntryPointFilePath()
90 py_data = get_data(launcher_path, toc_entry); in GetEntryPointFilePath()
/external/google-styleguide/include/
Dstyleguide.css115 li.toc_entry {
125 li.toc_entry::after {
129 li.toc_entry a {
/external/google-styleguide/
Djavaguide.css544 li.toc_entry {
554 li.toc_entry::after {
558 li.toc_entry a {
/external/wayland/cursor/
Dconvert_font.c81 struct toc_entry { struct
238 struct toc_entry *entry = &header->tables[i]; in handle_pcf()