/third_party/node/deps/npm/node_modules/gauge/lib/ |
H A D | render-template.js | 6 var TemplateItem = require('./template-item') 9 return function (item) { 10 return renderValue(item, values) 20 function preType (item) { 21 var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) 25 function postType (item) { 26 var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) 30 function hasPreOrPost (item, value [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_list.c | 58 struct cil_list_item *item; in cil_list_destroy() local 64 item = (*list)->head; in cil_list_destroy() 65 while (item != NULL) in cil_list_destroy() 67 struct cil_list_item *next = item->next; in cil_list_destroy() 68 if (item->flavor == CIL_LIST) { in cil_list_destroy() 69 cil_list_destroy((struct cil_list**)&(item->data), destroy_data); in cil_list_destroy() 70 free(item); in cil_list_destroy() 72 cil_list_item_destroy(&item, destroy_data); in cil_list_destroy() 74 item = next; in cil_list_destroy() 80 void cil_list_item_init(struct cil_list_item **item) in cil_list_item_init() argument 90 cil_list_item_destroy(struct cil_list_item **item, unsigned destroy_data) cil_list_item_destroy() argument 101 struct cil_list_item *item; cil_list_append() local 123 struct cil_list_item *item; cil_list_prepend() local 145 struct cil_list_item *item; cil_list_insert() local 172 cil_list_append_item(struct cil_list *list, struct cil_list_item *item) cil_list_append_item() argument 199 cil_list_prepend_item(struct cil_list *list, struct cil_list_item *item) cil_list_prepend_item() argument 227 struct cil_list_item *item; cil_list_remove() local [all...] |
/third_party/cJSON/tests/ |
H A D | common.h | 28 void reset(cJSON *item); 29 void reset(cJSON *item) { in reset() argument 30 if ((item != NULL) && (item->child != NULL)) in reset() 32 cJSON_Delete(item->child); in reset() 34 if ((item->valuestring != NULL) && !(item->type & cJSON_IsReference)) in reset() 36 global_hooks.deallocate(item->valuestring); in reset() 38 if ((item->string != NULL) && !(item in reset() [all...] |
H A D | misc_utils_tests.c | 34 cJSON *item = cJSON_CreateString("item"); in cjson_utils_functions_shouldnt_crash_with_null_pointers() local 35 TEST_ASSERT_NOT_NULL(item); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 37 TEST_ASSERT_NULL(cJSONUtils_GetPointer(item, NULL)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 40 TEST_ASSERT_NULL(cJSONUtils_GetPointerCaseSensitive(item, NULL)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 41 TEST_ASSERT_NULL(cJSONUtils_GeneratePatches(item, NULL)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 42 TEST_ASSERT_NULL(cJSONUtils_GeneratePatches(NULL, item)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 43 TEST_ASSERT_NULL(cJSONUtils_GeneratePatchesCaseSensitive(item, NULL)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 44 TEST_ASSERT_NULL(cJSONUtils_GeneratePatchesCaseSensitive(NULL, item)); in cjson_utils_functions_shouldnt_crash_with_null_pointers() 45 cJSONUtils_AddPatchToArray(item, "pat in cjson_utils_functions_shouldnt_crash_with_null_pointers() [all...] |
H A D | parse_array.c | 31 static cJSON item[1]; variable 52 TEST_ASSERT_FALSE(parse_array(item, &buffer)); in assert_not_array() 53 assert_is_invalid(item); in assert_not_array() 63 TEST_ASSERT_TRUE(parse_array(item, &buffer)); in assert_parse_array() 64 assert_is_array(item); in assert_parse_array() 70 assert_has_no_child(item); in parse_array_should_parse_empty_arrays() 73 assert_has_no_child(item); in parse_array_should_parse_empty_arrays() 81 assert_has_child(item); in parse_array_should_parse_arrays_with_one_element() 82 assert_has_type(item->child, cJSON_Number); in parse_array_should_parse_arrays_with_one_element() 83 reset(item); in parse_array_should_parse_arrays_with_one_element() [all...] |
H A D | parse_object.c | 31 static cJSON item[1]; variable 47 TEST_ASSERT_NOT_NULL_MESSAGE(child_item, "Child item is NULL."); in assert_is_child() 48 TEST_ASSERT_NOT_NULL_MESSAGE(child_item->string, "Child item doesn't have a name."); in assert_is_child() 49 TEST_ASSERT_EQUAL_STRING_MESSAGE(name, child_item->string, "Child item has the wrong name."); in assert_is_child() 60 TEST_ASSERT_FALSE(parse_object(item, &parsebuffer)); in assert_not_object() 61 assert_is_invalid(item); in assert_not_object() 62 reset(item); in assert_not_object() 72 TEST_ASSERT_TRUE(parse_object(item, &parsebuffer)); in assert_parse_object() 73 assert_is_object(item); in assert_parse_object() 79 assert_has_no_child(item); in parse_object_should_parse_empty_objects() [all...] |
H A D | misc_int64_tests.c | 39 cJSON *item = NULL; in cjson_get_object_item_should_get_object_items_with_int64() local 42 item = cJSON_Parse("{\"one\":1, \"Two\":2, \"tHree\":3}"); in cjson_get_object_item_should_get_object_items_with_int64() 47 found = cJSON_GetObjectItem(item, NULL); in cjson_get_object_item_should_get_object_items_with_int64() 50 found = cJSON_GetObjectItem(item, "one"); in cjson_get_object_item_should_get_object_items_with_int64() 51 TEST_ASSERT_NOT_NULL_MESSAGE(found, "Failed to find first item."); in cjson_get_object_item_should_get_object_items_with_int64() 55 found = cJSON_GetObjectItem(item, "tWo"); in cjson_get_object_item_should_get_object_items_with_int64() 56 TEST_ASSERT_NOT_NULL_MESSAGE(found, "Failed to find first item."); in cjson_get_object_item_should_get_object_items_with_int64() 60 found = cJSON_GetObjectItem(item, "three"); in cjson_get_object_item_should_get_object_items_with_int64() 61 TEST_ASSERT_NOT_NULL_MESSAGE(found, "Failed to find item."); in cjson_get_object_item_should_get_object_items_with_int64() 65 found = cJSON_GetObjectItem(item, "fou in cjson_get_object_item_should_get_object_items_with_int64() 73 cJSON *item = NULL; cjson_get_object_item_case_sensitive_should_get_object_items_with_int64() local 132 cJSON item[1]; typecheck_functions_should_check_type_with_int64() local 148 cJSON *item = cJSON_CreateString("item"); cjson_functions_should_not_crash_with_null_pointers_with_int64() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | list.h | 28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) in dl_list_add() argument 30 item->next = list->next; in dl_list_add() 31 item->prev = list; in dl_list_add() 32 list->next->prev = item; in dl_list_add() 33 list->next = item; in dl_list_add() 36 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item) in dl_list_add_tail() argument 38 dl_list_add(list->prev, item); in dl_list_add_tail() 41 static inline void dl_list_del(struct dl_list *item) in dl_list_del() argument 43 item->next->prev = item in dl_list_del() 56 struct dl_list *item; dl_list_len() local [all...] |
/third_party/node/deps/openssl/openssl/util/ |
H A D | su-filter.pl | 68 my $item; 79 foreach $item (@datalist) { 81 if($item eq "*/") { 88 $dataitem .= $item; 92 $dataitem .= $item; 93 if($item eq "\"") { 99 if($item eq "\n") { 105 $dataitem .= $item; 109 if($item eq "}") { 117 } elsif($item e [all...] |
/third_party/openssl/util/ |
H A D | su-filter.pl | 68 my $item; 79 foreach $item (@datalist) { 81 if($item eq "*/") { 88 $dataitem .= $item; 92 $dataitem .= $item; 93 if($item eq "\"") { 99 if($item eq "\n") { 105 $dataitem .= $item; 109 if($item eq "}") { 117 } elsif($item e [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | list.h | 28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) in dl_list_add() argument 30 item->next = list->next; in dl_list_add() 31 item->prev = list; in dl_list_add() 32 list->next->prev = item; in dl_list_add() 33 list->next = item; in dl_list_add() 36 static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item) in dl_list_add_tail() argument 38 dl_list_add(list->prev, item); in dl_list_add_tail() 41 static inline void dl_list_del(struct dl_list *item) in dl_list_del() argument 43 item->next->prev = item in dl_list_del() 56 struct dl_list *item; dl_list_len() local [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | pqueue.c | 20 pitem *item = OPENSSL_malloc(sizeof(*item)); in pitem_new() local 22 if (item == NULL) { in pitem_new() 27 memcpy(item->priority, prio64be, sizeof(item->priority)); in pitem_new() 28 item->data = data; in pitem_new() 29 item->next = NULL; in pitem_new() 30 return item; in pitem_new() 33 void pitem_free(pitem *item) in pitem_free() argument 35 OPENSSL_free(item); in pitem_free() 53 pqueue_insert(pqueue *pq, pitem *item) pqueue_insert() argument 96 pitem *item = pq->items; pqueue_pop() local 134 pqueue_next(piterator *item) pqueue_next() argument 150 pitem *item = pq->items; pqueue_size() local [all...] |
/third_party/openssl/ssl/ |
H A D | pqueue.c | 20 pitem *item = OPENSSL_malloc(sizeof(*item)); in pitem_new() local 22 if (item == NULL) { in pitem_new() 27 memcpy(item->priority, prio64be, sizeof(item->priority)); in pitem_new() 28 item->data = data; in pitem_new() 29 item->next = NULL; in pitem_new() 30 return item; in pitem_new() 33 void pitem_free(pitem *item) in pitem_free() argument 35 OPENSSL_free(item); in pitem_free() 53 pqueue_insert(pqueue *pq, pitem *item) pqueue_insert() argument 96 pitem *item = pq->items; pqueue_pop() local 134 pqueue_next(piterator *item) pqueue_next() argument 150 pitem *item = pq->items; pqueue_size() local [all...] |
/third_party/python/Tools/peg_generator/pegen/ |
H A D | first_sets.py | 47 def visit_Alt(self, item: Alt) -> Set[str]: 50 for other in item.items: 52 if isinstance(other.item, NegativeLookahead): 59 # it means that the item is completely nullable and we should 60 # also considering at least the next item in case the current 66 if not isinstance(other.item, (Opt, NegativeLookahead, Repeat0)): 74 def visit_Cut(self, item: Cut) -> Set[str]: 77 def visit_Group(self, item: Group) -> Set[str]: 78 return self.visit(item.rhs) 80 def visit_PositiveLookahead(self, item [all...] |
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_map/ |
H A D | main.c | 37 lws_map_item_t *item; in main() local 65 item = lws_map_item_lookup_ks(map, "abc"); in main() 66 if (!item) { in main() 71 if (lws_map_item_value_len(item) != 3 || in main() 72 memcmp(lws_map_item_value(item), "def", 3)) { in main() 77 item = lws_map_item_lookup_ks(map, "123"); in main() 78 if (!item) { in main() 83 if (lws_map_item_value_len(item) != 4 || in main() 84 memcmp(lws_map_item_value(item), "4567", 4)) { in main() 89 item in main() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | compute_memory_pool.c | 56 struct compute_memory_item *item, struct pipe_context *pipe, 61 struct compute_memory_item *item, uint64_t new_start_in_dw, 218 struct compute_memory_item *item, *next; in compute_memory_finalize_pending() local 228 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { in compute_memory_finalize_pending() 230 "(%"PRIi64" bytes)\n", item->start_in_dw, item->id, in compute_memory_finalize_pending() 231 item->size_in_dw, item->size_in_dw * 4); in compute_memory_finalize_pending() 235 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { in compute_memory_finalize_pending() 236 allocated += align(item in compute_memory_finalize_pending() 329 struct compute_memory_item *item; compute_memory_defrag() local 355 compute_memory_promote_item(struct compute_memory_pool *pool, struct compute_memory_item *item, struct pipe_context *pipe, int64_t start_in_dw) compute_memory_promote_item() argument 404 compute_memory_demote_item(struct compute_memory_pool *pool, struct compute_memory_item *item, struct pipe_context *pipe) compute_memory_demote_item() argument 466 compute_memory_move_item(struct compute_memory_pool *pool, struct pipe_resource *src, struct pipe_resource *dst, struct compute_memory_item *item, uint64_t new_start_in_dw, struct pipe_context *pipe) compute_memory_move_item() argument 543 compute_memory_free_item(struct pipe_screen *screen, struct compute_memory_item *item) compute_memory_free_item() argument 562 struct compute_memory_item *item, *next; compute_memory_free() local [all...] |
/third_party/python/Tools/peg_generator/scripts/ |
H A D | grammar_grapher.py | 59 def references_for_item(item: Any) -> List[Any]: 60 if isinstance(item, Alt): 61 return [_ref for _item in item.items for _ref in references_for_item(_item)] 62 elif isinstance(item, Cut): 64 elif isinstance(item, Forced): 65 return references_for_item(item.node) 66 elif isinstance(item, Group): 67 return references_for_item(item.rhs) 68 elif isinstance(item, Lookahead): 69 return references_for_item(item [all...] |
/third_party/cJSON/ |
H A D | cJSON.c | 99 CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item) in cJSON_GetStringValue() argument 101 if (!cJSON_IsString(item)) in cJSON_GetStringValue() 106 return item->valuestring; in cJSON_GetStringValue() 110 CJSON_PUBLIC(long long *) cJSON_GetInt64NumberValue(cJSON * const item) in cJSON_GetInt64NumberValue() argument 112 if (!cJSON_IsInt64Number(item)) in cJSON_GetInt64NumberValue() 117 return &(item->valueint); in cJSON_GetInt64NumberValue() 121 CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item) in cJSON_GetNumberValue() argument 123 if (!cJSON_IsNumber(item)) in cJSON_GetNumberValue() 128 return item->valuedouble; in cJSON_GetNumberValue() 265 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete() argument 324 parse_number(cJSON * const item, parse_buffer * const input_buffer) parse_number() argument 423 parse_number(cJSON * const item, parse_buffer * const input_buffer) parse_number() argument 712 print_number(const cJSON * const item, printbuffer * const output_buffer) print_number() argument 787 print_number(const cJSON * const item, printbuffer * const output_buffer) print_number() argument 1016 parse_string(cJSON * const item, parse_buffer * const input_buffer) parse_string() argument 1267 print_string(const cJSON * const item, printbuffer * const p) print_string() argument 1341 cJSON *item = NULL; cJSON_ParseWithLengthOpts() local 1430 print(const cJSON * const item, cJSON_bool format, const internal_hooks * const hooks) print() argument 1495 cJSON_Print(const cJSON *item) cJSON_Print() argument 1500 cJSON_PrintUnformatted(const cJSON *item) cJSON_PrintUnformatted() argument 1505 cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) cJSON_PrintBuffered() argument 1555 parse_value(cJSON * const item, parse_buffer * const input_buffer) parse_value() argument 1610 print_value(const cJSON * const item, printbuffer * const output_buffer) print_value() argument 1684 parse_array(cJSON * const item, parse_buffer * const input_buffer) parse_array() argument 1782 print_array(const cJSON * const item, printbuffer * const output_buffer) print_array() argument 1844 parse_object(cJSON * const item, parse_buffer * const input_buffer) parse_object() argument 1962 print_object(const cJSON * const item, printbuffer * const output_buffer) print_object() argument 2176 suffix_object(cJSON *prev, cJSON *item) suffix_object() argument 2183 create_reference(const cJSON *item, const internal_hooks * const hooks) create_reference() argument 2204 add_item_to_array(cJSON *array, cJSON *item) add_item_to_array() argument 2259 add_item_to_object(cJSON * const object, const char * const string, cJSON * const item, const internal_hooks * const hooks, const cJSON_bool constant_key) add_item_to_object() argument 2449 cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item) cJSON_DetachItemViaPointer() argument 2654 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateNull() local 2665 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateTrue() local 2676 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateFalse() local 2687 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateBool() local 2699 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateInt64Number() local 2714 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateNumber() local 2741 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateNumber() local 2768 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateString() local 2785 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateStringReference() local 2797 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateObjectReference() local 2807 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateArrayReference() local 2818 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateRaw() local 2835 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateArray() local 2846 cJSON *item = cJSON_New_Item(&global_hooks); cJSON_CreateObject() local 3017 cJSON_Duplicate(const cJSON *item, cJSON_bool recurse) cJSON_Duplicate() argument [all...] |
/third_party/libwebsockets/lib/misc/cache-ttl/ |
H A D | heap.c | 55 lws_cache_ttl_item_heap_t *item) in _lws_cache_heap_item_destroy() 58 (const char *)&item[1] + item->size); in _lws_cache_heap_item_destroy() 60 lws_dll2_remove(&item->list_expiry); in _lws_cache_heap_item_destroy() 61 lws_dll2_remove(&item->list_lru); in _lws_cache_heap_item_destroy() 63 cache->cache.current_footprint -= item->size; in _lws_cache_heap_item_destroy() 68 cache->cache.info.cb((void *)((uint8_t *)&item[1]), item->size); in _lws_cache_heap_item_destroy() 70 lws_free(item); in _lws_cache_heap_item_destroy() 75 lws_cache_ttl_item_heap_t *item, in in lws_cache_heap_item_destroy() 54 _lws_cache_heap_item_destroy(lws_cache_ttl_lru_t_heap_t *cache, lws_cache_ttl_item_heap_t *item) _lws_cache_heap_item_destroy() argument 74 lws_cache_heap_item_destroy(lws_cache_ttl_lru_t_heap_t *cache, lws_cache_ttl_item_heap_t *item, int parent_too) lws_cache_heap_item_destroy() argument 180 lws_cache_ttl_item_heap_t *item; expiry_cb() local 199 lws_cache_ttl_item_heap_t *item; earliest_expiry() local 238 lws_cache_ttl_item_heap_t *item = lws_container_of(d, lws_cache_heap_specific() local 266 lws_cache_ttl_item_heap_t *item = lws_container_of(d, lws_cache_heap_lookup() local 328 lws_cache_ttl_item_heap_t *item, *ei; lws_cache_heap_write() local 429 lws_cache_ttl_item_heap_t *item; lws_cache_heap_get() local 452 lws_cache_ttl_item_heap_t *item; lws_cache_heap_invalidate() local 523 lws_cache_ttl_item_heap_t *item = destroy_dll() local 561 lws_cache_ttl_item_heap_t *item = dump_dll() local 578 lws_cache_ttl_item_heap_t *item = NULL; lws_cache_heap_debug_dump() local [all...] |
/third_party/lzma/CPP/Windows/Control/ |
H A D | ListView.cpp | 32 LVITEM item;
in GetItemParam() local 33 item.iItem = (int)index;
in GetItemParam() 34 item.iSubItem = 0;
in GetItemParam() 35 item.mask = LVIF_PARAM;
in GetItemParam() 36 const bool res = GetItem(&item);
in GetItemParam() 37 param = item.lParam;
in GetItemParam() 53 LVITEM item;
in InsertItem() local 54 item.mask = LVIF_TEXT | LVIF_PARAM;
in InsertItem() 55 item.iItem = (int)index;
in InsertItem() 56 item in InsertItem() 64 LVITEM item; SetSubItem() local 86 LVITEMW item; InsertItem() local 97 LVITEMW item; SetSubItem() local [all...] |
/third_party/protobuf/src/google/protobuf/util/ |
H A D | message_differencer_unittest.cc | 1317 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); in TEST() local 1318 item->add_ra(1); in TEST() 1319 item->add_ra(2); in TEST() 1320 item->add_ra(3); in TEST() 1321 item = msg1.add_item(); in TEST() 1322 item->add_ra(5); in TEST() 1323 item->add_ra(6); in TEST() 1324 item = msg1.add_item(); in TEST() 1325 item->add_ra(1); in TEST() 1326 item in TEST() 1361 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1436 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1557 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1634 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1716 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1838 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1886 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST() local 1993 protobuf_unittest::TestDiffMessage::Item* item; TEST() local 2083 protobuf_unittest::TestDiffMessage::Item* item; TEST() local 2103 protobuf_unittest::TestDiffMessage::Item* item; TEST() local 2139 protobuf_unittest::TestDiffMessage::Item* item; TEST() local 2176 protobuf_unittest::TestDiffMessage::Item* item; TEST() local 2587 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST_F() local 2632 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST_F() local 2681 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST_F() local 2708 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST_F() local 3427 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); TEST_F() local 3454 protobuf_unittest::TestDiffMessage::Item* item; TEST_F() local 3524 protobuf_unittest::TestDiffMessage::Item* item; TEST_F() local [all...] |
/third_party/libdrm/ |
H A D | util_double_list.h | 47 static inline void list_inithead(struct list_head *item) in list_inithead() argument 49 item->prev = item; in list_inithead() 50 item->next = item; in list_inithead() 53 static inline void list_add(struct list_head *item, struct list_head *list) in list_add() argument 55 item->prev = list; in list_add() 56 item->next = list->next; in list_add() 57 list->next->prev = item; in list_add() 58 list->next = item; in list_add() 61 list_addtail(struct list_head *item, struct list_head *list) list_addtail() argument 77 list_del(struct list_head *item) list_del() argument 83 list_delinit(struct list_head *item) list_delinit() argument [all...] |
/third_party/icu/icu4c/source/test/depstest/ |
H A D | dependencies.py | 19 items: Map from library or group names to item maps. 20 Each item has a "type" ("library" or "group" or "system_symbols"). 21 A library or group item can have an optional set of "files" (as in the files attribute). 22 Each item can have an optional set of "deps" (libraries & groups). 23 A group item also has a "library" name unless it is a group of system symbols. 24 The one "system_symbols" item and its groups have sets of "system_symbols" 33 # item contents: {"type": "binary"} with optional files & deps 77 def _ReadFiles(deps_file, item, library_name): 79 item_files = item.get("files") 84 if item_files == None: item_files = item["file [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | quickinfoTypeAtReturnPositionsInaccurate.js | 19 item: Item 20 ): item is Extract<Item, NumClass<any>> => { 21 return (item instanceof NumClass); 62 let item = this.slices[sliceId][sliceKey]; 64 if (isNumClass(item)) { 65 item.numExclusive(); // works only since version 4.2 68 item.get(); 71 // it seems like item's predicated type leaks outside the bracket... 73 return item; // type is Extract ... 79 let item [all...] |
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | info.py | 47 #return cls(raw.item, raw.typedecl, **raw._extra, **extra) 56 def from_resolved(cls, item, resolved, **extra): 58 return cls(item, typedecl=resolved, **extra) 60 typedeps, extra = cls._parse_raw_resolved(item, resolved, extra) 61 if item.kind is KIND.ENUM: 63 raise NotImplementedError((item, resolved, extra)) 65 raise NotImplementedError((item, resolved, extra)) 66 return cls(item, typedeps, **extra or {}) 69 def _parse_raw_resolved(cls, item, resolved, extra_extra): 88 raise NotImplementedError((item, typedep [all...] |