/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-using-decl.cpp | 94 template<class CELL> struct X : public A<CELL>, public B<CELL> { 95 using A<CELL>::access; 96 using B<CELL>::access;
|
/external/clang/test/SemaTemplate/ |
D | instantiate-using-decl.cpp | 94 template<class CELL> struct X : public A<CELL>, public B<CELL> { 95 using A<CELL>::access; 96 using B<CELL>::access;
|
/external/rust/crates/once_cell/examples/ |
D | bench.rs | 8 static CELL: OnceCell<usize> = OnceCell::new(); variable 25 let &value = CELL.get_or_init(|| i); in thread_main()
|
D | bench_acquire.rs | 11 static CELL: OnceCell<usize> = OnceCell::new(); constant 32 let _value = CELL.get_or_init(|| i + 1); in thread_main()
|
/external/rust/crates/crossbeam-utils/tests/ |
D | atomic_cell.rs | 232 static CELL: AtomicCell<usize> = AtomicCell::new(0); in const_atomic_cell_new() variable 234 CELL.store(1); in const_atomic_cell_new() 235 assert_eq!(CELL.load(), 1); in const_atomic_cell_new()
|
/external/python/cpython3/Lib/ |
D | symtable.py | 6 LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL) 131 locs = (LOCAL, CELL) 204 return bool(self.__scope in (LOCAL, CELL)
|
/external/python/cpython2/Include/ |
D | symtable.h | 84 #define CELL 5 macro
|
/external/python/cpython2/Lib/ |
D | symtable.py | 6 SCOPE_OFF, SCOPE_MASK, FREE, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL, LOCAL) 137 locs = (LOCAL, CELL)
|
/external/python/cpython3/Include/ |
D | symtable.h | 114 #define CELL 5 macro
|
/external/python/cpython2/Modules/ |
D | symtablemodule.c | 82 PyModule_AddIntConstant(m, "CELL", CELL); in init_symtable()
|
/external/python/cpython3/Modules/ |
D | symtablemodule.c | 116 PyModule_AddIntMacro(m, CELL); in PyInit__symtable()
|
/external/python/cpython2/Python/ |
D | compile.c | 485 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 1291 if (reftype == CELL) in compiler_make_closure() 2336 case CELL: in compiler_nameop()
|
D | symtable.c | 456 w = PyInt_FromLong(CELL); in analyze_cells()
|
/external/python/cpython3/Python/ |
D | compile.c | 580 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 1873 return CELL; in get_ref_type() 1922 if (reftype == CELL) in compiler_make_closure() 3581 case CELL: in compiler_nameop()
|
D | symtable.c | 580 v_cell = PyLong_FromLong(CELL); in analyze_cells()
|
/external/python/cpython3/Lib/tkinter/ |
D | tix.py | 45 CELL = 'cell' variable
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tix.py | 49 CELL = 'cell' variable
|