Searched defs:fillIn (Results 1 - 25 of 29) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DReplaceableUCharacterIterator.java194 public int getText(char[] fillIn, int offset){ argument
196 if(offset < 0 || offset + length > fillIn.length){
199 replaceable.getChars(0,length,fillIn,offset);
H A DUCharArrayIterator.java77 public int getText(char[] fillIn, int offset) { argument
79 System.arraycopy(text, start, fillIn, offset, len);
H A DCharacterIteratorWrapper.java112 public int getText(char[] fillIn, int offset){ argument
115 if(offset < 0 || offset + length > fillIn.length){
120 fillIn[offset++] = ch;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DReplaceableUCharacterIterator.java192 public int getText(char[] fillIn, int offset){ argument
194 if(offset < 0 || offset + length > fillIn.length){
197 replaceable.getChars(0,length,fillIn,offset);
H A DUCharArrayIterator.java75 public int getText(char[] fillIn, int offset) { argument
77 System.arraycopy(text, start, fillIn, offset, len);
H A DCharacterIteratorWrapper.java110 public int getText(char[] fillIn, int offset){ argument
113 if(offset < 0 || offset + length > fillIn.length){
118 fillIn[offset++] = ch;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUCharacterIterator.java288 * @param fillIn
292 * @return the number of code units added to fillIn, as a convenience
296 public abstract int getText(char[] fillIn, int offset); argument
301 * @param fillIn
303 * @return the number of code units added to fillIn, as a convenience
307 public final int getText(char[] fillIn) { argument
308 return getText(fillIn, 0);
H A DNormalizer.java1818 * @param fillIn the char buffer to fill the UTF-16 units.
1827 public int getText(char[] fillIn) { argument
1828 return text.getText(fillIn);
/external/icu/icu4c/source/common/
H A Duscript.cpp97 UScriptCode* fillIn,
109 (fillIn == NULL ? capacity != 0 : capacity < 0)) {
119 return setOneCode(code, fillIn, capacity, err);
124 length = getCodesFromLocale(nameOrAbbrOrLocale, fillIn, capacity, err);
131 length = getCodesFromLocale(likely, fillIn, capacity, err);
140 return setOneCode(code, fillIn, capacity, err);
96 uscript_getCode(const char* nameOrAbbrOrLocale, UScriptCode* fillIn, int32_t capacity, UErrorCode* err) argument
H A Dutrie.cpp49 utrie_open(UNewTrie *fillIn, argument
62 if(fillIn!=NULL) {
63 trie=fillIn;
71 trie->isAllocated= (UBool)(fillIn==NULL);
116 utrie_clone(UNewTrie *fillIn, const UNewTrie *other, uint32_t *aliasData, int32_t aliasDataCapacity) { argument
137 trie=utrie_open(fillIn, aliasData, aliasDataCapacity,
H A Dfilteredbrk.cpp187 virtual UText *getUText(UText *fillIn, UErrorCode &status) const { return fDelegate->getUText(fillIn,status); } argument
H A Drbbi.cpp415 UText *RuleBasedBreakIterator::getUText(UText *fillIn, UErrorCode &status) const { argument
416 UText *result = utext_clone(fillIn, fText, FALSE, TRUE, &status);
H A Duresbund.cpp1500 U_CAPI UResourceBundle* U_EXPORT2 ures_getNextResource(UResourceBundle *resB, UResourceBundle *fillIn, UErrorCode *status) { argument
1506 return fillIn;
1511 return fillIn;
1525 return ures_copyResb(fillIn, resB, status);
1533 return init_resb_result(&(resB->fResData), r, key, resB->fIndex, resB->fData, resB, 0, fillIn, status);
1540 return init_resb_result(&(resB->fResData), r, key, resB->fIndex, resB->fData, resB, 0, fillIn, status);
1543 return fillIn;
1547 return fillIn;
1550 U_CAPI UResourceBundle* U_EXPORT2 ures_getByIndex(const UResourceBundle *resB, int32_t indexR, UResourceBundle *fillIn, UErrorCode *status) { argument
1556 return fillIn;
1664 ures_findResource(const char* path, UResourceBundle *fillIn, UErrorCode *status) argument
1719 ures_findSubResource(const UResourceBundle *resB, char* path, UResourceBundle *fillIn, UErrorCode *status) argument
1804 ures_getByKeyWithFallback(const UResourceBundle *resB, const char* inKey, UResourceBundle *fillIn, UErrorCode *status) argument
1981 ures_getByKey(const UResourceBundle *resB, const char* inKey, UResourceBundle *fillIn, UErrorCode *status) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUCharacterIterator.java310 * @param fillIn
314 * @return the number of code units added to fillIn, as a convenience
319 public abstract int getText(char[] fillIn, int offset); argument
324 * @param fillIn
326 * @return the number of code units added to fillIn, as a convenience
331 public final int getText(char[] fillIn) { argument
332 return getText(fillIn, 0);
H A DNormalizer.java1776 * @param fillIn the char buffer to fill the UTF-16 units.
1784 public int getText(char[] fillIn) { argument
1785 return text.getText(fillIn);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DTestIDNA.java615 private StringBuffer getTestSource(StringBuffer fillIn) { argument
627 UTF16.append(fillIn, codepoint);
630 return fillIn;
/external/icu/icu4c/source/i18n/
H A Dulocdata.cpp104 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn, argument
130 if(fillIn != NULL)
131 uset_applyPattern(fillIn, exemplarChars, len,
134 fillIn = uset_openPatternOptions(exemplarChars, len,
137 return fillIn;
/external/icu/icu4c/source/test/cintltst/
H A Dcucdapi.c464 UScriptCode fillIn[5] = {USCRIPT_INVALID_CODE}; local
467 len = uscript_getCode(expectedShort[i], fillIn, UPRV_LENGTHOF(fillIn), &status);
474 if(fillIn[0]!= (UScriptCode)(USCRIPT_BALINESE+i)){
475 log_err("uscript_getCode did not return expected code for script %s. EXPECTED: %i GOT: %i\n", expectedShort[i], (USCRIPT_BALINESE+i), fillIn[0] );
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DTestIDNA.java612 private StringBuffer getTestSource(StringBuffer fillIn) { argument
624 UTF16.append(fillIn, codepoint);
627 return fillIn;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowIntent.java427 public int fillIn(Intent otherIntent, int flags) { method in class:ShadowIntent
/external/icu/icu4c/source/test/intltest/
H A Dtestidna.cpp1353 void getTestSource(UnicodeString& fillIn) { argument
1361 fillIn.append((UChar32)codepoint);
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 594 milliseconds

12