Searched refs:CELL (Results 1 - 9 of 9) sorted by relevance
/third_party/rust/crates/once_cell/examples/ |
H A D | bench.rs | 8 static CELL: OnceCell<usize> = OnceCell::new(); consts 25 let &value = CELL.get_or_init(|| i); in thread_main()
|
H A D | bench_acquire.rs | 11 static CELL: OnceCell<usize> = OnceCell::new(); consts 32 let _value = CELL.get_or_init(|| i + 1); in thread_main()
|
/third_party/python/Lib/ |
H A D | symtable.py | 6 LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL) 174 locs = (LOCAL, CELL) 265 return bool(self.__scope in (LOCAL, CELL)
|
/third_party/python/Include/internal/ |
H A D | pycore_symtable.h | 119 #define CELL 5 macro
|
/third_party/rust/crates/once_cell/tests/ |
H A D | it.rs | 22 const CELL: OnceCell<i32> = OnceCell::with_value(12); in once_cell_with_value() consts 23 let cell = CELL; in once_cell_with_value() 283 static CELL: OnceCell<i32> = OnceCell::with_value(12); in once_cell_with_value() consts 284 assert_eq!(CELL.get(), Some(&12)); in once_cell_with_value()
|
/third_party/python/Modules/ |
H A D | symtablemodule.c | 100 if (PyModule_AddIntMacro(m, CELL) < 0) return -1; in symtable_init_constants()
|
/third_party/python/Python/ |
H A D | compile.c | 1739 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 2231 return CELL; in get_ref_type() 2282 if (reftype == CELL) { in compiler_make_closure() 4276 case CELL: in compiler_nameop()
|
H A D | symtable.c | 571 marked CELL in this block and removed from the free list. 584 v_cell = PyLong_FromLong(CELL); in analyze_cells() 595 /* Replace LOCAL with CELL for this name, and remove in analyze_cells()
|
/third_party/python/Lib/tkinter/ |
H A D | tix.py | 52 CELL = 'cell' variable
|
Completed in 20 milliseconds