HomeSort by relevance Sort by last modified time
    Searched defs:adjustments (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/base/strings/
utf_offset_string_conversions.cc 26 const Adjustments& adjustments,
28 if (!offsets_for_adjustment || adjustments.empty())
32 AdjustOffset(adjustments, &(*i));
36 void OffsetAdjuster::AdjustOffset(const Adjustments& adjustments,
41 for (Adjustments::const_iterator i = adjustments.begin();
42 i != adjustments.end(); ++i) {
56 const Adjustments& adjustments
240 OffsetAdjuster::Adjustments adjustments; local
254 OffsetAdjuster::Adjustments adjustments; local
    [all...]
utf_offset_string_conversions_unittest.cc 115 OffsetAdjuster::Adjustments adjustments; local
116 adjustments.push_back(OffsetAdjuster::Adjustment(3, 3, 1));
117 OffsetAdjuster::AdjustOffsets(adjustments, &offsets);
129 OffsetAdjuster::Adjustments adjustments; local
130 adjustments.push_back(OffsetAdjuster::Adjustment(0, 3, 1));
131 adjustments.push_back(OffsetAdjuster::Adjustment(4, 4, 2));
132 adjustments.push_back(OffsetAdjuster::Adjustment(10, 7, 4));
133 adjustments.push_back(OffsetAdjuster::Adjustment(20, 3, 1))
149 OffsetAdjuster::Adjustments adjustments; local
173 OffsetAdjuster::Adjustments adjustments; local
187 OffsetAdjuster::Adjustments adjustments; local
206 OffsetAdjuster::Adjustments adjustments; local
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.cc 248 base::OffsetAdjuster::Adjustments adjustments; local
251 NULL, &adjustments);
252 base::OffsetAdjuster::AdjustOffsets(adjustments, &offsets);
  /external/chromium_org/net/base/
escape_unittest.cc 127 base::OffsetAdjuster::Adjustments adjustments; local
129 url, UnescapeRule::SPACES, &adjustments);
414 base::OffsetAdjuster::Adjustments adjustments; local
416 adjust_cases[i].input, UnescapeRule::NORMAL, &adjustments);
417 base::OffsetAdjuster::AdjustOffset(adjustments, &offset);
net_util_icu.cc 368 base::OffsetAdjuster::Adjustments* adjustments) {
369 if (adjustments)
370 adjustments->clear();
398 if (converted_idn && adjustments) {
399 adjustments->push_back(base::OffsetAdjuster::Adjustment(
439 base::OffsetAdjuster::Adjustments* adjustments) {
444 // Format the underlying URL and record adjustments.
446 adjustments->clear()
450 new_parsed, prefix_end, adjustments)); local
641 base::OffsetAdjuster::Adjustments adjustments; local
    [all...]
  /external/chromium_org/third_party/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/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/chromium_org/components/bookmarks/browser/
bookmark_index.cc 214 base::OffsetAdjuster::Adjustments adjustments; local
216 CleanUpUrlForMatching(node->url(), languages_, &adjustments),
241 base::OffsetAdjuster::UnadjustOffsets(adjustments, &offsets);
  /external/icu/icu4c/source/layout/
OpenTypeLayoutEngine.cpp 463 GlyphPositionAdjustments *adjustments = new GlyphPositionAdjustments(glyphCount); local
466 if (adjustments == NULL) {
473 // the adjustments array w/ new...
475 adjustments->setXPlacement(i, 0);
476 adjustments->setYPlacement(i, 0);
478 adjustments->setXAdvance(i, 0);
479 adjustments->setYAdvance(i, 0);
481 adjustments->setBaseOffset(i, -1);
488 fGPOSTable->process(fGPOSTable, glyphStorage, adjustments, reverse, fScriptTagV2, fLangSysTag,
492 fGPOSTable->process(fGPOSTable, glyphStorage, adjustments, reverse, fScriptTag, fLangSysTag,
    [all...]

Completed in 3834 milliseconds