/third_party/mesa3d/src/compiler/glsl/ |
D | list.h | 682 #define exec_node_typed_forward(__node, __type) \ argument 683 (!exec_node_is_tail_sentinel(__node) ? (__type) (__node) : NULL) 685 #define exec_node_typed_backward(__node, __type) \ argument 686 (!exec_node_is_head_sentinel(__node) ? (__type) (__node) : NULL) 688 #define foreach_in_list(__type, __inst, __list) \ argument 689 for (__type *__inst = exec_node_typed_forward((__list)->head_sentinel.next, __type *); \ 691 (__inst) = exec_node_typed_forward((__inst)->next, __type *)) 693 #define foreach_in_list_reverse(__type, __inst, __list) \ argument 694 for (__type *__inst = exec_node_typed_backward((__list)->tail_sentinel.prev, __type *); \ 696 (__inst) = exec_node_typed_backward((__inst)->prev, __type *)) [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 396 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument 398 foreach_inst_in_block (__type, __inst, __block) 403 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument 405 foreach_inst_in_block_safe (__type, __inst, __block) 419 #define foreach_inst_in_block(__type, __inst, __block) \ argument 420 foreach_in_list(__type, __inst, &(__block)->instructions) 422 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument 423 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \ 424 *__next = (__type *)__inst->next; \ 427 __next = (__type *)__next->next) [all …]
|
/third_party/libdrm/ |
D | util_double_list.h | 98 #define LIST_ENTRY(__type, __item, __field) \ argument 99 ((__type *)(((char *)(__item)) - offsetof(__type, __field))) 101 #define LIST_FIRST_ENTRY(__ptr, __type, __field) \ argument 102 LIST_ENTRY(__type, (__ptr)->next, __field) 104 #define LIST_LAST_ENTRY(__ptr, __type, __field) \ argument 105 LIST_ENTRY(__type, (__ptr)->prev, __field)
|
D | libdrm_lists.h | 76 #define DRMLISTENTRY(__type, __item, __field) \ argument 77 ((__type *)(((char *) (__item)) - offsetof(__type, __field)))
|
/third_party/typescript/tests/baselines/reference/ |
D | typeFromContextualThisType.symbols | 11 >this : Symbol(__type, Decl(bug25926.js, 0, 11)) 27 >this : Symbol(__type, Decl(bug25926.js, 7, 11)) 30 >this : Symbol(__type, Decl(bug25926.js, 7, 11)) 34 >this : Symbol(__type, Decl(bug25926.js, 7, 11))
|
D | thisTypeInObjectLiterals2.symbols | 105 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 111 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 117 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 123 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 148 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 154 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 160 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 166 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 191 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) 197 >this : Symbol(__type, Decl(thisTypeInObjectLiterals2.ts, 28, 12)) [all …]
|
D | constructorTagWithThisTag.symbols | 12 >this : Symbol(__type, Decl(classthisboth.js, 2, 10)) 15 >this : Symbol(__type, Decl(classthisboth.js, 2, 10))
|
D | symbolLinkDeclarationEmitModuleNames.symbols | 38 readonly __type: T; 39 >__type : Symbol(BindingKey.__type, Decl(bindingkey.ts, 1, 28))
|
D | symbolLinkDeclarationEmitModuleNamesRootDir.symbols | 16 readonly __type: T; 17 >__type : Symbol(BindingKey.__type, Decl(bindingkey.d.ts, 1, 36))
|
D | symbolLinkDeclarationEmitModuleNames.js | 16 readonly __type: T; 74 readonly __type: T;
|
D | symbolLinkDeclarationEmitModuleNames.types | 36 readonly __type: T; 37 >__type : T
|
D | symbolLinkDeclarationEmitModuleNamesRootDir.types | 13 readonly __type: T; 14 >__type : T
|
D | readonlyAssignmentInSubclassOfClassExpression.symbols | 9 >super : Symbol(__type, Decl(readonlyAssignmentInSubclassOfClassExpression.ts, 0, 28))
|
D | symbolLinkDeclarationEmitModuleNamesRootDir.js | 8 readonly __type: T;
|
/third_party/jsframework/runtime/main/model/ |
D | index.ts | 83 private __type: string; property in Vm 137 this.__type = type; 146 `'_innerInit' lifecycle in Vm(${this.__type}) and mergedData = ${JSON.stringify(mergedData)}.` 173 Log.debug(`"onInit" lifecycle in Vm(${this.__type})`); 474 Log.debug(`[JS Framework] "onDestroy" lifecycle in Vm(${this.__type})`); 499 delete this.__type; 557 return this.__type; 561 this.__type = newType;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTLS.h | 77 using FieldName##__type = Type; \ 91 static_cast<FieldName##__type>(pthread_getspecific(FieldName##__key)))
|
/third_party/typescript/tests/cases/compiler/ |
D | symbolLinkDeclarationEmitModuleNames.ts | 15 readonly __type: T; property in BindingKey
|
D | symbolLinkDeclarationEmitModuleNamesRootDir.ts | 7 readonly __type: T; property in BindingKey
|
/third_party/mesa3d/src/util/ |
D | list.h | 170 #define LIST_ENTRY(__type, __item, __field) \ argument 171 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
|
/third_party/boost/libs/type_traits/doc/ |
D | type_with_alignment.qbk | 16 __type a built-in or POD type with an alignment
|
D | add_cv.qbk | 18 __type The same type as `T const volatile` for all `T`.
|
D | add_volatile.qbk | 18 __type The same type as `T volatile` for all `T`.
|
D | remove_reference.qbk | 18 __type The same type as `T`, but with any reference modifier removed.
|
D | add_const.qbk | 18 __type The same type as `T const` for all `T`.
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_query.c | 31 #define LIST_FIRST_ENTRY(__type, __item, __field) \ argument 32 LIST_ENTRY(__type, (__item)->next, __field)
|