HomeSort by relevance Sort by last modified time
    Searched full:codepoint (Results 151 - 175 of 380) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
htmlentitydefs.py 3 # maps the HTML entity name to the Unicode codepoint
259 # maps the Unicode codepoint to the HTML entity name
266 for (name, codepoint) in name2codepoint.iteritems():
267 codepoint2name[codepoint] = name
268 if codepoint <= 0xff:
269 entitydefs[name] = chr(codepoint)
271 entitydefs[name] = '&#%d;' % codepoint
273 del name, codepoint
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
htmlentitydefs.py 3 # maps the HTML entity name to the Unicode codepoint
259 # maps the Unicode codepoint to the HTML entity name
266 for (name, codepoint) in name2codepoint.iteritems():
267 codepoint2name[codepoint] = name
268 if codepoint <= 0xff:
269 entitydefs[name] = chr(codepoint)
271 entitydefs[name] = '&#%d;' % codepoint
273 del name, codepoint
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-fallback.cc 173 combining_class = recategorize_combining_class (buffer->info[i].codepoint, combining_class);
201 if (!font->get_glyph_extents (buffer->info[i].codepoint,
307 if (!font->get_glyph_extents (buffer->info[base].codepoint,
456 font->get_glyph_kerning_for_direction (info[idx].codepoint,
457 info[skippy_iter.idx].codepoint,
hb-ot-shape-complex-sea.cc 140 hb_codepoint_t u = info.codepoint;
295 dottedcircle.codepoint = 0x25CC;
297 dottedcircle.codepoint = dottedcircle_glyph;
test.cc 121 info->codepoint,
hb-graphite2.cc 251 chars[i] = buffer->info[i].codepoint;
339 info->codepoint = gids[clusters[i].base_glyph + j];
hb-unicode.h 252 * @u: codepoint to decompose
253 * @decomposed: address of codepoint array (of length %HB_UNICODE_MAX_DECOMPOSITION_LEN) to write decomposition into
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 405 mark_anchor.get_anchor (c->font, c->buffer->cur().codepoint, &mark_x, &mark_y);
406 glyph_anchor.get_anchor (c->font, c->buffer->info[glyph_pos].codepoint, &base_x, &base_y);
442 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
487 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
600 if (c->buffer->info[pos].codepoint == record->secondGlyph)
665 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
737 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint);
746 unsigned int klass1 = (this+classDef1).get_class (c->buffer->cur().codepoint);
747 unsigned int klass2 = (this+classDef2).get_class (c->buffer->info[skippy_iter.idx].codepoint);
887 const EntryExitRecord &this_record = entryExitRecord[(this+coverage).get_coverage (c->buffer->cur().codepoint)];
    [all...]
hb-ot-shape-complex-sea.cc 140 hb_codepoint_t u = info.codepoint;
295 dottedcircle.codepoint = 0x25CC;
297 dottedcircle.codepoint = dottedcircle_glyph;
hb-buffer-deserialize-text.rl 58 &info.codepoint))
test.cc 117 info->codepoint,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sgmllib.py 78 def convert_codepoint(self, codepoint):
79 self.append(("codepoint", "convert", codepoint))
80 EventCollector.convert_codepoint(self, codepoint)
285 ('codepoint', 'convert', 42),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sgmllib.py 78 def convert_codepoint(self, codepoint):
79 self.append(("codepoint", "convert", codepoint))
80 EventCollector.convert_codepoint(self, codepoint)
285 ('codepoint', 'convert', 42),
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
StringUtil.java     [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 48 CodePoint, // Move by a single code point.
153 Position previous(PositionMoveType = CodePoint) const;
154 Position next(PositionMoveType = CodePoint) const;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 443 int codePoint =
447 return codePoint;
459 int codePoint = ch;
460 return codePoint;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodec.h 78 static int getUnencodableReplacement(unsigned codePoint, UnencodableHandling, UnencodableReplacementArray);
  /external/clang/lib/Format/
Encoding.h 61 /// codepoint and starting with FirstChar in the specified Encoding.
  /external/harfbuzz_ng/test/api/
test-shape.c 126 g_assert_cmphex (glyphs[i].codepoint, ==, output_glyphs[i]);
  /external/iptables/extensions/
libipt_ecn.c 26 "[!] --ecn-ip-ect [0..3] Match ECN codepoint in IPv4 header\n");
libxt_dscp.c 34 "[!] --dscp value Match DSCP codepoint with numerical value\n"
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf8tst.c 118 static const uint32_t codepoint[]={ local
137 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
138 UChar32 c=codepoint[i+1];
139 if(UTF8_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U8_LENGTH(c) != (uint16_t)codepoint[i]){
140 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF8_CHAR_LENGTH(c));
144 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
171 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/utfperf/
utfperf.cpp 109 UChar32 codePoint,
115 UCNV_FROM_U_CALLBACK_SUBSTITUTE(context, fromUArgs, codeUnits, length, codePoint, reason, pErrorCode);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucbuf.h 87 * code point (\\Uxxxxxxxx) then a UTF-32 codepoint is returned
141 * Rewinds the buffer by one codepoint. Does not rewind over escaped characters.

Completed in 1123 milliseconds

1 2 3 4 5 67 8 91011>>