/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | StringUCharacterIterator.java | 173 * @param fillIn an array of chars to fill with the underlying UTF-16 code 176 * @return the number of code units added to fillIn, as a convenience 181 public int getText(char[] fillIn, int offset) argument 184 if (offset < 0 || offset + length > fillIn.length) { 187 m_text_.getChars(0, length, fillIn, offset);
|
H A D | CharacterIteratorWrapper.java | 102 public int getText(char[] fillIn, int offset){ argument 105 if(offset < 0 || offset + length > fillIn.length){ 110 fillIn[offset++] = ch;
|
H A D | ReplaceableUCharacterIterator.java | 183 public int getText(char[] fillIn, int offset){ argument 185 if(offset < 0 || offset + length > fillIn.length){ 188 replaceable.getChars(0,length,fillIn,offset);
|
H A D | UCharArrayIterator.java | 68 public int getText(char[] fillIn, int offset) { argument 70 System.arraycopy(text, start, fillIn, offset, len);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | StringUCharacterIterator.java | 171 * @param fillIn an array of chars to fill with the underlying UTF-16 code 174 * @return the number of code units added to fillIn, as a convenience 179 public int getText(char[] fillIn, int offset) argument 182 if (offset < 0 || offset + length > fillIn.length) { 185 m_text_.getChars(0, length, fillIn, offset);
|
H A D | CharacterIteratorWrapper.java | 100 public int getText(char[] fillIn, int offset){ argument 103 if(offset < 0 || offset + length > fillIn.length){ 108 fillIn[offset++] = ch;
|
H A D | ReplaceableUCharacterIterator.java | 181 public int getText(char[] fillIn, int offset){ argument 183 if(offset < 0 || offset + length > fillIn.length){ 186 replaceable.getChars(0,length,fillIn,offset);
|
H A D | UCharArrayIterator.java | 66 public int getText(char[] fillIn, int offset) { argument 68 System.arraycopy(text, start, fillIn, offset, len);
|
/external/icu/icu4c/source/common/ |
H A D | uscript.c | 95 UScriptCode* fillIn, 107 (fillIn == NULL ? capacity != 0 : capacity < 0)) { 117 return setOneCode(code, fillIn, capacity, err); 122 length = getCodesFromLocale(nameOrAbbrOrLocale, fillIn, capacity, err); 129 length = getCodesFromLocale(likely, fillIn, capacity, err); 138 return setOneCode(code, fillIn, capacity, err); 94 uscript_getCode(const char* nameOrAbbrOrLocale, UScriptCode* fillIn, int32_t capacity, UErrorCode* err) argument
|
H A D | uresimp.h | 121 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller. 128 UResourceBundle *fillIn, UErrorCode *status); 140 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller. 148 UResourceBundle *fillIn, UErrorCode *status); 190 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller. 201 UResourceBundle *fillIn,
|
H A D | uresbund.cpp | 1496 U_CAPI UResourceBundle* U_EXPORT2 ures_getNextResource(UResourceBundle *resB, UResourceBundle *fillIn, UErrorCode *status) { argument 1502 return fillIn; 1507 return fillIn; 1521 return ures_copyResb(fillIn, resB, status); 1529 return init_resb_result(&(resB->fResData), r, key, resB->fIndex, resB->fData, resB, 0, fillIn, status); 1536 return init_resb_result(&(resB->fResData), r, key, resB->fIndex, resB->fData, resB, 0, fillIn, status); 1539 return fillIn; 1543 return fillIn; 1546 U_CAPI UResourceBundle* U_EXPORT2 ures_getByIndex(const UResourceBundle *resB, int32_t indexR, UResourceBundle *fillIn, UErrorCode *status) { argument 1552 return fillIn; 1660 ures_findResource(const char* path, UResourceBundle *fillIn, UErrorCode *status) argument 1715 ures_findSubResource(const UResourceBundle *resB, char* path, UResourceBundle *fillIn, UErrorCode *status) argument 1800 ures_getByKeyWithFallback(const UResourceBundle *resB, const char* inKey, UResourceBundle *fillIn, UErrorCode *status) argument 2001 ures_getByKey(const UResourceBundle *resB, const char* inKey, UResourceBundle *fillIn, UErrorCode *status) argument [all...] |
H A D | utrie.h | 549 * Opaque definition, here only to make fillIn parameters possible 608 * @param fillIn a pointer to a UNewTrie structure to be initialized (will not be released), or 619 * @return a pointer to the initialized fillIn or the allocated and initialized new UNewTrie 622 utrie_open(UNewTrie *fillIn, 630 * @param fillIn like in utrie_open() 635 * @return a pointer to the initialized fillIn or the allocated and initialized new UNewTrie 638 utrie_clone(UNewTrie *fillIn, const UNewTrie *other, uint32_t *aliasData, int32_t aliasDataLength);
|
H A D | utrie.cpp | 47 utrie_open(UNewTrie *fillIn, argument 60 if(fillIn!=NULL) { 61 trie=fillIn; 69 trie->isAllocated= (UBool)(fillIn==NULL); 114 utrie_clone(UNewTrie *fillIn, const UNewTrie *other, uint32_t *aliasData, int32_t aliasDataCapacity) { argument 135 trie=utrie_open(fillIn, aliasData, aliasDataCapacity,
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
H A D | UCharacterIterator.java | 287 * @param fillIn an array of chars to fill with the underlying UTF-16 code 290 * @return the number of code units added to fillIn, as a convenience 294 public abstract int getText(char[] fillIn, int offset); argument 299 * @param fillIn an array of chars to fill with the underlying UTF-16 code 301 * @return the number of code units added to fillIn, as a convenience 305 public final int getText(char[] fillIn) { argument 306 return getText(fillIn, 0);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | UCharacterIterator.java | 306 * @param fillIn an array of chars to fill with the underlying UTF-16 code 309 * @return the number of code units added to fillIn, as a convenience 314 public abstract int getText(char[] fillIn, int offset); argument 319 * @param fillIn an array of chars to fill with the underlying UTF-16 code 321 * @return the number of code units added to fillIn, as a convenience 326 public final int getText(char[] fillIn) { argument 327 return getText(fillIn, 0);
|
/external/icu/icu4c/source/i18n/ |
H A D | utrans.cpp | 516 USet* fillIn, 518 utrans_ENTRY(status) fillIn; 520 if (fillIn == NULL) { 521 fillIn = uset_openEmpty(); 524 ((Transliterator*) trans)->handleGetSourceSet(*((UnicodeSet*)fillIn)); 526 ((Transliterator*) trans)->getSourceSet(*((UnicodeSet*)fillIn)); 528 return fillIn;
|
H A D | ulocdata.c | 101 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn, argument 127 if(fillIn != NULL) 128 uset_applyPattern(fillIn, exemplarChars, len, 131 fillIn = uset_openPatternOptions(exemplarChars, len, 134 return fillIn;
|
H A D | compactdecimalformat.cpp | 150 static UResourceBundle* tryGetDecimalFallback(const UResourceBundle* numberSystemResource, const char* style, UResourceBundle** fillIn, FallbackFlags flags, UErrorCode& status); 151 static UResourceBundle* tryGetByKeyWithFallback(const UResourceBundle* rb, const char* path, UResourceBundle** fillIn, FallbackFlags flags, UErrorCode& status); 602 static UResourceBundle* tryGetDecimalFallback(const UResourceBundle* numberSystemResource, const char* style, UResourceBundle** fillIn, FallbackFlags flags, UErrorCode& status) { argument 603 UResourceBundle* first = tryGetByKeyWithFallback(numberSystemResource, style, fillIn, flags, status); 604 UResourceBundle* second = tryGetByKeyWithFallback(first, gDecimalFormatTag, fillIn, flags, status); 605 if (fillIn == NULL) { 615 // (i.e "foo" but not "foo/bar"); If fillIn is NULL, caller must always call 616 // ures_close() on returned resource. See below for example when fillIn is 630 // UResourcebundle* fillIn = NULL; 631 // UResourceBundle* data = tryGetByKeyWithFallback(rb, "foo", &fillIn, NON_ROO 648 tryGetByKeyWithFallback(const UResourceBundle* rb, const char* path, UResourceBundle** fillIn, FallbackFlags flags, UErrorCode& status) argument [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
H A D | ulocdata.h | 142 * @param fillIn Pointer to a USet object to receive the 144 * contents of fillIn are lost. <em>If fillIn is NULL, 159 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to 165 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
|
H A D | utrans.h | 544 * @param fillIn Pointer to a USet object to receive the modifiable characters 545 * set. Previous contents of fillIn are lost. <em>If fillIn is 549 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to a 557 USet* fillIn,
|
/external/icu/icu4c/source/common/unicode/ |
H A D | ures.h | 333 * and usage model for fillIn parameters without knowing sizeof(UResourceBundle) 574 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller. 583 UResourceBundle *fillIn, 609 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller. 619 UResourceBundle *fillIn, 700 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller. 709 UResourceBundle *fillIn,
|
H A D | brkiter.h | 159 * @param fillIn A UText to be filled in. If NULL, a new UText will be 166 virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
|
H A D | rbbi.h | 384 * @param fillIn A UText to be filled in. If NULL, a new UText will be 391 virtual UText *getUText(UText *fillIn, UErrorCode &status) const;
|
H A D | uscript.h | 454 * @param fillIn the UScriptCode buffer to fill in the script code 461 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
|
/external/icu/icu4c/source/test/cintltst/ |
H A D | cucdapi.c | 454 UScriptCode fillIn[5] = {USCRIPT_INVALID_CODE}; local 457 len = uscript_getCode(expectedShort[i], fillIn, UPRV_LENGTHOF(fillIn), &status); 464 if(fillIn[0]!= (UScriptCode)(USCRIPT_BALINESE+i)){ 465 log_err("uscript_getCode did not return expected code for script %s. EXPECTED: %i GOT: %i\n", expectedShort[i], (USCRIPT_BALINESE+i), fillIn[0] );
|