HomeSort by relevance Sort by last modified time
    Searched refs:adjustments (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium/base/
utf_offset_string_conversions_unittest.cc 122 AdjustOffset::Adjustments adjustments; local
123 adjustments.push_back(AdjustOffset::Adjustment(3, 3, 1));
124 std::for_each(offsets.begin(), offsets.end(), AdjustOffset(adjustments));
134 adjustments.clear();
135 adjustments.push_back(AdjustOffset::Adjustment(0, 3, 1));
136 adjustments.push_back(AdjustOffset::Adjustment(4, 4, 2));
137 adjustments.push_back(AdjustOffset::Adjustment(10, 7, 4));
138 adjustments.push_back(AdjustOffset::Adjustment(20, 3, 1));
139 std::for_each(offsets.begin(), offsets.end(), AdjustOffset(adjustments));
    [all...]
utf_offset_string_conversions.cc 36 AdjustOffset::Adjustments adjustments; local
53 adjustments.push_back(AdjustOffset::Adjustment(
59 if (offsets_for_adjustment && !adjustments.empty()) {
62 AdjustOffset(adjustments));
221 AdjustOffset::AdjustOffset(const Adjustments& adjustments)
222 : adjustments_(adjustments) {}
228 for (Adjustments::const_iterator i = adjustments_.begin();
utf_offset_string_conversions.h 74 // number of AdjustOffset::Adjustments, drop them into a vector, then call
76 // AdjustOffset(adjustments). Each Adjustment gives the original |location|
90 typedef std::vector<Adjustment> Adjustments;
92 explicit AdjustOffset(const Adjustments& adjustments);
95 const Adjustments& adjustments_;
  /external/chromium/net/base/
escape.h 144 typedef std::vector<size_t> Adjustments;
146 explicit AdjustEncodingOffset(const Adjustments& adjustments);
149 const Adjustments& adjustments; member in struct:AdjustEncodingOffset
escape_unittest.cc 411 AdjustEncodingOffset::Adjustments adjustments; local
412 adjustments.push_back(3);
414 AdjustEncodingOffset(adjustments));
425 adjustments.clear();
426 adjustments.push_back(0);
427 adjustments.push_back(6);
428 adjustments.push_back(9);
429 adjustments.push_back(15);
431 AdjustEncodingOffset(adjustments));
    [all...]
escape.cc 120 AdjustEncodingOffset::Adjustments adjustments; // Locations of adjusted text. local
148 adjustments.push_back(i);
171 if (offsets_for_adjustment && !adjustments.empty()) {
174 AdjustEncodingOffset(adjustments));
383 AdjustEncodingOffset::AdjustEncodingOffset(const Adjustments& adjustments)
384 : adjustments(adjustments) {}
391 for (Adjustments::const_iterator i = adjustments.begin()
    [all...]
net_util.cc 1019 AdjustOffset::Adjustments adjustments; local
1110 AdjustOffset::Adjustments adjustments; local
1292 AdjustOffset::Adjustments adjustments; local
    [all...]
  /external/chromium_org/net/base/
escape_unittest.cc 403 internal::AdjustEncodingOffset::Adjustments adjustments; local
404 adjustments.push_back(3);
406 internal::AdjustEncodingOffset(adjustments));
417 adjustments.clear();
418 adjustments.push_back(0);
419 adjustments.push_back(6);
420 adjustments.push_back(9);
421 adjustments.push_back(15);
423 internal::AdjustEncodingOffset(adjustments));
    [all...]
escape.h 143 typedef std::vector<size_t> Adjustments;
145 explicit AdjustEncodingOffset(const Adjustments& adjustments);
148 const Adjustments& adjustments; member in struct:net::internal::AdjustEncodingOffset
escape.cc 120 net::internal::AdjustEncodingOffset::Adjustments adjustments; local
148 adjustments.push_back(i);
171 if (offsets_for_adjustment && !adjustments.empty()) {
174 net::internal::AdjustEncodingOffset(adjustments));
366 AdjustEncodingOffset::AdjustEncodingOffset(const Adjustments& adjustments)
367 : adjustments(adjustments) {}
374 for (Adjustments::const_iterator i = adjustments.begin()
    [all...]
  /external/icu4c/layout/
OpenTypeLayoutEngine.cpp 457 GlyphPositionAdjustments *adjustments = new GlyphPositionAdjustments(glyphCount); local
460 if (adjustments == NULL) {
467 // the adjustments array w/ new...
469 adjustments->setXPlacement(i, 0);
470 adjustments->setYPlacement(i, 0);
472 adjustments->setXAdvance(i, 0);
473 adjustments->setYAdvance(i, 0);
475 adjustments->setBaseOffset(i, -1);
481 fGPOSTable->process(glyphStorage, adjustments, reverse, fScriptTagV2, fLangSysTag, fGDEFTable, success, fFontInstance,
485 fGPOSTable->process(glyphStorage, adjustments, reverse, fScriptTag, fLangSysTag, fGDEFTable, success, fFontInstance
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 234 int32_t adjustments[]) const {
239 if (NULL == glyphs || NULL == adjustments) {
242 SkASSERT(NULL == adjustments);
244 return this->onGetKerningPairAdjustments(glyphs, count, adjustments);
268 int32_t adjustments[]) const {
  /external/skia/gm/
typeface.cpp 91 static void applyKerning(SkPoint pos[], const int32_t adjustments[], int count,
97 globalAdj += adjustments[i] * scale;
118 int32_t* adjustments = adjustmentStorage.get(); local
119 if (!face->getKerningPairAdjustments(glyphs, glyphCount, adjustments)) {
131 applyKerning(pos, adjustments, glyphCount, glyphPaint);
  /external/skia/src/core/
SkTypeface.cpp 234 int32_t adjustments[]) const {
239 if (NULL == glyphs || NULL == adjustments) {
242 SkASSERT(NULL == adjustments);
244 return this->onGetKerningPairAdjustments(glyphs, count, adjustments);
268 int32_t adjustments[]) const {
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.h 63 int32_t adjustments[]) const SK_OVERRIDE;
SkFontHost_FreeType.cpp 751 int count, int32_t adjustments[]) const {
765 adjustments[i] = delta.x;
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType_common.h 63 int32_t adjustments[]) const SK_OVERRIDE;
SkFontHost_FreeType.cpp 808 int count, int32_t adjustments[]) const {
822 adjustments[i] = delta.x;
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTypeface.h 229 * Given a run of glyphs, return the associated horizontal adjustments.
230 * Adjustments are in "design units", which are integers relative to the
241 * [count] valid glyph IDs, and the adjustments parameter must be
243 * [count-1] entries in the adjustments array will be set. If the method
244 * returns false, then no kerning should be applied, and the adjustments
249 int32_t adjustments[]) const;
328 int32_t adjustments[]) const;
  /external/skia/include/core/
SkTypeface.h 229 * Given a run of glyphs, return the associated horizontal adjustments.
230 * Adjustments are in "design units", which are integers relative to the
241 * [count] valid glyph IDs, and the adjustments parameter must be
243 * [count-1] entries in the adjustments array will be set. If the method
244 * returns false, then no kerning should be applied, and the adjustments
249 int32_t adjustments[]) const;
328 int32_t adjustments[]) const;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
utilities.js 338 adjustExpectations_: function(expectations, adjustments, start) {
341 for (var i = 0; Array.isArray(adjustments[start + i]); ++i) {
342 adjustment = adjustments[start + i];
344 if (adjustments[start + i].length != 1) {
346 expectations.push(adjustments[start + i]);
  /external/libvorbis/doc/
Vorbis_I_spec.tex 35 % well as tons of other neat stuff (line numbers, formatting adjustments, ...)
a1-encapsulation-ogg.tex 165 adjustments before needing to return any PCM data from synthesis,
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_loopfilter_neon.asm 262 ; outer tap adjustments
562 ; outer tap adjustments: ++filter1 >> 1
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_block_sse2.asm 111 ; outer tap adjustments

Completed in 1746 milliseconds

1 2