Searched defs:positions (Results 1 - 25 of 113) sorted by relevance

12345

/external/icu/icu4c/source/samples/layout/
H A Drsurface.cpp20 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height)
24 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
19 rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count, const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height) argument
H A DGnomeFontInstance.cpp48 const float *positions, le_int32 x, le_int32 y, le_int32 /*width*/, le_int32 /*height*/)
52 gFont->rasterizeGlyphs(fCairo, glyphs, count, positions, x, y);
184 void GnomeFontInstance::rasterizeGlyphs(cairo_t *cairo, const LEGlyphID *glyphs, le_int32 glyphCount, const float *positions, argument
195 glyph_t[out].x = x + positions[in*2];
196 glyph_t[out].y = y + positions[in*2 + 1];
47 drawGlyphs(const LEFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const float *positions, le_int32 x, le_int32 y, le_int32 , le_int32 ) argument
H A DGDIFontInstance.cpp59 void GDISurface::drawGlyphs(const LEFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const float *positions, argument
78 dx[out] = (le_int32) (positions[g * 2 + 2] - positions[g * 2]);
79 ps[out * 2] = positions[g * 2];
80 ps[out * 2 + 1] = positions[g * 2 + 1];
H A Dparagraph.cpp253 const float *positions = visualRun->getPositions(); local
255 surface->drawGlyphs(font, glyphs, glyphCount, positions, x, y, fWidth, fHeight);
/external/icu/icu4c/source/test/letest/
H A Dletest.h47 float *positions; member in struct:TestResult
H A Dxmlreader.cpp153 UnicodeString result_positions = UNICODE_STRING_SIMPLE("result-positions");
182 UnicodeString text, glyphs, indices, positions; local
218 positions = element->getText(TRUE);
230 expected.positions = getFloatArray(positions, positionCount);
243 DELETE_ARRAY(expected.positions);
/external/skia/bench/
H A DHardStopGradientBench_ScaleNumColors.cpp51 * different colors. The positions are evenly spaced,
77 SkScalar positions[100]; variable
78 positions[0] = 0.0f;
79 positions[1] = 0.0f;
82 positions[i] = i / (fColorCount - 1.0f);
87 positions,
H A DHardStopGradientBench_SpecialHardStops.cpp86 SkScalar* positions = fKind == Kind::k001 ? pos_001 : variable
94 positions,
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DSortIndex.java49 private int[] positions; field in class:SortIndex
75 if (positions == null || positions.length < items.size()) {
76 positions = new int[items.size()];
80 positions[e.idx] = pos++;
93 return positions[idx];
/external/harfbuzz_ng/src/
H A Dsample.py69 positions = hb.buffer_get_glyph_positions (buf) variable
71 for info,pos in zip(infos, positions):
H A Dtest.cc112 hb_glyph_position_t *positions = hb_buffer_get_glyph_positions (buffer, NULL); local
117 hb_glyph_position_t *pos = &positions[i];
/external/icu/icu4c/source/test/perf/leperf/
H A Dleperf.cpp45 float *positions = NULL; local
51 positions = LE_NEW_ARRAY(float, glyphCount + 10);
58 delete positions;
/external/v8/src/compiler/
H A Dgraph-visualizer.h32 AsJSON(const Graph& g, SourcePositionTable* p) : graph(g), positions(p) {}
34 const SourcePositionTable* positions; member in struct:v8::internal::compiler::AsJSON
54 const SourcePositionTable* positions = nullptr,
58 positions_(positions),
/external/deqp/framework/common/
H A DtcuRasterizationVerifier.hpp63 tcu::Vec4 positions[3]; member in struct:tcu::TriangleSceneSpec::SceneTriangle
75 tcu::Vec4 positions[2]; member in struct:tcu::LineSceneSpec::SceneLine
/external/harfbuzz_ng/test/api/
H A Dtest-shape.c38 /* TODO Test positions too. And test non-native direction. Test commit 2e18c6dbdfb */
93 hb_glyph_position_t *positions; local
117 positions = hb_buffer_get_glyph_positions (buffer, NULL);
130 g_assert_cmpint (output_x_advances[i], ==, positions[i].x_advance);
131 g_assert_cmpint (output_x_offsets [i], ==, positions[i].x_offset);
132 g_assert_cmpint (0, ==, positions[i].y_advance);
133 g_assert_cmpint (0, ==, positions[i].y_offset);
H A Dtest-buffer.c301 hb_glyph_position_t *positions; local
303 /* Without shaping, positions should all be zero */
306 positions = hb_buffer_get_glyph_positions (b, &len2);
309 g_assert_cmpint (0, ==, positions[i].x_advance);
310 g_assert_cmpint (0, ==, positions[i].y_advance);
311 g_assert_cmpint (0, ==, positions[i].x_offset);
312 g_assert_cmpint (0, ==, positions[i].y_offset);
313 g_assert_cmpint (0, ==, positions[i].var.i32);
643 /* illegal code positions */
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_textrenderer.cpp86 std::vector<FX_FLOAT> positions; local
88 positions.resize(nChars - 1);
93 positions[i - 1] = cur_pos;
103 DrawNormalText(pDevice, codes, positions, pFont, font_size, &matrix,
/external/skia/gm/
H A Dhardstop_gradients.cpp114 SkScalar* positions[NUM_ROWS] = { variable
149 positions[cellRow],
/external/skia/include/core/
H A DSkVertices.h28 const SkPoint positions[],
35 const SkPoint positions[],
38 return MakeCopy(mode, vertexCount, positions, texs, colors, 0, nullptr);
56 SkPoint* positions();
84 const SkPoint* positions() const { return fPositions; } function in class:SkVertices
34 MakeCopy(SkCanvas::VertexMode mode, int vertexCount, const SkPoint positions[], const SkPoint texs[], const SkColor colors[]) argument
/external/skia/src/gpu/ops/
H A DGrLatticeOp.cpp111 SkPoint* positions = reinterpret_cast<SkPoint*>(verts); variable
112 positions->setRectFan(dstR.fLeft, dstR.fTop, dstR.fRight, dstR.fBottom,
131 SkPoint* positions = reinterpret_cast<SkPoint*>(patchVerts); variable
133 positions, vertexStride, kVertsPerRect * patch.fIter->numRectsToDraw());
H A DGrNonAAFillRectOp.cpp25 coords and just duplicate the positions when the caller hasn't provided a local coord rect,
43 SkPoint* positions = reinterpret_cast<SkPoint*>(vertices); local
45 positions->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vertexStride);
48 SkMatrixPriv::MapPointsWithStride(*viewMatrix, positions, vertexStride, kVertsPerInstance);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.cpp260 std::vector<tcu::Vec4> positions; local
266 positions.push_back(v.position);
275 vertexAttribs[0].pointer = positions.data();
292 std::vector<tcu::Vec4> positions; local
298 positions.push_back(v.position);
307 vertexAttribs[0].pointer = positions.data();
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationMiscDrawTests.cpp102 std::vector<tcu::Vec2> positions; local
103 positions.reserve(4);
107 positions.push_back(tcu::Vec2( 0.8f, 0.6f));
108 positions.push_back(tcu::Vec2( 0.0f, -0.786f));
109 positions.push_back(tcu::Vec2(-0.8f, 0.6f));
113 positions.push_back(tcu::Vec2(-0.8f, -0.8f));
114 positions.push_back(tcu::Vec2( 0.8f, -0.8f));
115 positions.push_back(tcu::Vec2(-0.8f, 0.8f));
116 positions.push_back(tcu::Vec2( 0.8f, 0.8f));
121 return positions;
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderFragDataTests.cpp154 const float positions[] = local
173 glu::va::Float("a_position", 2, 4, 0, &positions[0]),
/external/deqp/modules/gles3/functional/
H A Des3fShaderFragDataTests.cpp154 const float positions[] = local
173 glu::va::Float("a_position", 2, 4, 0, &positions[0]),
256 const float positions[] = local
274 glu::va::Float("a_position", 2, 4, 0, &positions[0]),

Completed in 7838 milliseconds

12345