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

1 2 3 45 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 189 int codePoint = Encodings.toCodePoint(ch1);
190 if (codePoint < m_explFirst) {
201 codePoint);
203 } else if (m_explLast < codePoint) {
214 codePoint);
218 final int idx = codePoint - m_explFirst;
236 int codePoint = Encodings.toCodePoint(high,low);
237 if (codePoint < m_explFirst) {
248 codePoint);
250 } else if (m_explLast < codePoint) {
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node.h 389 // Whether the current codepoint can be an intentional omission, in which case the traversal
411 // Note: Returned codepoint may be a digraph codepoint if the node is in a composite glyph.
413 const int codePoint = mDicNodeProperties.getNodeCodePoint();
417 return codePoint;
419 return DigraphUtils::getDigraphCodePointForIndex(codePoint, digraphIndex);
548 const int codePoint = mDicNodeState.mDicNodeStateOutput.getCodePointAt(i);
550 if (codePoint != rightCodePoint) {
551 return rightCodePoint > codePoint;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 202 protected void type(final int codePoint) {
209 //mLatinIME.onPressKey(codePoint, 0 /* repeatCount */, true /* isSinglePointer */);
210 final Key key = mKeyboard.getKey(codePoint);
214 mLatinIME.onCodeInput(codePoint, x, y);
217 mLatinIME.onCodeInput(codePoint, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE);
218 //mLatinIME.onReleaseKey(codePoint, false /* withSliding */);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecICU.cpp 406 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err)
412 int entityLen = TextCodec::getUnencodableReplacement(codePoint, URLEncodedEntitiesForUnencodables, entity);
415 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err);
420 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err)
423 if (reason == UCNV_UNASSIGNED && (outChar = fallbackForGBK(codePoint))) {
429 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err);
434 UChar32 codePoint, UConverterCallbackReason reason, UErrorCode* err)
437 if (UChar outChar = fallbackForGBK(codePoint)) {
443 urlEscapedEntityCallback(context, fromUArgs, codeUnits, length, codePoint, reason, err);
446 UCNV_FROM_U_CALLBACK_ESCAPE(context, fromUArgs, codeUnits, length, codePoint, reason, err)
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
ucnv_err.h 166 UCNV_IRREGULAR = 2, /**< The codepoint is not a regular sequence in
229 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
239 UChar32 codePoint,
279 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
290 UChar32 codePoint,
308 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
320 UChar32 codePoint,
    [all...]
uscript.h 269 * Gets the script code associated with the given codepoint.
271 * @param codepoint UChar32 codepoint
273 * @return The UScriptCode, or 0 if codepoint is invalid
277 uscript_getScript(UChar32 codepoint, UErrorCode *err);
  /external/icu4c/common/unicode/
ucnv_err.h 166 UCNV_IRREGULAR = 2, /**< The codepoint is not a regular sequence in
229 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
239 UChar32 codePoint,
279 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
290 UChar32 codePoint,
308 * @param codePoint Single UChar32 (UTF-32) containing the concerend Unicode codepoint.
320 UChar32 codePoint,
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 511 int codepoint = str.codePointAt(i); local
512 if (!((lowerAlphabetFirst <= codepoint && codepoint < lowerAlphabetAfterLast) ||
513 (upperAlphabetFirst <= codepoint && codepoint < upperAlphabetAfterLast) ||
514 (digitFirst <= codepoint && codepoint < digitAfterLast) ||
515 (codepoint == hyphen))) {
613 final int codePoint = value.codePointAt(i);
614 if (codePoint < asciiFirst || codePoint == '"')
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
citertst.c 227 UChar codepoint; local
237 for (codepoint = 1; codepoint < 0xFFFE;)
241 while (codepoint % 0xFF != 0)
243 if (u_isdefined(codepoint))
244 *(test ++) = codepoint;
245 codepoint ++;
248 if (u_isdefined(codepoint))
249 *(test ++) = codepoint;
251 if (codepoint != 0xFFFF
293 UChar codepoint; local
    [all...]
utf16tst.c 82 static uint32_t codepoint[]={ local
97 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
98 UChar32 c=codepoint[i+1];
99 if(UTF16_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U16_LENGTH(c) != (uint16_t)codepoint[i]){
100 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF16_CHAR_LENGTH(c));
104 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
131 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
  /external/icu4c/test/cintltst/
citertst.c 227 UChar codepoint; local
237 for (codepoint = 1; codepoint < 0xFFFE;)
241 while (codepoint % 0xFF != 0)
243 if (u_isdefined(codepoint))
244 *(test ++) = codepoint;
245 codepoint ++;
248 if (u_isdefined(codepoint))
249 *(test ++) = codepoint;
251 if (codepoint != 0xFFFF
293 UChar codepoint; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
testidn.cpp 52 compareMapping(uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
226 * the source codepoint is copied to the destination
325 compareMapping(uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
328 UTRIE_GET16(idnTrie,codepoint, result);
340 pTestIDNA->errln( "Did not get the assigned type for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint, USPREP_MAP, type);
393 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
394 pTestIDNA->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
unicodestring.cc 49 int UnicodeString::indexOf(char32 codepoint) const {
53 if (*it == codepoint) {
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 58 &info.codepoint))
62 action parse_gid { if (!parse_uint (tok, p, &info.codepoint)) return false; }
hb-buffer-serialize.cc 93 hb_font_glyph_to_string (font, info[i].codepoint, g, sizeof (g));
103 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint);
160 hb_font_glyph_to_string (font, info[i].codepoint, p, 128);
164 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint);
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,
293 if (!font->get_glyph_extents (buffer->info[base].codepoint,
436 font->get_glyph_kerning_for_direction (buffer->info[buffer->idx].codepoint,
437 buffer->info[skippy_iter.idx].codepoint,
hb-buffer.cc 200 hb_buffer_t::add (hb_codepoint_t codepoint,
210 glyph->codepoint = codepoint;
309 pinfo->codepoint = glyph_data[i];
323 out_info[out_len].codepoint = glyph_index;
355 out_info[out_len].codepoint = glyph_index;
513 hb_script_t script = unicode->script (info[i].codepoint);
823 hb_codepoint_t codepoint,
826 buffer->add (codepoint, cluster);
1006 return (int) pb->codepoint - (int) pa->codepoint
    [all...]
  /external/icu4c/test/intltest/
testidn.cpp 53 compareMapping(uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
227 * the source codepoint is copied to the destination
326 compareMapping(uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
329 UTRIE_GET16(idnTrie,codepoint, result);
341 pTestIDNA->errln( "Did not get the assigned type for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint, USPREP_MAP, type);
394 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
395 pTestIDNA->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.h 86 AK_FORCE_INLINE bool isCodePointOnKeyboard(const int codePoint) const {
87 return getKeyIndexOf(codePoint) != NOT_AN_INDEX;
proximity_info_state.h 150 float getPointToKeyLength(const int inputIndex, const int codePoint) const;
152 ProximityType getProximityType(const int index, const int codePoint,
155 ProximityType getProximityTypeG(const int index, const int codePoint) const;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-serialize.cc 123 hb_font_glyph_to_string (font, info[i].codepoint, g, sizeof (g));
133 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint));
190 hb_font_glyph_to_string (font, info[i].codepoint, p, 128);
194 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint));
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzFaceSkia.cpp 66 static void SkiaGetGlyphWidthAndExtents(SkPaint* paint, hb_codepoint_t codepoint, hb_position_t* width, hb_glyph_extents_t* extents)
68 ASSERT(codepoint <= 0xFFFF);
73 uint16_t glyph = codepoint;
  /external/clang/include/clang/AST/
CommentHTMLNamedCharacterReferences.td 2 class NCR<string spelling, int codePoint> {
4 int CodePoint = codePoint;
  /external/harfbuzz_ng/contrib/python/lib/
harfbuzz.pyx 49 hb_codepoint_t codepoint
78 void hb_buffer_add_glyph(hb_buffer_t *buffer, hb_codepoint_t codepoint, hb_mask_t mask, unsigned int cluster)
160 temp = glyphinfo(infos[i].codepoint, infos[i].cluster, (positions[i].x_advance / scale, positions[i].y_advance / scale), (positions[i].x_offset / scale, positions[i].y_offset / scale), positions[i].var.u32)
  /external/icu4c/extra/uconv/
uconv.1.in 329 are the hexadecimal values of the Unicode codepoint.
340 is the hexadecimal value of the Unicode codepoint.
347 is the decimal value of the Unicode codepoint.
354 is the hexadecimal value of the Unicode codepoint.
357 This is the format universally used to denote a Unicode codepoint in

Completed in 628 milliseconds

1 2 3 45 6 7 8 91011>>