Searched defs:adjustments (Results 1 - 11 of 11) sorted by relevance

/external/chromium/net/base/
H A Descape.h146 explicit AdjustEncodingOffset(const Adjustments& adjustments);
149 const Adjustments& adjustments; member in struct:AdjustEncodingOffset
H A Descape_unittest.cc411 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));
H A Descape.cc120 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) argument
384 : adjustments(adjustments) {}
391 for (Adjustments::const_iterator i = adjustments.begin();
392 i != adjustments.end(); ++i) {
H A Dnet_util.cc930 // Apply offset adjustments.
1019 AdjustOffset::Adjustments adjustments; local
1023 adjustments.push_back(AdjustOffset::Adjustment(
1032 adjustments.push_back(AdjustOffset::Adjustment(
1040 AdjustOffset(adjustments));
1100 // Apply offset adjustments.
1110 AdjustOffset::Adjustments adjustments; local
1111 adjustments.push_back(AdjustOffset::Adjustment(0, kHTTPSize, 0));
1114 AdjustOffset(adjustments));
1292 AdjustOffset::Adjustments adjustments; local
[all...]
/external/chromium_org/net/base/
H A Descape.h145 explicit AdjustEncodingOffset(const Adjustments& adjustments);
148 const Adjustments& adjustments; member in struct:net::internal::AdjustEncodingOffset
H A Descape_unittest.cc403 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));
H A Descape.cc120 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) argument
367 : adjustments(adjustments) {}
374 for (Adjustments::const_iterator i = adjustments.begin();
375 i != adjustments.end(); ++i) {
/external/chromium/base/
H A Dutf_offset_string_conversions.cc36 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) argument
222 : adjustments_(adjustments) {}
H A Dutf_offset_string_conversions_unittest.cc122 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));
151 adjustments
[all...]
/external/skia/gm/
H A Dtypeface.cpp91 static void applyKerning(SkPoint pos[], const int32_t adjustments[], int count, argument
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/icu4c/layout/
H A DOpenTypeLayoutEngine.cpp457 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, revers
[all...]

Completed in 608 milliseconds