HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 676 - 700 of 1097) sorted by null

<<21222324252627282930>>

  /external/icu/icu4c/source/common/
uniset_props.cpp 53 // *** same as in uniset.cpp ! ***
91 * Delimiter string used in patterns to close a category reference:
136 Inclusion &in = gInclusions[i]; local
137 delete in.fSet;
138 in.fSet = NULL;
139 in.fInitOnce.reset();
326 * @param pattern a string specifying what characters are in the set
381 // Need to build the pattern in a temporary string because
388 // syntaxError(chars, "Extra chars in variable value");
396 * Return true if the given position, in the given pattern, appear
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 12 * contributed in 1999.
194 zero, tags and aliases for each converter are printed too, in the format
216 in non-canon mode). But since we do not know at this
232 single converter to print but in canon mode, hence we need to
233 get to it in order to print everything. */
426 // and include it in the chunk
428 // do not include FF or VT in case they are part of a paragraph
461 return -1; // LF may be in the next chunk
463 ++u; // include the LF in this chunk
489 // the fromUnicode side of the converter must be in its initial stat
510 const UChar *in; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 122 /*These two are broken in Unicode 2.1.2 but fixed in 2.1.5 and later*/
184 log_err("ERROR in unorm_normalize(%s)[%d]: "
194 log_data_err("ERROR in unorm_normalize(%s/NUL) at %s: %s - (Are you missing data?)\n",
201 log_data_err("ERROR in unorm_normalize(%s/srcLength) at %s: %s - (Are you missing data?)\n",
234 log_err("ERROR in decomposition at index = %d. EXPECTED: %s , GOT: %s\n", index, expected,
342 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
348 log_err("ERROR in NFC quick check at U+%04x\n", CPNFC[count]);
354 log_err("ERROR in NFKD quick check at U+%04x\n", CPNFKD[count]);
360 log_err("ERROR in NFKC quick check at U+%04x\n", CPNFKC[count])
706 static const UChar in[]={ 0x68, 0xe4 }; local
1036 const UChar *expect, *outLimit, *in; local
1622 static const UChar in[]={ local
    [all...]
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 21 * is written in such a way that a 2.0 reader will be able to use it,
107 uint16_t totalAliasCount; /* Total aliases in this column */
118 uint16_t totalAliasCount; /* Total aliases in this row */
157 parseFile(FileStream *in);
222 FileStream *in; local
235 "error in command line argument \"%s\"\n",
283 in=T_FileStream_open(path, "r");
284 if(in==NULL) {
288 parseFile(in);
289 T_FileStream_close(in);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java 31 // This is a hack to handle a bug in the BonjourConformanceTest
260 DNSIncoming in = new DNSIncoming(this.getFlags(), this.getId(), this.isMulticast(), this._packet, this._receivedTime); local
261 in._senderUDPPayload = this._senderUDPPayload;
262 in._questions.addAll(this._questions);
263 in._answers.addAll(this._answers);
264 in._authoritativeAnswers.addAll(this._authoritativeAnswers);
265 in._additionals.addAll(this._additionals);
266 return in;
323 // This is a hack to handle a bug in the BonjourConformanceTest