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

1 2 3

  /external/icu/icu4c/source/common/
charstr.h 39 class U_COMMON_API CharString : public UMemory {
41 CharString() : len(0) { buffer[0]=0; }
42 CharString(const StringPiece &s, UErrorCode &errorCode) : len(0) {
46 CharString(const CharString &s, UErrorCode &errorCode) : len(0) {
50 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) {
54 ~CharString() {}
58 * CharString does not support the standard copy constructor nor
62 CharString &copyFrom(const CharString &other, UErrorCode &errorCode)
    [all...]
charstr.cpp 23 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) {
31 int32_t CharString::lastIndexOf(char c) const {
40 CharString &CharString::truncate(int32_t newLength) {
50 CharString &CharString::append(char c, UErrorCode &errorCode) {
58 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode)
    [all...]
cstr.h 48 CharString s;
pluralmap.cpp 28 CharString cCategory;
bytestriebuilder.cpp 38 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode);
40 StringPiece getString(const CharString &strings) const {
52 int32_t getStringLength(const CharString &strings) const {
62 char charAt(int32_t index, const CharString &strings) const { return data(strings)[index]; }
66 int32_t compareStringTo(const BytesTrieElement &o, const CharString &strings) const;
69 const char *data(const CharString &strings) const {
90 CharString &strings, UErrorCode &errorCode) {
112 BytesTrieElement::compareStringTo(const BytesTrieElement &other, const CharString &strings) const {
133 strings=new CharString();
182 const CharString *strings=static_cast<const CharString *>(context)
    [all...]
brkeng.cpp 255 CharString dictnbuf;
256 CharString ext;
bytestrieiterator.cpp 36 // via the CharString and UVector32 implementations, so this additional
38 str_=new CharString();
54 str_=new CharString();
udata.cpp 417 CharString itemPath; /* path passed in with item name */
418 CharString pathBuffer; /* output path for this it'ion */
419 CharString packageStub; /* example: "/icudt28b". Will ignore that leaf in set paths. */
    [all...]
locutil.cpp 227 CharString cbundleID;
icuplug.cpp 725 CharString plugin_dir;
747 CharString pluginFile;
  /external/icu/icu4c/source/i18n/
digitlst.h 53 class CharString;
213 void getDecimal(CharString &str, UErrorCode &status);
390 * Appends the digits in this object to a CharString.
393 void appendDigitsTo(CharString &str, UErrorCode &status) const;
visibledigits.h 72 CharString fDigits;
fmtable.cpp 262 fDecimalStr = new CharString(*source.fDecimalStr, status);
702 CharString *decimalStr = internalGetCharString(status);
710 CharString *Formattable::internalGetCharString(UErrorCode &status) {
741 fDecimalStr = new CharString;
805 // CharString automatically adds the nul.
811 dnum->set(CharString(numberString, status).toStringPiece(), status);
1023 CharString *charString = obj->internalGetCharString(*status);
1027 if(charString == NULL) {
1032 *len = charString->length()
    [all...]
digitlst.cpp 596 void DigitList::getDecimal(CharString &str, UErrorCode &status) {
998 DigitList::appendDigitsTo(CharString &str, UErrorCode &status) const {
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 33 class CharString;
670 * Internal function to return the CharString pointer.
672 * @return pointer to the CharString - may become invalid if the object is modified
675 CharString *internalGetCharString(UErrorCode &status);
705 CharString *fDecimalStr;
  /external/icu/icu4c/source/common/unicode/
bytestriebuilder.h 31 class CharString;
167 CharString *strings; // Pointer not object so we need not #include internal charstr.h.
bytestrie.h 32 class CharString;
327 CharString *str_;
  /external/icu/icu4c/source/test/intltest/
numberformattesttuple.cpp 76 CharString cstr;
117 CharString localeStr;
181 CharString buffer;
406 CharString buffer;
itutil.cpp 320 LocalPointer<CharString> cs(new CharString("some chars", errorCode), errorCode);
326 cs.adoptInsteadAndCheckErrorCode(new CharString("different chars", errorCode), errorCode);
333 cs.adoptInsteadAndCheckErrorCode(new CharString("unused", errorCode), errorCode);
349 LocalPointer<CharString> null(NULL, errorCode);
strtest.cpp 481 "This is a long string that is meant to cause reallocation of the internal buffer of CharString.";
482 CharString chStr(longStr, errorCode);
484 errln("CharString(longStr) failed.");
486 CharString test("Test", errorCode);
487 CharString copy(test,errorCode);
490 errln("CharString.copyFrom() failed.");
500 errln("CharString(longStr).append(substring of self).append(self) failed.");
504 errln("CharString.clear().append(abc).append(defghij, 3) failed.");
507 "This is a long string that is meant to cause reallocation of the internal buffer of CharString."),
512 errln("CharString.appendInvariantChars(longStr) failed.")
    [all...]
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 82 CharString filename(perf.getSourceDir(), errorCode);
171 CharString itemNames;
319 CharString itemNames;
490 CharString &str, UErrorCode &errorCode) {
510 CharString str;
  /external/icu/icu4c/source/tools/genrb/
derb.cpp 187 icu::CharString locale;
202 icu::CharString infile;
254 icu::CharString thefile;
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 159 void transform(const UnicodeString &word, CharString &buf, UErrorCode &errorCode) {
194 CharString buf;
  /external/icu/icu4c/source/tools/toolutil/
ppucd.cpp 272 CharString pBuffer;
536 CharString scString;
  /external/icu/icu4c/source/tools/gennorm2/
gennorm2.cpp 157 CharString filename(options[SOURCEDIR].value, errorCode);

Completed in 948 milliseconds

1 2 3