Home
last modified time | relevance | path

Searched refs:handle_data (Results 1 – 18 of 18) 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.c109 const uint32_t *handle_data = &handle_fds[gralloc_info->handle->numFds]; in tu_gralloc_info_other() local
134 if (handle_data[0] != gmsm) { in tu_gralloc_info_other()
137 handle_data[0], gmsm); in tu_gralloc_info_other()
141 ubwc = handle_data[1] & 0x08000000; in tu_gralloc_info_other()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dconsistency_tools.py60 self.handle_data = HandleData(self.reg)
89 self.handle_data,
95 self.handle_data,
758 def compute_type_to_codes(handle_data, types_to_codes, extra_op=None): argument
782 handle_ancestors = handle_data.ancestors_dict
797 def compute_codes_requiring_type(handle_data, types_to_codes, registry=None): argument
814 handle_descendants = handle_data.descendants_dict
/third_party/elfutils/debuginfod/
Ddebuginfod-client.c186 struct handle_data struct
218 struct handle_data *d = (struct handle_data*)data; in debuginfod_write_callback() argument
551 struct handle_data *data = (struct handle_data *) userdata; in header_callback()
1234 struct handle_data *data = malloc(sizeof(struct handle_data) * num_urls); in debuginfod_query_server()
DChangeLog352 (struct handle_data): New field response_data, response_data_size.
593 struct handle_data errbuf to the empty string.
599 (struct handle_data): Add errbuf.
740 Move curl_multi_init call before handle_data malloc call.
852 (struct handle_data): Add client field as backpointer.
/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/node/src/crypto/
Dcrypto_keys.h254 const std::shared_ptr<KeyObjectData>& handle_data) in NativeKeyObject() argument
256 handle_data_(handle_data) { in NativeKeyObject()
/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/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/python/Misc/
DHISTORY9022 - Issue #13358: HTMLParser now calls handle_data only once for each CDATA.