Home
last modified time | relevance | path

Searched defs:item (Results 1 – 25 of 849) sorted by relevance

12345678910>>...34

/third_party/typescript/tests/cases/compiler/
DinterfaceDeclaration3.ts2 interface I1 { item:number; } property
5 interface I1 { item:string; } property
6 interface I2 { item:number; } property
8 public item:number; property in C1
11 public item:string; property in C2
14 public item:number; property in C3
27 export interface I1 { item:string; } property
28 export interface I2 { item:string; } property
30 export interface I1 { item:string; } property
33 public item:number; property in C1
[all …]
DinterfaceImplementation6.ts3 item:number; property
7 public item:number; property in C1
11 private item:number; property in C2
DinterfaceDeclaration1.ts2 item:number; property
3 item:number; property
7 item:any; property
8 item:number; property
DinterfaceDeclaration4.ts4 export interface I1 { item: string; } property
14 item:string; property
19 item:number; property
/third_party/cJSON/tests/
Dcommon.h29 void reset(cJSON *item) { in reset()
103 #define assert_has_type(item, item_type) TEST_ASSERT_BITS_MESSAGE(0xFF, item_type, item->type, "Ite… argument
104 #define assert_has_no_reference(item) TEST_ASSERT_BITS_MESSAGE(cJSON_IsReference, 0, item->type, "I… argument
105 #define assert_has_no_const_string(item) TEST_ASSERT_BITS_MESSAGE(cJSON_StringIsConst, 0, item->typ… argument
106 #define assert_has_valuestring(item) TEST_ASSERT_NOT_NULL_MESSAGE(item->valuestring, "Valuestring i… argument
107 #define assert_has_no_valuestring(item) TEST_ASSERT_NULL_MESSAGE(item->valuestring, "Valuestring is… argument
108 #define assert_has_string(item) TEST_ASSERT_NOT_NULL_MESSAGE(item->string, "String is NULL") argument
109 #define assert_has_no_string(item) TEST_ASSERT_NULL_MESSAGE(item->string, "String is not NULL.") argument
110 #define assert_not_in_list(item) \ argument
113 #define assert_has_child(item) TEST_ASSERT_NOT_NULL_MESSAGE(item->child, "Item doesn't have a child… argument
[all …]
/third_party/node/deps/npm/node_modules/gauge/lib/
Drender-template.js9 return function (item) { argument
20 function preType (item) { argument
25 function postType (item) { argument
30 function hasPreOrPost (item, values) { argument
62 function cloneAndObjectify (item, index, arr) { argument
88 var output = template.map(cloneAndObjectify).filter(function (item) { argument
102 function finishSizing (item, length) { argument
125 output.forEach(function (item) { argument
139 output.forEach(function (item) { argument
152 output.forEach(function (item) { argument
[all …]
/third_party/selinux/libsepol/cil/src/
Dcil_list.c58 struct cil_list_item *item; in cil_list_destroy() local
80 void cil_list_item_init(struct cil_list_item **item) in cil_list_item_init()
90 void cil_list_item_destroy(struct cil_list_item **item, unsigned destroy_data) in cil_list_item_destroy()
101 struct cil_list_item *item; in cil_list_append() local
123 struct cil_list_item *item; in cil_list_prepend() local
145 struct cil_list_item *item; in cil_list_insert() local
172 void cil_list_append_item(struct cil_list *list, struct cil_list_item *item) in cil_list_append_item()
199 void cil_list_prepend_item(struct cil_list *list, struct cil_list_item *item) in cil_list_prepend_item()
227 struct cil_list_item *item; in cil_list_remove() local
/third_party/cJSON/
DcJSON.c99 CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item) in cJSON_GetStringValue()
109 CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item) in cJSON_GetNumberValue()
253 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
305 static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer) in parse_number()
550 static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) in print_number()
778 static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer) in parse_string()
1029 static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) in print_string()
1103 cJSON *item = NULL; in cJSON_ParseWithLengthOpts() local
1192 static unsigned char *print(const cJSON * const item, cJSON_bool format, const internal_hooks * con… in print()
1257 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) in cJSON_Print()
[all …]
/third_party/vulkan-loader/loader/
DcJSON.c87 const char *parse_number(cJSON *item, const char *num) { in parse_number()
166 char *print_number(cJSON *item, printbuffer *p) { in print_number()
243 const char *parse_string(cJSON *item, const char *str) { in parse_string()
430 char *print_string(cJSON *item, printbuffer *p) { return print_string_ptr(item->pAllocator, item->v… in print_string()
479 char *cJSON_Print(cJSON *item) { return print_value(item, 0, 1, 0); } in cJSON_Print()
480 char *cJSON_PrintUnformatted(cJSON *item) { return print_value(item, 0, 0, 0); } in cJSON_PrintUnformatted()
482 char *cJSON_PrintBuffered(cJSON *item, int prebuffer, int fmt) { in cJSON_PrintBuffered()
491 const char *parse_value(cJSON *item, const char *value) { in parse_value()
524 char *print_value(cJSON *item, int depth, int fmt, printbuffer *p) { in print_value()
586 const char *parse_array(cJSON *item, const char *value) { in parse_array()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dlist.h28 static inline void dl_list_add(struct dl_list *list, struct dl_list *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()
41 static inline void dl_list_del(struct dl_list *item) in dl_list_del()
56 struct dl_list *item; in dl_list_len() local
67 #define dl_list_entry(item, type, member) \ argument
78 #define dl_list_for_each(item, list, type, member) \ argument
83 #define dl_list_for_each_safe(item, n, list, type, member) \ argument
89 #define dl_list_for_each_reverse(item, list, type, member) \ argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dlist.h28 static inline void dl_list_add(struct dl_list *list, struct dl_list *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()
41 static inline void dl_list_del(struct dl_list *item) in dl_list_del()
56 struct dl_list *item; in dl_list_len() local
67 #define dl_list_entry(item, type, member) \ argument
78 #define dl_list_for_each(item, list, type, member) \ argument
83 #define dl_list_for_each_safe(item, n, list, type, member) \ argument
89 #define dl_list_for_each_reverse(item, list, type, member) \ argument
/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor_containers.cc170 static bool _GetItemByKey(PyContainer* self, PyObject* key, const void** item) { in _GetItemByKey()
230 const void* item = self->container_def->get_by_index_fn(self, index); in _NewKey_ByIndex() local
268 const void* item = NULL; in Subscript() local
296 const void* item = NULL; in Contains() local
464 const void* item; in Get() local
616 SeqSubscript(PyContainer* self, PyObject* item) { in SeqSubscript()
635 int Find(PyContainer* self, PyObject* item) { in Find()
674 static PyObject* Index(PyContainer* self, PyObject* item) { in Index()
685 static int SeqContains(PyContainer* self, PyObject* item) { in SeqContains()
696 static PyObject* Count(PyContainer* self, PyObject* item) { in Count()
[all …]
/third_party/icu/icu4c/source/test/depstest/
Ddependencies.py77 def _ReadFiles(deps_file, item, library_name): argument
94 def _IsLibrary(item): return item and item["type"] == "library" argument
96 def _IsLibraryGroup(item): return item and "library" in item argument
98 def _ReadDeps(deps_file, item, library_name): argument
119 def _AddSystemSymbol(item, symbol): argument
124 def _ReadSystemSymbols(deps_file, item): argument
/third_party/nghttp2/lib/
Dnghttp2_outbound_item.c30 void nghttp2_outbound_item_init(nghttp2_outbound_item *item) { in nghttp2_outbound_item_init()
38 void nghttp2_outbound_item_free(nghttp2_outbound_item *item, nghttp2_mem *mem) { in nghttp2_outbound_item_free()
109 nghttp2_outbound_item *item) { in nghttp2_outbound_queue_push()
119 nghttp2_outbound_item *item; in nghttp2_outbound_queue_pop() local
/third_party/node/deps/nghttp2/lib/
Dnghttp2_outbound_item.c30 void nghttp2_outbound_item_init(nghttp2_outbound_item *item) { in nghttp2_outbound_item_init()
38 void nghttp2_outbound_item_free(nghttp2_outbound_item *item, nghttp2_mem *mem) { in nghttp2_outbound_item_free()
109 nghttp2_outbound_item *item) { in nghttp2_outbound_queue_push()
119 nghttp2_outbound_item *item; in nghttp2_outbound_queue_pop() local
/third_party/rust/crates/clap/clap_derive/src/derives/
Dparser.rs38 let item = Item::from_args_struct(input, name)?; in derive_parser() localVariable
43 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in derive_parser() localVariable
54 let item = Item::from_args_struct(input, name)?; in derive_parser() localVariable
59 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in derive_parser() localVariable
67 let item = Item::from_subcommand_enum(input, name)?; in derive_parser() localVariable
72 let item = in derive_parser() localVariable
/third_party/node/deps/openssl/openssl/ssl/
Dpqueue.c20 pitem *item = OPENSSL_malloc(sizeof(*item)); in pitem_new() local
33 void pitem_free(pitem *item) in pitem_free()
53 pitem *pqueue_insert(pqueue *pq, pitem *item) in pqueue_insert()
96 pitem *item = pq->items; in pqueue_pop() local
134 pitem *pqueue_next(piterator *item) in pqueue_next()
150 pitem *item = pq->items; in pqueue_size() local
/third_party/openssl/ssl/
Dpqueue.c20 pitem *item = OPENSSL_malloc(sizeof(*item)); in pitem_new() local
33 void pitem_free(pitem *item) in pitem_free()
53 pitem *pqueue_insert(pqueue *pq, pitem *item) in pqueue_insert()
96 pitem *item = pq->items; in pqueue_pop() local
134 pitem *pqueue_next(piterator *item) in pqueue_next()
150 pitem *item = pq->items; in pqueue_size() local
/third_party/libwebsockets/lib/misc/cache-ttl/
Dheap.c55 lws_cache_ttl_item_heap_t *item) in _lws_cache_heap_item_destroy()
75 lws_cache_ttl_item_heap_t *item, int parent_too) in lws_cache_heap_item_destroy()
180 lws_cache_ttl_item_heap_t *item; in expiry_cb() local
199 lws_cache_ttl_item_heap_t *item; in earliest_expiry() local
238 lws_cache_ttl_item_heap_t *item = lws_container_of(d, in lws_cache_heap_specific() local
266 lws_cache_ttl_item_heap_t *item = lws_container_of(d, in lws_cache_heap_lookup() local
328 lws_cache_ttl_item_heap_t *item, *ei; in lws_cache_heap_write() local
429 lws_cache_ttl_item_heap_t *item; in lws_cache_heap_get() local
452 lws_cache_ttl_item_heap_t *item; in lws_cache_heap_invalidate() local
523 lws_cache_ttl_item_heap_t *item = in destroy_dll() local
[all …]
/third_party/pulseaudio/src/pulsecore/
Dllist.h37 #define PA_LLIST_HEAD_INIT(t,item) \ argument
43 #define PA_LLIST_INIT(t,item) \ argument
51 #define PA_LLIST_PREPEND(t,head,item) \ argument
62 #define PA_LLIST_REMOVE(t,head,item) \ argument
78 #define PA_LLIST_FIND_HEAD(t,item,head) \ argument
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
Dpool.h127 Pool<T>::Loan::Loan(Item* item, const std::shared_ptr<Storage>& storage) in Loan()
287 auto item = storage->free; in borrow() local
299 Item* item = nullptr; in tryBorrow() local
316 void BoundedPool<T, N, POLICY>::Storage::return_(Item* item) { in return_()
381 for (auto item : items) { in ~Storage() local
410 auto item = allocator->create<Item>(); in borrow() local
420 auto item = storage->free; in borrow() local
430 void UnboundedPool<T, POLICY>::Storage::return_(Item* item) { in return_()
/third_party/lzma/CPP/Common/
DMyVector.h214 unsigned Add(const T item) in Add()
234 unsigned AddInReserved(const T item) in AddInReserved()
242 void Insert(unsigned index, const T item) in Insert()
250 void InsertInReserved(unsigned index, const T item) in InsertInReserved()
285 int FindInSorted(const T item, unsigned left, unsigned right) const in FindInSorted()
302 int FindInSorted2(const T &item, unsigned left, unsigned right) const in FindInSorted2()
320 int FindInSorted(const T item) const in FindInSorted()
325 int FindInSorted2(const T &item) const in FindInSorted2()
330 unsigned AddToUniqueSorted(const T item) in AddToUniqueSorted()
349 unsigned AddToUniqueSorted2(const T &item) in AddToUniqueSorted2()
[all …]
/third_party/vk-gl-cts/scripts/khr_util/
Dregistry.py91 def append(self, item): argument
107 def getkeys(self, item): argument
113 def __setitem__(self, key, item): argument
120 def duplicateKey(self, key, item): argument
143 def getkeys(self, item): argument
146 def duplicateKey(self, key, item): argument
150 def getkeys(self, item): argument
156 def getkeys(self, item): argument
164 def duplicateKey(self, key, item): argument
168 def getkeys(self, item): argument
[all …]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DBundle.java177 BundleItem item = null; in removeUntranslatedItemsByGroup() local
196 BundleItem item = (BundleItem)iter.next(); in removeUntranslatedItem() local
248 BundleItem item = (BundleItem)elems.nextElement(); in removeGroup() local
262 BundleItem item = (BundleItem)o; in removeItem() local
281 public void addUntranslatedItem(BundleItem item) { in addUntranslatedItem()
394 public void addBundleItem(BundleItem item) { in addBundleItem()
401 allItems.put(item.getKey(), item); in addBundleItem() local
/third_party/typescript/tests/baselines/reference/
DunionRelationshipCheckPasses.js2 const item: { foo?: undefined } | { foo: number } = null as any as { foo?: number | undefined }; constant
7 var item = null; variable

12345678910>>...34