Home
last modified time | relevance | path

Searched refs:boxes (Results 1 – 25 of 146) sorted by relevance

123456

/third_party/skia/modules/skparagraph/tests/
DSkParagraphTest.cpp342 auto boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in UNIX_ONLY_TEST() local
343 canvas.drawRects(SK_ColorRED, boxes); in UNIX_ONLY_TEST()
344 REPORTER_ASSERT(reporter, boxes.size() == 1); in UNIX_ONLY_TEST()
346 boxes = paragraph->getRectsForRange(0, 3, rect_height_style, rect_width_style); in UNIX_ONLY_TEST()
347 canvas.drawRects(SK_ColorGREEN, boxes); in UNIX_ONLY_TEST()
348 REPORTER_ASSERT(reporter, boxes.size() == 1); in UNIX_ONLY_TEST()
350 boxes = paragraph->getRectsForPlaceholders(); in UNIX_ONLY_TEST()
351 canvas.drawRects(SK_ColorRED, boxes); in UNIX_ONLY_TEST()
353 boxes = paragraph->getRectsForRange(4, 17, rect_height_style, rect_width_style); in UNIX_ONLY_TEST()
354 canvas.drawRects(SK_ColorBLUE, boxes); in UNIX_ONLY_TEST()
[all …]
/third_party/mesa3d/src/gallium/frontends/xa/
Dxa_context.c102 int to_surface, struct xa_box *boxes, unsigned int num_boxes) in xa_surface_dma() argument
113 for (i = 0; i < num_boxes; ++i, ++boxes) { in xa_surface_dma()
114 w = boxes->x2 - boxes->x1; in xa_surface_dma()
115 h = boxes->y2 - boxes->y1; in xa_surface_dma()
118 transfer_direction, boxes->x1, boxes->y1, in xa_surface_dma()
125 0, 0, w, h, data, pitch, boxes->x1, boxes->y1); in xa_surface_dma()
128 boxes->x1, boxes->y1, w, h, map, transfer->stride, 0, in xa_surface_dma()
Dxa_context.h79 int to_surface, struct xa_box *boxes,
/third_party/vk-gl-cts/android/cts/main/vk-master-2022-03-01/
Dray-tracing-pipeline.txt87 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.any…
88 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.chi…
89 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.ise…
90 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.ise…
91 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.miss
92 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.chi…
93 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.chit
94 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.chi…
95 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.any…
96 dEQP-VK.ray_tracing_pipeline.pipeline_no_null_shaders_flag.gpu.boxes.stride_3.offset_7.use_libs.any…
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_palettegen.c76 …struct range_box boxes[256]; // define the segmentation of the colorspace (the final pa… member
172 struct range_box *box = &s->boxes[box_id]; in get_next_box_id_to_split()
174 if (s->boxes[box_id].len >= 2) { in get_next_box_id_to_split()
238 struct range_box *new_box = &s->boxes[s->nb_boxes++]; in split_box()
267 pal[x] = s->boxes[box_id++].color; in write_palette()
343 box = &s->boxes[box_id]; in get_palette_frame()
411 box = box_id >= 0 ? &s->boxes[box_id] : NULL; in get_palette_frame()
418 qsort(s->boxes, s->nb_boxes, sizeof(*s->boxes), cmp_color); in get_palette_frame()
544 memset(s->boxes, 0, sizeof(s->boxes)); in filter_frame()
/third_party/skia/modules/canvaskit/
Dparagraph_bindings.cpp258 Float32Array TextBoxesToFloat32Array(std::vector<para::TextBox> boxes) { in TextBoxesToFloat32Array() argument
260 if (!boxes.size()) { in TextBoxesToFloat32Array()
263 SimpleTextBox* rects = new SimpleTextBox[boxes.size()]; in TextBoxesToFloat32Array()
264 for (int i = 0; i < boxes.size(); i++) { in TextBoxesToFloat32Array()
265 rects[i].rect = boxes[i].rect; in TextBoxesToFloat32Array()
266 if (boxes[i].direction == para::TextDirection::kRtl) { in TextBoxesToFloat32Array()
275 return Float32Array(typed_memory_view(boxes.size() * 5, fPtr)); in TextBoxesToFloat32Array()
283 std::vector<para::TextBox> boxes = self.getRectsForRange(start, end, heightStyle, widthStyle); in GetRectsForRange() local
284 return TextBoxesToFloat32Array(boxes); in GetRectsForRange()
288 std::vector<para::TextBox> boxes = self.getRectsForPlaceholders(); in GetRectsForPlaceholders() local
[all …]
/third_party/python/Doc/library/
Dtkinter.messagebox.rst14 boxes are modal and will return a subset of (True, False, OK, None, Yes, No) based on
28 **Warning message boxes**
33 **Question message boxes**
/third_party/ffmpeg/libavutil/
Ddetection_bbox.c26 AVDetectionBBox boxes; in av_detection_bbox_alloc() member
28 const size_t bboxes_offset = offsetof(struct BBoxContext, boxes); in av_detection_bbox_alloc()
/third_party/skia/modules/skparagraph/src/
DTextLine.cpp1384 std::vector<TextBox>& boxes) const in shapeEllipsis()
1387 auto startBox = boxes.size(); in shapeEllipsis()
1389 [textRange0, rectHeightStyle, rectWidthStyle, &boxes, &lastRun, startBox, this] in shapeEllipsis()
1393 …[run, runOffsetInLine, textRange0, rectHeightStyle, rectWidthStyle, &boxes, &lastRun, startBox, th… in shapeEllipsis()
1519 auto merge = [&lastRun, &context, &boxes](SkRect clip) { in shapeEllipsis()
1521 if (!boxes.empty() && in shapeEllipsis()
1534 auto& lastBox = boxes.back(); in shapeEllipsis()
1550 boxes.emplace_back(clip, context.run->getTextDirection()); in shapeEllipsis()
1553 boxes.emplace_back(trailingSpaces, paragraphStyle.getTextDirection()); in shapeEllipsis()
1560 auto left = boxes[startBox]; in shapeEllipsis()
[all …]
DParagraphImpl.cpp1189 std::vector<TextBox> boxes; in GetLineFontMetrics() local
1191 return boxes; in GetLineFontMetrics()
1195 return boxes; in GetLineFontMetrics()
1198 line.getRectsForPlaceholders(boxes); in GetLineFontMetrics()
1211 return boxes; in GetLineFontMetrics()
1613 std::vector<TextBox> boxes; in GetLineFontMetrics() local
1617 boxes); in GetLineFontMetrics()
1618 if (boxes.size() > 0) { in GetLineFontMetrics()
1620 *glyphInfo = {boxes[0].rect, cluster.textRange(), boxes[0].direction}; in GetLineFontMetrics()
DTextLine.h126 std::vector<TextBox>& boxes) const;
127 void getRectsForPlaceholders(std::vector<TextBox>& boxes);
/third_party/python/Tools/demo/
Dredemo.py75 self.boxes = []
81 if len(self.boxes) % 3 == 0:
92 self.boxes.append(box)
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_resource_buffer_upload.c580 SVGA3dCopyBox *boxes; in svga_buffer_upload_hb_command() local
605 sizeof *cmd + numBoxes * sizeof *boxes + sizeof *pSuffix, in svga_buffer_upload_hb_command()
619 sbuf->dma.boxes = (SVGA3dCopyBox *)&cmd[1]; in svga_buffer_upload_hb_command()
626 pSuffix = (SVGA3dCmdSurfaceDMASuffix *)((uint8_t*)cmd + sizeof *cmd + numBoxes * sizeof *boxes); in svga_buffer_upload_hb_command()
706 assert(sbuf->dma.boxes); in svga_buffer_upload_flush()
710 SVGA3dCopyBox *box = sbuf->dma.boxes + i; in svga_buffer_upload_flush()
744 sbuf->dma.boxes = NULL; in svga_buffer_upload_flush()
821 assert(!sbuf->dma.boxes); in svga_buffer_add_range()
Dsvga_cmd.c431 const SVGA3dCopyBox *boxes, // IN in SVGA3D_SurfaceDMA() argument
438 uint32 boxesSize = sizeof *boxes * numBoxes; in SVGA3D_SurfaceDMA()
474 memcpy(&cmd[1], boxes, boxesSize); in SVGA3D_SurfaceDMA()
1059 SVGA3dCopyBox **boxes, // OUT in SVGA3D_BeginSurfaceCopy() argument
1063 uint32 boxesSize = sizeof **boxes * numBoxes; in SVGA3D_BeginSurfaceCopy()
1073 *boxes = (SVGA3dCopyBox*) &cmd[1]; in SVGA3D_BeginSurfaceCopy()
1075 memset(*boxes, 0, boxesSize); in SVGA3D_BeginSurfaceCopy()
Dsvga_surface.c88 SVGA3dCopyBox box, *boxes; in svga_texture_copy_handle() local
121 &boxes, 1)); in svga_texture_copy_handle()
123 *boxes = box; in svga_texture_copy_handle()
Dsvga_resource_buffer.h196 SVGA3dCopyBox *boxes; member
/third_party/vk-gl-cts/doc/testspecs/GLES3/
Dfunctional.occlusion_query.txt26 - Scissor boxes
40 boxes, depth writes/clears or stencil writes/clears. Second, a number of
/third_party/skia/tests/
DGrMeshTest.cpp120 SkTArray<Box> boxes; local
137 const Box box = boxes.push_back() = {
250 helper->fInstBuffer = helper->makeVertexBuffer(boxes);
320 helper->fInstBuffer = helper->makeVertexBuffer(boxes);
/third_party/libdrm/include/drm/
Dmach64_drm.h133 struct drm_clip_rect boxes[MACH64_NR_SAREA_CLIPRECTS]; member
Dvia_drm.h189 struct drm_clip_rect boxes[VIA_NR_SAREA_CLIPRECTS]; member
Dr128_drm.h162 struct drm_clip_rect boxes[R128_NR_SAREA_CLIPRECTS]; member
Dmga_drm.h190 struct drm_clip_rect boxes[MGA_NR_SAREA_CLIPRECTS]; member
Dradeon_drm.h447 struct drm_clip_rect boxes[RADEON_NR_SAREA_CLIPRECTS]; member
667 struct drm_clip_rect *boxes; member
/third_party/python/Misc/NEWS.d/
D3.10.0.rst85 Make completion boxes appear on Ubuntu again.
/third_party/mesa3d/docs/relnotes/
D10.5.5.rst35 [NVC0/Gallium] Unigine Heaven black and white boxes

123456