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

1 2

  /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.h 18 // string in response to various adjustments one might do to that string
32 typedef std::vector<Adjustment> Adjustments;
34 // Adjusts all offsets in |offsets_for_adjustment| to reflect the adjustments
35 // recorded in |adjustments|.
44 static void AdjustOffsets(const Adjustments& adjustments,
47 // Adjusts the single |offset| to reflect the adjustments recorded in
48 // |adjustments|.
49 static void AdjustOffset(const Adjustments& adjustments,
    [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/net/base/
escape.cc 124 // string. Fills in an |adjustments| parameter, if non-NULL, so it reflects
126 // character. The resulting |adjustments| will always be sorted by increasing
132 base::OffsetAdjuster::Adjustments* adjustments) {
133 if (adjustments)
134 adjustments->clear();
213 if (adjustments)
214 adjustments->push_back(base::OffsetAdjuster::Adjustment(i, 3, 1));
354 base::OffsetAdjuster::Adjustments* adjustments) {
    [all...]
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...]
escape.h 118 // be converted into a base::string16 and returned. |adjustments| provides
127 base::OffsetAdjuster::Adjustments* adjustments);
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.h 323 // This function is like those above except it takes |adjustments| rather
324 // than |offset[s]_for_adjustment|. |adjustments| will be set to reflect all
334 base::OffsetAdjuster::Adjustments* adjustments);
  /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...]
  /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/skia/src/core/
SkTypeface.cpp 246 int32_t adjustments[]) const {
251 if (NULL == glyphs || NULL == adjustments) {
254 SkASSERT(NULL == adjustments);
256 return this->onGetKerningPairAdjustments(glyphs, count, adjustments);
301 int32_t adjustments[]) const {
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.h 68 int32_t adjustments[]) const SK_OVERRIDE;
  /external/skia/src/ports/
SkFontHost_FreeType_common.h 62 int32_t adjustments[]) const SK_OVERRIDE;
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 245 int32_t adjustments[]) const {
250 if (NULL == glyphs || NULL == adjustments) {
253 SkASSERT(NULL == adjustments);
255 return this->onGetKerningPairAdjustments(glyphs, count, adjustments);
298 int32_t adjustments[]) const {
  /external/chromium_org/third_party/skia/include/core/
SkTypeface.h 214 * Given a run of glyphs, return the associated horizontal adjustments.
215 * Adjustments are in "design units", which are integers relative to the
226 * [count] valid glyph IDs, and the adjustments parameter must be
228 * [count-1] entries in the adjustments array will be set. If the method
229 * returns false, then no kerning should be applied, and the adjustments
234 int32_t adjustments[]) const;
313 int32_t adjustments[]) const;
  /external/skia/include/core/
SkTypeface.h 214 * Given a run of glyphs, return the associated horizontal adjustments.
215 * Adjustments are in "design units", which are integers relative to the
226 * [count] valid glyph IDs, and the adjustments parameter must be
228 * [count-1] entries in the adjustments array will be set. If the method
229 * returns false, then no kerning should be applied, and the adjustments
234 int32_t adjustments[]) const;
313 int32_t adjustments[]) const;
  /external/chromium_org/components/bookmarks/browser/
bookmark_utils.h 116 // result. |languages| is passed to net::FormatUrl(). |adjustments|, if
120 // |adjustments| to calculate the location of these offsets in the original
135 base::OffsetAdjuster::Adjustments* adjustments);
bookmark_index.cc 214 base::OffsetAdjuster::Adjustments adjustments; local
216 CleanUpUrlForMatching(node->url(), languages_, &adjustments),
241 base::OffsetAdjuster::UnadjustOffsets(adjustments, &offsets);
bookmark_utils.cc 428 base::OffsetAdjuster::Adjustments* adjustments) {
429 base::OffsetAdjuster::Adjustments tmp_adjustments;
434 NULL, NULL, adjustments ? adjustments : &tmp_adjustments));
  /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/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/chromium_org/chrome/browser/history/
scored_history_match.cc 70 base::OffsetAdjuster::Adjustments adjustments;
72 bookmarks::CleanUpUrlForMatching(gurl, languages, &adjustments);
216 base::OffsetAdjuster::UnadjustOffsets(adjustments, &offsets);
  /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,

Completed in 837 milliseconds

1 2