HomeSort by relevance Sort by last modified time
    Searched refs:fillIn (Results 1 - 25 of 40) 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 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);
152 * @param result fillin for the equivalent locale
153 * @param resultCapacity capacity of the fillin buffer
158 * @param isAvailable If non-null, pointer to fillin parameter that indicates whether the
190 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be deleted by the caller.
201 UResourceBundle *fillIn,
229 * @param ver fillin for the version numbe
    [all...]
uresbund.cpp     [all...]
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);
utrie.cpp 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;
  /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 332 * and usage model for fillIn parameters without knowing sizeof(UResourceBundle)
573 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
582 UResourceBundle *fillIn,
608 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
618 UResourceBundle *fillIn,
699 * @param fillIn if NULL a new UResourceBundle struct is allocated and must be closed by the caller.
708 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 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;
uscript.h 417 * @param fillIn the UScriptCode buffer to fill in the script code
424 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 366 UScriptCode fillIn[5] = {USCRIPT_INVALID_CODE};
369 len = uscript_getCode(expectedShort[i], fillIn, LENGTHOF(fillIn), &status);
376 if(fillIn[0]!= (UScriptCode)(USCRIPT_BALINESE+i)){
377 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 144 Intent fillIn = new Intent();
145 fillIn.putExtra("pdu", IccUtils.hexStringToBytes(pduString));
146 fillIn.putExtra("format", SmsConstants.FORMAT_3GPP);
148 intent.send(mContext, Activity.RESULT_OK, fillIn);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 97 Intent fillIn = new Intent();
98 fillIn.putExtra("pdu", sms.getPdu());
99 fillIn.putExtra("format", android.telephony.SmsMessage.FORMAT_3GPP2);
101 intent.send(mContext, Activity.RESULT_OK, fillIn);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPendingIntent.java 49 savedIntent.fillIn(intent, 0 );
ShadowIntent.java 432 public int fillIn(Intent otherIntent, int flags) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java 490 Intent fillIn = new Intent();
492 fillIn.putExtra("errorCode", ((SmsResponse)ar.result).mErrorCode);
499 fillIn.putExtra(SEND_NEXT_MSG_EXTRA, true);
502 tracker.mSentIntent.send(mContext, error, fillIn);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 210 int changes = finalIntent.fillIn(intent, key.flags);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java 304 int result = intentA.fillIn(intentB, flags);
  /external/icu4c/test/intltest/
testidna.cpp     [all...]

Completed in 711 milliseconds

1 2