Home
last modified time | relevance | path

Searched refs:parse_function (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_clinic.py309 function = self.parse_function("module os\nos.access\n path: int")
317 function = self.parse_function("module os\nos.access\n follow_symlinks: bool = True")
322 …function = self.parse_function("module os\nos.access\n follow_symlinks: \\\n bool \\\n =\\\…
327 …function = self.parse_function("module os\nos.access\n follow_symlinks: int(c_default='MAXSIZE'…
336 function = self.parse_function("""
357 function = self.parse_function("module os\nos.access\n path: path_t(allow_fd=1)")
362 function = self.parse_function("""
381 function = self.parse_function("""
405 function = self.parse_function("""
414 function = self.parse_function("module os\nos.stat as os_stat_fn")
[all …]
/external/boringssl/src/crypto/pem/
Dpem_info.c176 enum parse_result_t (*parse_function)(X509_INFO *, const uint8_t *, in STACK_OF() local
181 parse_function = parse_x509; in STACK_OF()
183 parse_function = parse_x509_aux; in STACK_OF()
185 parse_function = parse_crl; in STACK_OF()
187 parse_function = parse_key; in STACK_OF()
190 parse_function = parse_key; in STACK_OF()
193 parse_function = parse_key; in STACK_OF()
217 } else if (parse_function != NULL) { in STACK_OF()
224 parse_function(info, data, len, key_type); in STACK_OF()
233 result = parse_function(info, data, len, key_type); in STACK_OF()