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

1 2 3 4 5 67 8 91011>>

  /external/chromium/base/
string_util.h 226 TrimPositions positions,
229 TrimPositions positions,
232 TrimPositions positions,
238 TrimPositions positions,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 80 void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
  /external/chromium_org/ui/gfx/
render_text_mac.cc 292 std::vector<CGPoint> positions; local
294 positions.resize(glyph_count);
295 CTRunGetPositions(ct_run, empty_cf_range, &positions[0]);
296 positions_ptr = &positions[0];
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 48 /** positions decoded */
49 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
107 positions = new ArrayList<PositionEntry>();
183 * Gets the decoded positions list.
186 * @return positions list in ascending address order.
189 return positions;
400 positions.add(new PositionEntry(address, line));
457 "Decoded positions table not same size was "
  /external/harfbuzz/src/
harfbuzz-buffer-private.h 82 #define POSITION( pos ) (&buffer->positions[(pos)])
harfbuzz-shaper.cpp 1274 HB_Position positions = face->buffer->positions; local
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer-private.h 82 #define POSITION( pos ) (&buffer->positions[(pos)])
  /external/icu4c/layout/
LEGlyphStorage.h 59 * The glyph positions array.
196 * @param positions - the destiniation position array
201 void getGlyphPositions(float positions[], LEErrorCode &success) const;
234 * This method allocates the storage for the glyph positions. It allocates one extra X, Y
237 * @param success set to an error code if the positions array cannot be allocated.
356 * all of the relevant glyph information ( glyph, indices, positions, and auxData ),
LayoutEngine.h 33 * an array of character indices for the glyphs, and an array of glyph positions.
51 * 3) Glyph position adjustments - adjustment of glyph positions for kerning,
212 * This method does basic glyph positioning. The default implementation positions
240 * @param glyphStorage - the object which holds the per-glyph storage. The glyph positions will be
294 * @param glyphStorage - the object containing the per-glyph storage. The positions array will be modified.
314 * @param glyphStorage - the object containing the per-glyph storage. The positions array will be modified.
432 * @param positions - the destiniation position array
437 void getGlyphPositions(float positions[], LEErrorCode &success) const;
LEGlyphStorage.cpp 125 // FIXME: do we want to initialize the positions to [0, 0]?
387 void LEGlyphStorage::getGlyphPositions(float positions[], LEErrorCode &success) const
393 if (positions == NULL) {
403 LE_ARRAY_COPY(positions, fPositions, fGlyphCount * 2 + 2);
  /frameworks/base/core/jni/android/opengl/
util.cpp 238 FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
241 bool checkOK = positions.check() && sphere.check();
246 positions.bind();
254 const float* pSrc = positions.mData;
434 float[] positions, int positionsOffset,
445 FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
448 bool checkOK = ws.check() && positions.check() && indices.check();
460 positions.bind();
464 positions.mData, positions.mLength
    [all...]
  /external/guava/guava/src/com/google/common/base/
Splitter.java 176 positions:
181 continue positions;
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 173 positions:
178 continue positions;
  /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/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 119 final float[][] positions = { p0, p1, p2, p3 }; local
122 grid.set(tileX, tileY, positions, uvs);
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 661 hb_glyph_position_t* positions = hb_buffer_get_glyph_positions(buffer, NULL); local
667 HBFixedToFloat(positions[i].x_advance),
668 HBFixedToFloat(positions[i].x_offset),
669 HBFixedToFloat(positions[i].y_offset));
733 hb_glyph_position_t* positions = hb_buffer_get_glyph_positions(mBuffer, NULL); local
747 float xAdvance = HBFixedToFloat(positions[i].x_advance);
751 float xo = HBFixedToFloat(positions[i].x_offset);
752 float yo = -HBFixedToFloat(positions[i].y_offset);
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.h 107 uint32_t len, int numGlyphs, int x, int y, const float* positions, Rect* bounds,
134 uint32_t len, int numGlyphs, uint32_t radius, const float* positions);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Splitter.java 169 positions:
174 continue positions;
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Splitter.java 169 positions:
174 continue positions;
  /external/chromium_org/base/strings/
string_util.h 232 TrimPositions positions,
235 TrimPositions positions,
241 TrimPositions positions,
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 614 const float* positions = value->getPos(); local
621 x, y, positions, paint, totalAdvance, bounds);
650 const float* positions = value->getPos(); local
657 x, y, positions, paint, totalAdvance, bounds);
717 const jfloat* positions, jint dirFlags, SkPaint* paint) {
728 renderer->drawPosText((const char*) glyphs, bytesCount, glyphsCount, positions, paint);
735 jfloat* positions = env->GetFloatArrayElements(pos, NULL); local
737 renderPosText(renderer, textArray + index, count, positions, kBidi_LTR, paint);
739 env->ReleaseFloatArrayElements(pos, positions, JNI_ABORT);
747 jfloat* positions = env->GetFloatArrayElements(pos, NULL) local
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.h 80 /* Ligature caret positions */
277 hb_glyph_position_t *positions /* IN / OUT */);
  /external/harfbuzz_ng/src/
hb-ot-layout.h 80 /* Ligature caret positions */
277 hb_glyph_position_t *positions /* IN / OUT */);
  /external/doclava/src/com/google/doclava/
MethodInfo.java 419 SourcePositionInfo[] positions = new SourcePositionInfo[N]; local
427 positions[i] = param.position();
436 positions[index] = tag.position();
451 positions[i] = maternal[i].position();
461 positions[i]);
467 Errors.error(Errors.UNDOCUMENTED_PARAMETER, positions[i], "Undocumented parameter '"

Completed in 2245 milliseconds

1 2 3 4 5 67 8 91011>>