/third_party/typescript/tests/baselines/reference/ |
D | propertyAccessWidening.types | 8 let t = [{ hasLineBreak: false, cells: [] }]; 9 >t : { hasLineBreak: boolean; cells: never[]; }[] 10 >[{ hasLineBreak: false, cells: [] }] : { hasLineBreak: boolean; cells: never[]; }[] 11 >{ hasLineBreak: false, cells: [] } : { hasLineBreak: boolean; cells: never[]; } 14 >cells : never[] 17 const table = [{cells: headerNames }].concat(t); 18 >table : { cells: any; }[] 19 >[{cells: headerNames }].concat(t) : { cells: any; }[] 20 …cells: headerNames }].concat : { (...items: ConcatArray<{ cells: any; }>[]): { cells: any; }[]; (.… 21 >[{cells: headerNames }] : { cells: any; }[] [all …]
|
D | propertyAccessWidening.js | 5 let t = [{ hasLineBreak: false, cells: [] }]; property 6 const table = [{cells: headerNames }].concat(t); property 10 let t = [{ hasLineBreak: false, cells: [] }]; property 11 const table = [{cells: headerNames }]["concat"](t); property 28 var t = [{ hasLineBreak: false, cells: [] }]; property 29 var table = [{ cells: headerNames }].concat(t); property 32 var t = [{ hasLineBreak: false, cells: [] }]; property 33 var table = [{ cells: headerNames }]["concat"](t); property
|
D | propertyAccessWidening.symbols | 8 let t = [{ hasLineBreak: false, cells: [] }]; 11 >cells : Symbol(cells, Decl(propertyAccessWidening.ts, 3, 35)) 13 const table = [{cells: headerNames }].concat(t); 15 >[{cells: headerNames }].concat : Symbol(Array.concat, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.t… 16 >cells : Symbol(cells, Decl(propertyAccessWidening.ts, 4, 20)) 26 let t = [{ hasLineBreak: false, cells: [] }]; 29 >cells : Symbol(cells, Decl(propertyAccessWidening.ts, 8, 35)) 31 const table = [{cells: headerNames }]["concat"](t); 33 >cells : Symbol(cells, Decl(propertyAccessWidening.ts, 9, 20))
|
D | propertyAccessWidening.errors.txt | 11 let t = [{ hasLineBreak: false, cells: [] }]; 12 const table = [{cells: headerNames }].concat(t); 16 let t = [{ hasLineBreak: false, cells: [] }]; 17 const table = [{cells: headerNames }]["concat"](t);
|
D | 2dArrays.symbols | 20 cells: Cell[]; 21 >cells : Symbol(Board.cells, Decl(2dArrays.ts, 8, 18))
|
/third_party/ffmpeg/libavcodec/ |
D | elbg.c | 52 cell **cells; member 84 static int eval_error_cell(elbg_data *elbg, int *centroid, cell *cells) in eval_error_cell() argument 87 for (; cells; cells=cells->next) in eval_error_cell() 88 … error += distance_limited(centroid, elbg->points + cells->index*elbg->dim, elbg->dim, INT_MAX); in eval_error_cell() 124 av_assert2(elbg->cells[i]); in get_high_utility_cell() 137 cell *cells) in simple_lbg() argument 152 for (tempcell = cells; tempcell; tempcell=tempcell->next) { in simple_lbg() 163 for (tempcell = cells; tempcell; tempcell=tempcell->next) { in simple_lbg() 186 for (tempcell = elbg->cells[huc]; tempcell; tempcell = tempcell->next) in get_new_centroids() 213 cell **pp = &elbg->cells[indexes[2]]; in shift_codebook() [all …]
|
/third_party/pulseaudio/src/pulsecore/ |
D | shmasyncq.c | 119 pa_atomic_ptr_t *cells; 124 cells = PA_SHMASYNCQ_CELLS(l); 129 if (!pa_atomic_ptr_cmpxchg(&cells[idx], NULL, p)) { 138 } while (!pa_atomic_ptr_cmpxchg(&cells[idx], NULL, p)); 152 pa_atomic_ptr_t *cells; 156 cells = PA_SHMASYNCQ_CELLS(l); 161 if (!(ret = pa_atomic_ptr_load(&cells[idx]))) { 170 } while (!(ret = pa_atomic_ptr_load(&cells[idx]))); 176 pa_assert_se(pa_atomic_ptr_cmpxchg(&cells[idx], ret, NULL)); 194 pa_atomic_ptr_t *cells; [all …]
|
D | asyncq.c | 135 pa_atomic_ptr_t *cells; in push() local 140 cells = PA_ASYNCQ_CELLS(l); in push() 145 if (!pa_atomic_ptr_cmpxchg(&cells[idx], NULL, p)) { in push() 154 } while (!pa_atomic_ptr_cmpxchg(&cells[idx], NULL, p)); in push() 226 pa_atomic_ptr_t *cells; in pa_asyncq_pop() local 230 cells = PA_ASYNCQ_CELLS(l); in pa_asyncq_pop() 235 if (!(ret = pa_atomic_ptr_load(&cells[idx]))) { in pa_asyncq_pop() 244 } while (!(ret = pa_atomic_ptr_load(&cells[idx]))); in pa_asyncq_pop() 250 pa_assert_se(pa_atomic_ptr_cmpxchg(&cells[idx], ret, NULL)); in pa_asyncq_pop() 268 pa_atomic_ptr_t *cells; in pa_asyncq_read_before_poll() local [all …]
|
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
D | table.js | 23 let cells = tableLayout.makeTableLayout(array); 25 cells.forEach(function(row) { 27 cell.mergeTableOptions(this.options, cells); 31 tableLayout.computeWidths(this.options.colWidths, cells); 32 tableLayout.computeHeights(this.options.rowHeights, cells); 34 cells.forEach(function(row) { 42 for (let rowIndex = 0; rowIndex < cells.length; rowIndex++) { 43 let row = cells[rowIndex]; 54 if (rowIndex + 1 == cells.length) {
|
D | cell.js | 41 mergeTableOptions(tableOptions, cells) { argument 42 this.cells = cells; 139 if (this.cells) { 165 if (this.cells) { 167 let spanAbove = this.cells[this.y - 1][x] instanceof Cell.ColSpanCell; 173 while (this.cells[this.y][x - i] instanceof Cell.ColSpanCell) { 176 if (this.cells[this.y][x - i] instanceof Cell.RowSpanCell) { 215 if (this.x && spanningCell && this.cells) { 216 let cellLeft = this.cells[this.y + spanningCell][this.x - 1]; 218 cellLeft = this.cells[cellLeft.y][cellLeft.x - 1]; [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | table.dart | 46 /// The `cells` argument is an iterable that provides all the cells 47 /// in the table for this column. Walking the cells is by definition 52 double minIntrinsicWidth(Iterable<RenderBox> cells, double containerWidth); 60 /// The `cells` argument is an iterable that provides all the cells 61 /// in the table for this column. Walking the cells is by definition 66 double maxIntrinsicWidth(Iterable<RenderBox> cells, double containerWidth); 73 /// The `cells` argument is an iterable that provides all the cells 74 /// in the table for this column. Walking the cells is by definition 76 double flex(Iterable<RenderBox> cells) => null; 83 /// cells in that column. [all …]
|
/third_party/node/deps/npm/node_modules/cli-columns/ |
D | index.js | 59 let cells = values 64 cells = cells.sort(byPlainText); 68 const cellWidth = Math.max.apply(null, cells.map(stringWidth)) + options.padding; 70 const rowCount = Math.ceil(cells.length / columnCount) || 1; 73 return cells.join(options.newline); 76 return cells
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
D | stress2.c | 189 } cells[NSCENAR * SCALABILITY_FACTOR]; variable 534 cells[i + j * NSCENAR].cid = cid; in main() 538 pthread_cond_init(&(cells[i + j * NSCENAR].cnd), in main() 546 pthread_mutex_init(&(cells[i + j * NSCENAR].mtx), in main() 554 pthread_barrier_init(&(cells[i + j * NSCENAR].bar), in main() 601 ret = pthread_create(&mngrs[i], &ta, cellmanager, &(cells[i])); in main() 625 canceled += cells[i].canceled; in main() 626 cancelfailed += cells[i].cancelfailed; in main() 627 cnttotal += cells[i].cnttotal; in main() 629 ret = pthread_barrier_destroy(&(cells[i].bar)); in main() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/ |
D | stress.c | 198 } cells[NSCENAR * SCALABILITY_FACTOR]; variable 543 cells[i + j * NSCENAR].cid = cid; in main() 547 pthread_cond_init(&(cells[i + j * NSCENAR].cnd), in main() 555 pthread_mutex_init(&(cells[i + j * NSCENAR].mtx), in main() 563 pthread_barrier_init(&(cells[i + j * NSCENAR].bar), in main() 610 ret = pthread_create(&mngrs[i], &ta, cellmanager, &(cells[i])); in main() 634 canceled += cells[i].canceled; in main() 635 cancelfailed += cells[i].cancelfailed; in main() 636 cnttotal += cells[i].cnttotal; in main() 638 ret = pthread_barrier_destroy(&(cells[i].bar)); in main() [all …]
|
D | stress2.c | 198 } cells[NSCENAR * SCALABILITY_FACTOR]; variable 543 cells[i + j * NSCENAR].cid = cid; in main() 547 pthread_cond_init(&(cells[i + j * NSCENAR].cnd), in main() 555 pthread_mutex_init(&(cells[i + j * NSCENAR].mtx), in main() 563 pthread_barrier_init(&(cells[i + j * NSCENAR].bar), in main() 610 ret = pthread_create(&mngrs[i], &ta, cellmanager, &(cells[i])); in main() 634 canceled += cells[i].canceled; in main() 635 cancelfailed += cells[i].cancelfailed; in main() 636 cnttotal += cells[i].cnttotal; in main() 638 ret = pthread_barrier_destroy(&(cells[i].bar)); in main() [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/propertyAccess/ |
D | propertyAccessWidening.ts | 6 let t = [{ hasLineBreak: false, cells: [] }]; 7 const table = [{cells: headerNames }].concat(t); 11 let t = [{ hasLineBreak: false, cells: [] }]; 12 const table = [{cells: headerNames }]["concat"](t);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawShaderViewportIndexTests.cpp | 123 const std::vector<UVec4> cells) in makeGraphicsPipeline() argument 170 DE_ASSERT(numViewports == static_cast<int>(cells.size())); in makeGraphicsPipeline() 178 for (std::vector<UVec4>::const_iterator it = cells.begin(); it != cells.end(); ++it) { in makeGraphicsPipeline() 375 std::vector<UVec4> cells; in generateGrid() local 376 cells.reserve(numCells); in generateGrid() 390 cells.push_back(UVec4(x, y, rectWidth, rectHeight)); in generateGrid() 395 return cells; in generateGrid() 429 const std::vector<UVec4>& cells, in generateReferenceImage() argument 432 DE_ASSERT(cells.size() == cellColors.size()); in generateReferenceImage() 437 for (std::size_t i = 0; i < cells.size(); ++i) in generateReferenceImage() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
D | vktDrawShaderViewportIndexTests.cpp | 123 const std::vector<UVec4> cells) in makeGraphicsPipeline() argument 170 DE_ASSERT(numViewports == static_cast<int>(cells.size())); in makeGraphicsPipeline() 178 for (std::vector<UVec4>::const_iterator it = cells.begin(); it != cells.end(); ++it) { in makeGraphicsPipeline() 375 std::vector<UVec4> cells; in generateGrid() local 376 cells.reserve(numCells); in generateGrid() 390 cells.push_back(UVec4(x, y, rectWidth, rectHeight)); in generateGrid() 395 return cells; in generateGrid() 429 const std::vector<UVec4>& cells, in generateReferenceImage() argument 432 DE_ASSERT(cells.size() == cellColors.size()); in generateReferenceImage() 437 for (std::size_t i = 0; i < cells.size(); ++i) in generateReferenceImage() [all …]
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
D | CsvTableCollector.java | 35 private final List<List<String>> cells = new ArrayList<>(); field in CsvTableCollector 51 for (int rowIndex = 0; rowIndex < cells.size(); rowIndex++) { in writeCsv() 72 cells.add(rowValues); in accept() 76 List<String> row = cells.get(index); in getRow()
|
/third_party/libwebsockets/plugins/deaddrop/assets/ |
D | deaddrop.js | 80 if (t.rows[n].cells[0].classList.contains("err")) 121 t.rows[n].cells[2].textContent)) { 125 t.rows[n].cells[0].textContent = 127 t.rows[n].cells[0]. 138 t.rows[n].cells[2].textContent)) { 139 t.rows[n].cells[0] = "FAIL";
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/mount-origin/ |
D | deaddrop.js | 80 if (t.rows[n].cells[0].classList.contains("err")) 121 t.rows[n].cells[2].textContent)) { 125 t.rows[n].cells[0].textContent = 127 t.rows[n].cells[0]. 138 t.rows[n].cells[2].textContent)) { 139 t.rows[n].cells[0] = "FAIL";
|
/third_party/vk-gl-cts/doc/testspecs/GLES2/ |
D | functional.stencil.txt | 39 The viewport is divided into NxN cells, where each cell is assigned a target 41 two cells that target out-of-range stencil values. The amount of cells is scaled 42 based on available stencil bits. For example with 8b there are 6x6 cells.
|
/third_party/python/Tools/demo/ |
D | spreadsheet.py | 38 self.cells = {} # {(x, y): cell, ...} 41 cells = self.multicellvalue, 64 return self.cells.get((x, y)) 69 self.cells[x, y] = cell 73 del self.cells[x, y] 79 del self.cells[xy] 92 return [(x, y) for x, y in self.cells 104 for x, y in self.cells: 105 cell = self.cells[x, y] 112 self.cells = new [all …]
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | data_table_test.dart | 41 cells: <DataCell>[ 114 cells: <DataCell>[ 142 cells: <DataCell>[ 170 cells: <DataCell>[ 198 cells: <DataCell>[ 226 cells: <DataCell>[ 254 cells: <DataCell>[ 299 cells: <DataCell>[ 335 cells: <DataCell>[ 426 cells: <DataCell>[ [all …]
|
/third_party/rust/crates/once_cell/examples/ |
D | test_synchronization.rs | 31 let cells = CELLS.get().unwrap(); in thread_main() localVariable 33 for cell in cells.iter() { in thread_main()
|