Home
last modified time | relevance | path

Searched refs:handle_data (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Lib/html/
Dparser.py162 self.handle_data(unescape(rawdata[i:j]))
164 self.handle_data(rawdata[i:j])
180 self.handle_data("<")
195 self.handle_data(unescape(rawdata[i:k]))
197 self.handle_data(rawdata[i:k])
211 self.handle_data(rawdata[i:i+2])
237 self.handle_data("&")
246 self.handle_data(unescape(rawdata[i:n]))
248 self.handle_data(rawdata[i:n])
338 self.handle_data(rawdata[i:endpos])
[all …]
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_android.c127 const uint32_t *handle_data = &handle_fds[gralloc_info->handle->numFds]; in tu_gralloc_info_other() local
152 if (handle_data[0] != gmsm) { in tu_gralloc_info_other()
155 handle_data[0], gmsm); in tu_gralloc_info_other()
159 ubwc = handle_data[1] & 0x08000000; in tu_gralloc_info_other()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvktrash.c182 gpointer handle_data; \
183 PUSH_NON_DISPATCHABLE_HANDLE_TO_GPOINTER(handle_data, type_name); \
186 (GstVulkanTrashNotify) G_PASTE(_free_,type_name), handle_data); \
/third_party/flutter/skia/tools/
Dcompare_codereview.py108 def handle_data(self, data): member in CodeReviewHTMLParser
237 def handle_data(self, data): member in BuilderHTMLParser
/third_party/skia/tools/
Dcompare_codereview.py108 def handle_data(self, data): member in CodeReviewHTMLParser
237 def handle_data(self, data): member in BuilderHTMLParser
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver_wired.c80 static void handle_data(void *ctx, unsigned char *buf, size_t len) in handle_data() function
131 handle_data(eloop_ctx, buf, len); in handle_read()
Ddriver_hostap.c58 static void handle_data(struct hostap_driver_data *drv, u8 *buf, size_t len, in handle_data() function
191 handle_data(drv, buf, data_len, stype); in handle_frame()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
Ddriver_wired.c80 static void handle_data(void *ctx, unsigned char *buf, size_t len) in handle_data() function
131 handle_data(eloop_ctx, buf, len); in handle_read()
Ddriver_hostap.c58 static void handle_data(struct hostap_driver_data *drv, u8 *buf, size_t len, in handle_data() function
191 handle_data(drv, buf, data_len, stype); in handle_frame()
/third_party/python/Doc/library/
Dhtml.parser.rst57 def handle_data(self, data):
159 .. method:: HTMLParser.handle_data(data)
247 def handle_data(self, data):
319 :meth:`~HTMLParser.handle_data` might be called more than once
/third_party/harfbuzz/src/
Dgen-tag-table.py379 def handle_data (self, data): member in OpenTypeRegistryParser
384 self.handle_data (html.unescape ('&#%s;' % name))
387 self.handle_data (html.unescape ('&%s;' % name))
/third_party/skia/third_party/externals/harfbuzz/src/
Dgen-tag-table.py379 def handle_data (self, data): member in OpenTypeRegistryParser
384 self.handle_data (html.unescape ('&#%s;' % name))
387 self.handle_data (html.unescape ('&%s;' % name))
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-tag-table.py386 def handle_data (self, data): member in OpenTypeRegistryParser
391 self.handle_data (html_unescape (self, '&#%s;' % name))
394 self.handle_data (html_unescape (self, '&%s;' % name))
/third_party/python/Modules/
D_elementtree.c3070 PyObject *handle_data; member
3232 else if (self->handle_data) in expat_default_handler()
3233 res = PyObject_CallOneArg(self->handle_data, value); in expat_default_handler()
3341 else if (self->handle_data) in expat_data_handler()
3342 res = PyObject_CallOneArg(self->handle_data, data); in expat_data_handler()
3616 self->handle_start = self->handle_data = self->handle_end = NULL; in xmlparser_new()
3696 self->handle_data = PyObject_GetAttrString(target, "data"); in _elementtree_XMLParser___init___impl()
3697 if (ignore_attribute_error(self->handle_data)) { in _elementtree_XMLParser___init___impl()
3771 Py_VISIT(self->handle_data); in xmlparser_gc_traverse()
3797 Py_CLEAR(self->handle_data); in xmlparser_gc_clear()
/third_party/python/Lib/idlelib/
Dhelp.py151 def handle_data(self, data): member in HelpParser
/third_party/python/Lib/
Dplistlib.py175 self.parser.CharacterDataHandler = self.handle_data
197 def handle_data(self, data): member in _PlistParser
/third_party/python/Lib/test/
Dtest_htmlparser.py49 def handle_data(self, data): member in EventCollector
/third_party/node/src/
Dnode_crypto.h520 const std::shared_ptr<KeyObjectData>& handle_data) in NativeKeyObject() argument
522 handle_data_(handle_data) { in NativeKeyObject()
/third_party/python/Misc/
DHISTORY9022 - Issue #13358: HTMLParser now calls handle_data only once for each CDATA.