HomeSort by relevance Sort by last modified time
    Searched refs:positions (Results 76 - 100 of 298) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
EntropyComputeUtil.java 29 // Vertex positions for the block
30 FloatBuffer positions = terrainBlock.getFloatBuffer(Type.Position); local
50 for (int i = 0; i < positions.capacity() / 3; i++){
51 BufferUtils.populateFromBuffer(pos, positions, i);
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider.h 55 // Converts |positions| into ACMatchClassifications and returns the
60 const Snippet::MatchPositions& positions,
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 40 float *positions; member in struct:TestResult
  /external/icu4c/test/letest/
letest.h 40 float *positions; member in struct:TestResult
  /external/harfbuzz/src/
harfbuzz-buffer.c 36 * always have same allocated size, but different length and positions.
75 if ( buffer->positions )
77 if ( REALLOC_ARRAY( buffer->positions, new_allocated, HB_PositionRec ) )
140 buffer->positions = NULL;
155 FREE( buffer->positions );
211 if ( !buffer->positions )
215 if ( ALLOC_ARRAY( buffer->positions, buffer->allocated, HB_PositionRec ) )
219 memset (buffer->positions, 0, sizeof (buffer->positions[0]) * buffer->in_length);
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.c 36 * always have same allocated size, but different length and positions.
75 if ( buffer->positions )
77 if ( REALLOC_ARRAY( buffer->positions, new_allocated, HB_PositionRec ) )
140 buffer->positions = NULL;
155 FREE( buffer->positions );
211 if ( !buffer->positions )
215 if ( ALLOC_ARRAY( buffer->positions, buffer->allocated, HB_PositionRec ) )
219 memset (buffer->positions, 0, sizeof (buffer->positions[0]) * buffer->in_length);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-icu-le.cc 171 ALLOCATE_ARRAY (float, positions, glyph_count * 2 + 2);
175 le_getGlyphPositions (le, positions, &status);
193 info[j].mask = positions[2 * i + 2] - positions[2 * i];
195 info[j].var2.u32 = -positions[2 * i + 1];
test.cc 109 hb_glyph_position_t *positions = hb_buffer_get_glyph_positions (buffer, NULL); local
114 hb_glyph_position_t *pos = &positions[i];
hb-coretext.cc 268 const CGPoint* positions = CTRunGetPositionsPtr (run); local
269 if (!positions) {
272 positions = position_buf;
287 double advance = (j + 1 < num_glyphs ? positions[j + 1].x : positions[0].x + run_width) - positions[j].x;
298 info->var2.u32 = positions[j].y;
  /external/harfbuzz_ng/src/
hb-icu-le.cc 171 ALLOCATE_ARRAY (float, positions, glyph_count * 2 + 2);
175 le_getGlyphPositions (le, positions, &status);
193 info[j].mask = positions[2 * i + 2] - positions[2 * i];
195 info[j].var2.u32 = -positions[2 * i + 1];
test.cc 108 hb_glyph_position_t *positions = hb_buffer_get_glyph_positions (buffer, NULL); local
113 hb_glyph_position_t *pos = &positions[i];
  /external/icu4c/samples/layout/
GnomeFontInstance.cpp 42 const float *positions, le_int32 x, le_int32 y, le_int32 /*width*/, le_int32 /*height*/)
46 gFont->rasterizeGlyphs(fCairo, glyphs, count, positions, x, y);
178 void GnomeFontInstance::rasterizeGlyphs(cairo_t *cairo, const LEGlyphID *glyphs, le_int32 glyphCount, const float *positions,
189 glyph_t[out].x = x + positions[in*2];
190 glyph_t[out].y = y + positions[in*2 + 1];
GnomeFontInstance.h 38 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height);
100 void rasterizeGlyphs(cairo_t *cairo, const LEGlyphID *glyphs, le_int32 glyphCount, const float *positions,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LinearGradient_Delegate.java 59 int colors[], float positions[], int tileMode) {
61 colors, positions, Shader_Delegate.getTileMode(tileMode));
70 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
77 int colors[], float positions[], int tileMode) {
100 * @param positions May be null. The relative positions [0..1] of each
106 int colors[], float positions[], TileMode tile) {
107 super(colors, positions);
126 float positions[], TileMode tile) {
127 super(colors, positions, tile)
    [all...]
RadialGradient_Delegate.java 58 int colors[], float positions[], int tileMode) {
60 colors, positions, Shader_Delegate.getTileMode(tileMode));
67 return nativeCreate1(x, y, radius, new int[] { color0, color1 }, null /*positions*/,
73 int colors[], float positions[], int tileMode) {
96 * @param positions May be NULL. The relative position of each corresponding
101 private RadialGradient_Delegate(float x, float y, float radius, int colors[], float positions[],
103 super(colors, positions);
114 int[] colors, float[] positions, TileMode mode) {
115 super(colors, positions, mode);
SweepGradient_Delegate.java 55 /*package*/ static int nativeCreate1(float x, float y, int colors[], float positions[]) {
56 SweepGradient_Delegate newDelegate = new SweepGradient_Delegate(x, y, colors, positions);
62 return nativeCreate1(x, y, new int[] { color0, color1 }, null /*positions*/);
67 int[] colors, float[] positions) {
88 * @param positions May be NULL. The relative position of
92 * If positions is NULL, then the colors are automatically
96 int colors[], float positions[]) {
97 super(colors, positions);
107 float[] positions) {
108 super(colors, positions, null /*tileMode*/)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleTriMesh.java 65 // set positions
161 FloatBuffer positions = (FloatBuffer) pvb.getData(); local
188 positions.clear();
197 positions.put(0).put(0).put(0);
198 positions.put(0).put(0).put(0);
199 positions.put(0).put(0).put(0);
200 positions.put(0).put(0).put(0);
232 positions.put(p.position.x + left.x + up.x)
236 positions.put(p.position.x - left.x + up.x)
240 positions.put(p.position.x + left.x - up.x
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 191 // Necessarily true for any non-invalid positions.
210 UniquePosition positions[arraysize(kPositionArray)]; local
212 positions[i] = kPositionArray[i];
215 std::sort(&positions[0], &positions[kNumPositions], PositionLessThan());
217 EXPECT_TRUE(positions[i].Equals(kSortedPositionArray[i]))
219 << positions[i].ToDebugString() << " != "
228 UniquePosition positions[arraysize(kPositionArray)]; local
230 positions[i] = kPositionArray[i];
233 std::reverse(&positions[0], &positions[kNumPositions])
577 UniquePosition positions[kNumTestValues]; local
    [all...]
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 52 float *positions; member in struct:TestResult
  /packages/apps/Launcher2/src/com/android/launcher2/
Cling.java 171 int[] positions = getPunchThroughPositions(); local
172 for (int i = 0; i < positions.length; i += 2) {
173 double diff = Math.sqrt(Math.pow(event.getX() - positions[i], 2) +
174 Math.pow(event.getY() - positions[i + 1], 2));
238 int[] positions = getPunchThroughPositions(); local
239 for (int i = 0; i < positions.length; i += 2) {
240 cx = positions[i];
241 cy = positions[i + 1];
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 239 VectorXi positions(mp_target->outerSize());
240 positions.setZero();
248 ++positions[outer];
255 Index tmp = positions[j];
257 positions[j] = count;
277 Index i = (positions[outer]++) - 1;
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-patch-positions.js 32 // positions patched. Accoring to a special markup of function text
53 var positions = new Array();
57 positions.push(match.index);
59 return positions;
62 function ReadPCMap(func, positions) {
64 for (var i = 0; i < positions.length; i++) {
65 var pc = Debug.LiveEdit.GetPcFromSourcePos(func, positions[i]);
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-declaration.js 66 // Test let declarations in statement positions.
76 // Test const declarations with initialisers in statement positions.
91 // Test const declarations without initialisers in statement positions.
101 // Test var declarations in statement positions.
112 // non-strict statement positions.
114 // Non-strict source element positions.
117 // Strict source element positions.
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions.js 32 // positions patched. Accoring to a special markup of function text
53 var positions = new Array();
57 positions.push(match.index);
59 return positions;
62 function ReadPCMap(func, positions) {
64 for (var i = 0; i < positions.length; i++) {
65 var pc = Debug.LiveEdit.GetPcFromSourcePos(func, positions[i]);
  /external/v8/test/mjsunit/harmony/
block-let-declaration.js 66 // Test let declarations in statement positions.
76 // Test const declarations with initialisers in statement positions.
91 // Test const declarations without initialisers in statement positions.
101 // Test var declarations in statement positions.
112 // non-strict statement positions.
114 // Non-strict source element positions.
117 // Strict source element positions.

Completed in 1404 milliseconds

1 2 34 5 6 7 8 91011>>