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

1 2 3 4 56 7 8 91011>>

  /external/icu4c/samples/ustring/
ustring.cpp 113 Codepoint at offset 0: U+0061
114 Codepoint at offset 1: U+10000
115 Codepoint at offset 3: U+10ffff
116 Codepoint at offset 5: U+0062
118 printf("Codepoint at offset %d: U+", i);
133 Codepoint at offset 5: U+0062
134 Codepoint at offset 3: U+10ffff
135 Codepoint at offset 2: U+dc00 -- unpaired surrogate because lead surr. overwritten
136 Codepoint at offset 1: U+0062 -- by this BMP code point
137 Codepoint at offset 0: U+006
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlregexp.c 190 int codepoint; member in struct:_xmlRegAtom
356 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
357 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
703 * @start: the start codepoint
704 * @end: the end codepoint
1097 fprintf(output, "char %c\n", atom->codepoint);
1140 fprintf(output, "char %c ", trans->atom->codepoint);
2106 int codepoint; local
3177 int ret, codepoint = 0, len, deter; local
5234 int codepoint, len; local
    [all...]
  /external/libxml2/
xmlregexp.c 190 int codepoint; member in struct:_xmlRegAtom
356 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
357 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
703 * @start: the start codepoint
704 * @end: the end codepoint
1097 fprintf(output, "char %c\n", atom->codepoint);
1140 fprintf(output, "char %c ", trans->atom->codepoint);
2106 int codepoint; local
3177 int ret, codepoint = 0, len, deter; local
5234 int codepoint, len; local
    [all...]
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 528 codepoint = long(codepointstr[1:], 16) variable
533 codepoint = keysymunicodedatabase[codepointstr] variable
536 print "Invalid codepoint at line %(linenum_compose)d in %(filename)s:\
573 if codepoint < 0xFFFF:
612 # print 'Base: %(base)s [%(basechar)s], produces [%(unichar)s] (0x%(codepoint)04X)' \
613 # % { "base": base, "basechar": unichr(basechar), "unichar": unichar, "codepoint": codepoint },
622 original_sequence.append(codepoint)
633 sequence.append(codepoint)
845 def redecompose(codepoint)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gpos-table.hh 406 mark_anchor.get_anchor (c->font, buffer->cur().codepoint, &mark_x, &mark_y);
407 glyph_anchor.get_anchor (c->font, buffer->info[glyph_pos].codepoint, &base_x, &base_y);
444 unsigned int index = (this+coverage).get_coverage (buffer->cur().codepoint);
490 unsigned int index = (this+coverage).get_coverage (buffer->cur().codepoint);
604 if (buffer->info[pos].codepoint == record->secondGlyph)
670 unsigned int index = (this+coverage).get_coverage (buffer->cur().codepoint);
741 unsigned int index = (this+coverage).get_coverage (buffer->cur().codepoint);
750 unsigned int klass1 = (this+classDef1).get_class (buffer->cur().codepoint);
751 unsigned int klass2 = (this+classDef2).get_class (buffer->info[skippy_iter.idx].codepoint);
892 const EntryExitRecord &this_record = entryExitRecord[(this+coverage).get_coverage (buffer->cur().codepoint)];
    [all...]
hb-buffer.cc 214 hb_buffer_t::add (hb_codepoint_t codepoint,
224 glyph->codepoint = codepoint;
323 pinfo->codepoint = glyph_data[i];
337 out_info[out_len].codepoint = glyph_index;
407 out_info[out_len].codepoint = glyph_index;
565 hb_script_t script = unicode->script (info[i].codepoint);
1106 * @codepoint:
1115 hb_codepoint_t codepoint,
1118 buffer->add (codepoint, cluster)
    [all...]
hb-buffer.h 45 hb_codepoint_t codepoint; member in struct:hb_glyph_info_t
219 hb_codepoint_t codepoint,
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryInputCapsule.java     [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.h 35 // codepoint values. It has default, copy, and assignment constructors.
37 // iterators, or from a single codepoint.
44 // operator (*) returns a codepoint (char32). The iterator is a
152 // Add a codepoint to the end of the text.
153 // If the codepoint is not interchange-valid, add a space instead
155 void push_back(char32 codepoint);
229 // Store the UTF-8 encoding of the current codepoint into buf,
297 // structurally invalid byte and each interchange-invalid codepoint
394 // space. Each codepoint that is interchange-invalid will also be
395 // replaced with a space, even if the codepoint was represented with
    [all...]
unilib.cc 55 // by chartorune to indicate error. Luckily, the real codepoint is size 3
  /external/clang/lib/AST/
CommentLexer.cpp 33 unsigned CodePoint) {
36 if (llvm::ConvertCodePointToUTF8(CodePoint, ResolvedPtr))
62 unsigned CodePoint = 0;
65 CodePoint *= 10;
66 CodePoint += Name[i] - '0';
68 return convertCodePointToUTF8(Allocator, CodePoint);
72 unsigned CodePoint = 0;
74 CodePoint *= 16;
77 CodePoint += llvm::hexDigitValue(C);
79 return convertCodePointToUTF8(Allocator, CodePoint);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java     [all...]
  /frameworks/base/core/java/android/text/
BidiFormatter.java 546 * encountered a supplementary codepoint, this contains a char that is not a valid
547 * codepoint. This is ok, because this member is only used to detect some well-known ASCII
    [all...]
  /frameworks/support/v4/java/android/support/v4/text/
BidiFormatter.java 536 * encountered a supplementary codepoint, this contains a char that is not a valid
537 * codepoint. This is ok, because this member is only used to detect some well-known ASCII
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/linux/
WebSandboxSupport.h 48 // character: a UTF-32 codepoint
  /external/icu4c/test/cintltst/
utf16tst.c 84 static uint32_t codepoint[]={ local
99 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
100 UChar32 c=codepoint[i+1];
101 if(UTF16_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U16_LENGTH(c) != (uint16_t)codepoint[i]){
102 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF16_CHAR_LENGTH(c));
106 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
133 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
ucnv_cb.h 49 * codePoint = "B" [the unassigned codepoint]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
stringprintf_unittest.cc 102 // returns error given an invalid codepoint. Other versions
103 // (e.g. eglibc-2.15, aka pre-GRTEv3) emit the codepoint verbatim.
  /external/harfbuzz_ng/src/
hb-buffer.h 45 hb_codepoint_t codepoint; member in struct:hb_glyph_info_t
219 hb_codepoint_t codepoint,
hb-icu-le.cc 143 chars[i] = buffer->info[i].codepoint;
189 info[j].codepoint = glyphs[i];
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/icu4c/common/unicode/
ucnv_cb.h 49 * codePoint = "B" [the unassigned codepoint]
  /external/iptables/extensions/
libipt_ECN.c 32 " --ecn-ip-ect Set the IPv4 ECT codepoint (0 to 3)\n"
102 printf(" ECT codepoint=%u", einfo->ip_ect);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h 75 #define IPV4_TOS_DSCP_MASK 0xfc /* DiffServ codepoint mask */
76 #define IPV4_TOS_DSCP_SHIFT 2 /* DiffServ codepoint shift */
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_reading_helper.h 125 AK_FORCE_INLINE bool isMatchedCodePoint(const int index, const int codePoint) const {
126 return mMergedNodeCodePoints[index] == codePoint;

Completed in 1731 milliseconds

1 2 3 4 56 7 8 91011>>