HomeSort by relevance Sort by last modified time
    Searched defs:positions (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium/third_party/icu/source/test/letest/
letest.h 40 float *positions; member in struct:TestResult
cletest.c 44 float *positions = NULL; local
62 positions = NEW_ARRAY(float, glyphCount + 10);
113 le_getGlyphPositions(engine, positions, &status);
116 log_err("Calling getGlyphPositions(positions, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
119 DELETE_ARRAY(positions);
217 float positions[6 * 2 + 2]; local
238 le_getGlyphPositions(engine, positions, &status);
271 if (x != positions[glyph*2] || y != positions[glyph*2 + 1]) {
273 glyph, x, y, positions[glyph*2], positions[glyph*2 + 1])
    [all...]
gendata.cpp 166 float *positions = NULL; local
261 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
265 engine->getGlyphPositions(positions, leStatus);
271 dumpFloats(outputFile, "result-positions", positions, glyphCount * 2 + 2);
275 DELETE_ARRAY(positions);
xmlreader.cpp 151 UnicodeString result_positions = UNICODE_STRING_SIMPLE("result-positions");
180 UnicodeString text, glyphs, indices, positions; local
216 positions = element->getText(TRUE);
228 expected.positions = getFloatArray(positions, positionCount);
241 DELETE_ARRAY(expected.positions);
letest.cpp 61 float *positions = NULL; local
71 positions = NEW_ARRAY(float, glyphCount + 10);
136 engine->getGlyphPositions(positions, status);
139 log_err("Calling getGlyphPositions(positions, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
142 DELETE_ARRAY(positions);
247 float positions[6 * 2 + 2]; local
268 engine->getGlyphPositions(positions, status);
315 if (x != positions[glyph*2] || y != positions[glyph*2 + 1]) {
317 glyph, x, y, positions[glyph*2], positions[glyph*2 + 1])
611 UnicodeString text, glyphs, indices, positions; local
    [all...]
  /external/icu4c/test/letest/
letest.h 40 float *positions; member in struct:TestResult
cletest.c 44 float *positions = NULL; local
62 positions = NEW_ARRAY(float, glyphCount + 10);
113 le_getGlyphPositions(engine, positions, &status);
116 log_err("Calling getGlyphPositions(positions, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
119 DELETE_ARRAY(positions);
217 float positions[6 * 2 + 2]; local
238 le_getGlyphPositions(engine, positions, &status);
271 if (x != positions[glyph*2] || y != positions[glyph*2 + 1]) {
273 glyph, x, y, positions[glyph*2], positions[glyph*2 + 1])
    [all...]
gendata.cpp 166 float *positions = NULL; local
261 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
265 engine->getGlyphPositions(positions, leStatus);
271 dumpFloats(outputFile, "result-positions", positions, glyphCount * 2 + 2);
275 DELETE_ARRAY(positions);
xmlreader.cpp 151 UnicodeString result_positions = UNICODE_STRING_SIMPLE("result-positions");
180 UnicodeString text, glyphs, indices, positions; local
216 positions = element->getText(TRUE);
228 expected.positions = getFloatArray(positions, positionCount);
241 DELETE_ARRAY(expected.positions);
letest.cpp 61 float *positions = NULL; local
71 positions = NEW_ARRAY(float, glyphCount + 10);
136 engine->getGlyphPositions(positions, status);
139 log_err("Calling getGlyphPositions(positions, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
142 DELETE_ARRAY(positions);
247 float positions[6 * 2 + 2]; local
268 engine->getGlyphPositions(positions, status);
315 if (x != positions[glyph*2] || y != positions[glyph*2 + 1]) {
317 glyph, x, y, positions[glyph*2], positions[glyph*2 + 1])
611 UnicodeString text, glyphs, indices, positions; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
DalvCode.java 54 * {@code null-ok;} source positions list; set in
57 private PositionList positions; field in class:DalvCode
95 this.positions = null;
109 positions = PositionList.make(insns, positionInfo);
200 * Gets the source positions list.
202 * @return {@code non-null;} the source positions list
206 return positions;
210 * Gets the source positions list.
212 * @return {@code non-null;} the source positions list
  /cts/tests/tests/graphics/src/android/graphics/cts/
RadialGradientTest.java 46 final float[] positions = { 0f, 0.3f, 1f }; local
48 RadialGradient rg = new RadialGradient(CENTER, CENTER, RADIUS, colors, positions,
55 checkPixels(b, colors, positions, tolerance);
65 final float[] positions = { 0f, 1f }; local
74 checkPixels(b, colors, positions, tolerance);
77 private void checkPixels(Bitmap bitmap, int[] colors, float[] positions, int tolerance) {
83 for (idx = 0; idx < positions.length; idx++) {
84 if (positions[idx] > dist) {
91 } else if (idx == positions.length) {
93 color = colors[positions.length - 1]
    [all...]
SweepGradientTest.java 63 final float[] positions = new float[] { 0f, 1f }; local
67 checkColors(colors, positions, TOLERANCE);
77 final float[] positions = new float[] { 0f, 0.3f, 1f }; local
78 Shader shader = new SweepGradient(CENTER, CENTER, colors, positions);
82 checkColors(colors, positions, TOLERANCE);
92 final float[] positions = new float[] { 0f, 0.25f, 0.5f, 1f }; local
94 Shader shader = new SweepGradient(CENTER, CENTER, colors, positions);
98 checkColors(colors, positions, TOLERANCE);
101 private void checkColors(int[] colors, float[] positions, int tolerance) {
113 for (idx = 0; idx < positions.length; idx++)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 175 PositionList positions = code.getPositions(); local
182 new DebugInfoEncoder(positions, locals,
DebugInfoDecoder.java 47 /** positions decoded */
48 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
106 positions = new ArrayList<PositionEntry>();
182 * Gets the decoded positions list.
185 * @return positions list in ascending address order.
188 return positions;
406 positions.add(new PositionEntry(address, line));
463 "Decoded positions table not same size was "
DebugInfoEncoder.java 58 /** {@code null-ok;} positions (line numbers) to encode */
59 private final PositionList positions; field in class:DebugInfoEncoder
99 * @param positions {@code null-ok;} positions (line numbers) to encode
108 public DebugInfoEncoder(PositionList positions, LocalList locals,
111 this.positions = positions;
341 * Emits all positions that occur at the current {@code address}
344 * @param sortedPositions positions, sorted by ascending address
364 * @param sortedPositions positions, sorted by ascending addres
    [all...]
  /external/icu4c/samples/layout/
paragraph.cpp 242 const float *positions = visualRun->getPositions(); local
244 surface->drawGlyphs(font, glyphs, glyphCount, positions, x, y, fWidth, fHeight);
pflow.c 342 const float *positions = pl_getVisualRunPositions(visualRun); local
344 rs_drawGlyphs(surface, font, glyphs, glyphCount, positions, x, y, obj->fWidth, obj->fHeight);
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 180 const LEGlyphID glyphs[], const float positions[], const le_int32 glyphToCharMap[]);
187 * <code>LEGlyphIDs</code>, an array of (x, y) glyph positions and
247 * Get the (x, y) positions of the glyphs in the visual run. To simplify storage
248 * management, the x and y positions are stored in a single array with the x positions
253 * @return the address of the array of glyph positions for this visual run. The storage
341 const LEGlyphID glyphs[], const float positions[], const le_int32 glyphToCharMap[]);
560 float *positions; member in struct:ParagraphLayout::StyleRunInfo
728 const LEGlyphID glyphs[], const float positions[], const le_int32 glyphToCharMap[])
730 fGlyphs(glyphs), fPositions(positions), fGlyphToCharMap(glyphToCharMap
    [all...]
  /external/chromium/base/
string_util_unittest.cc 44 const TrimPositions positions; member in struct:base::trim_case
62 const TrimPositions positions; member in struct:base::trim_case_ascii
82 TrimWhitespace(value.input, value.positions, &output));
100 TrimWhitespace(value.input, value.positions, &output_ascii));
    [all...]
  /build/tools/droiddoc/src/
MethodInfo.java 438 SourcePositionInfo[] positions = new SourcePositionInfo[N]; local
445 positions[i] = mParameters[i].position();
453 positions[index] = tag.position();
468 positions[i] = maternal[i].position();
477 parent(), positions[i]);
483 Errors.error(Errors.UNDOCUMENTED_PARAMETER, positions[i],
  /external/icu4c/layoutex/
ParagraphLayout.cpp 381 fStyleRunInfo[run].positions = NULL;
417 // For each layout get the positions and convert them into glyph widths, in
439 fStyleRunInfo[run].positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2);
441 (fStyleRunInfo[run].positions == NULL)) {
452 engine->getGlyphPositions(fStyleRunInfo[run].positions, layoutStatus);
465 fGlyphWidths[glyphBase + glyph] = fStyleRunInfo[run].positions[glyph * 2 + 2] - fStyleRunInfo[run].positions[glyph * 2];
566 LE_DELETE_ARRAY(fStyleRunInfo[run].positions);
569 fStyleRunInfo[run].positions = NULL;
1065 fVisualRunLastX -= fStyleRunInfo[run].positions[leftGlyph * 2]
1074 float *positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2); local
1179 const float *positions = lastRun->getPositions(); local
    [all...]
  /external/v8/src/
jsregexp.h 97 // captured positions. On a failure, the result is the null value.
544 Position* positions(int index) { function in class:v8::internal::QuickCheckDetails
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 745 milliseconds

1 2