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

1 2

  /external/icu4c/common/
uscript.c 29 UScriptCode* fillIn,
40 if(nameOrAbbrOrLocale==NULL || fillIn == NULL || capacity<0){
66 *(fillIn)++=code;
89 *(fillIn)++=code;
uresimp.h 119 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller.
126 UResourceBundle *fillIn, UErrorCode *status);
138 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller.
146 UResourceBundle *fillIn, UErrorCode *status);
150 * @param result fillin for the equivalent locale
151 * @param resultCapacity capacity of the fillin buffer
156 * @param isAvailable If non-null, pointer to fillin parameter that indicates whether the
188 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller.
199 UResourceBundle *fillIn,
227 * @param ver fillin for the version numbe
    [all...]
uresbund.c     [all...]
utrie.h 548 * Opaque definition, here only to make fillIn parameters possible
607 * @param fillIn a pointer to a UNewTrie structure to be initialized (will not be released), or
618 * @return a pointer to the initialized fillIn or the allocated and initialized new UNewTrie
621 utrie_open(UNewTrie *fillIn,
629 * @param fillIn like in utrie_open()
634 * @return a pointer to the initialized fillIn or the allocated and initialized new UNewTrie
637 utrie_clone(UNewTrie *fillIn, const UNewTrie *other, uint32_t *aliasData, int32_t aliasDataLength);
utrie.c 47 utrie_open(UNewTrie *fillIn,
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) {
135 trie=utrie_open(fillIn, aliasData, aliasDataCapacity,
    [all...]
rbbi.cpp 393 UText *RuleBasedBreakIterator::getUText(UText *fillIn, UErrorCode &status) const {
394 UText *result = utext_clone(fillIn, fText, FALSE, TRUE, &status);
    [all...]
  /external/icu4c/i18n/
ulocdata.c 100 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
125 if(fillIn != NULL)
126 uset_applyPattern(fillIn, exemplarChars, len,
129 fillIn = uset_openPatternOptions(exemplarChars, len,
132 return fillIn;
ucol_imp.h     [all...]
ucol.cpp 409 UCollator *fillIn,
412 UCollator *result = fillIn;
878 UCollator* ucol_initCollator(const UCATableHeader *image, UCollator *fillIn, const UCollator *UCA, UErrorCode *status) {
880 UCollator *result = fillIn;
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uscript.h 104 * @param fillIn the UScriptCode buffer to fill in the script code
111 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
  /external/webkit/Source/WebKit/mac/icu/unicode/
uscript.h 104 * @param fillIn the UScriptCode buffer to fill in the script code
111 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 159 private boolean launchPendingIntent(PendingIntent pending, Intent fillIn) {
161 pending.send(this, Activity.RESULT_OK, fillIn);
  /external/icu4c/i18n/unicode/
ulocdata.h 140 * @param fillIn Pointer to a USet object to receive the
142 * contents of fillIn are lost. <em>If fillIn is NULL,
157 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
163 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
226 * @param versionArray fillin that will recieve the version number
  /external/icu4c/common/unicode/
ures.h 326 * and usage model for fillIn parameters without knowing sizeof(UResourceBundle)
566 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
575 UResourceBundle *fillIn,
601 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
611 UResourceBundle *fillIn,
692 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
701 UResourceBundle *fillIn,
    [all...]
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;
rbbi.h 386 * @param fillIn A UText to be filled in. If NULL, a new UText will be
393 virtual UText *getUText(UText *fillIn, UErrorCode &status) const;
uscript.h 403 * @param fillIn the UScriptCode buffer to fill in the script code
410 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java     [all...]
  /external/icu4c/test/cintltst/
cucdapi.c 362 UScriptCode fillIn[5] = {USCRIPT_INVALID_CODE};
365 len = uscript_getCode(expectedShort[i], fillIn, LENGTHOF(fillIn), &status);
372 if(fillIn[0]!= (UScriptCode)(USCRIPT_BALINESE+i)){
373 log_err("uscript_getCode did not return expected code for script %s. EXPECTED: %i GOT: %i\n", expectedShort[i], (USCRIPT_BALINESE+i), fillIn[0] );
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 92 Intent fillIn = new Intent();
93 fillIn.putExtra("pdu", sms.getPdu());
94 fillIn.putExtra("format", android.telephony.SmsMessage.FORMAT_3GPP2);
96 intent.send(mContext, Activity.RESULT_OK, fillIn);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 143 Intent fillIn = new Intent();
144 fillIn.putExtra("pdu", IccUtils.hexStringToBytes(pduString));
145 fillIn.putExtra("format", android.telephony.SmsMessage.FORMAT_3GPP);
147 intent.send(mContext, Activity.RESULT_OK, fillIn);
  /frameworks/base/telephony/java/com/android/internal/telephony/
SMSDispatcher.java 414 Intent fillIn = new Intent();
416 fillIn.putExtra("errorCode", ((SmsResponse)ar.result).errorCode);
423 fillIn.putExtra(SEND_NEXT_MSG_EXTRA, true);
426 tracker.mSentIntent.send(mContext, error, fillIn);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 204 int changes = finalIntent.fillIn(intent, key.flags);
  /external/icu4c/test/intltest/
testidna.cpp     [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 375 intent.fillIn(baseIntent, Intent.FILL_IN_COMPONENT | Intent.FILL_IN_SELECTOR);
    [all...]

Completed in 1711 milliseconds

1 2